maintainer-makefile: depend on all required helper scripts
[gnulib.git] / ChangeLog
1 2009-04-27  Eric Blake  <ebb9@byu.net>
2
3         maintainer-makefile: depend on all required helper scripts
4         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
5         useless-if-before-free.
6         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
7         version, rather than assuming gnulib checkout is available.
8         Reported by Simen Josefsson.
9
10 2009-04-26  Bruno Haible  <bruno@clisp.org>
11
12         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
13         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
14         "../" or "..".
15
16 2009-04-26  Bruno Haible  <bruno@clisp.org>
17
18         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
19         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
20         AC_LIB_HAVE_LINKFLAGS.
21
22 2009-04-26  Bruno Haible  <bruno@clisp.org>
23
24         Simplify calling convention of u*_conv_from_encoding.
25         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
26         u32_conv_from_encoding): Expect a resultbuf argument and return the
27         result directly as a pointer.
28         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
29         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
30         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
31         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
32         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
33         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
34         Update.
35         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
36         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
37         * lib/vasnprintf.c (VASNPRINTF): Update.
38         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
39         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
40         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
41         * NEWS: Mention the change.
42
43 2009-04-26  Bruno Haible  <bruno@clisp.org>
44
45         Simplify calling convention of u*_conv_to_encoding.
46         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
47         u32_conv_to_encoding): Expect a resultbuf argument and return the
48         result directly as a pointer.
49         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
50         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
51         freeing scaled_offsets if mem_iconveha failed.
52         * lib/unicase/u-casexfrm.h (FUNC): Update.
53         * lib/uninorm/u-normxfrm.h (FUNC): Update.
54         * lib/vasnprintf.c (VASNPRINTF): Update.
55         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
56         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
57         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
58         * NEWS: Mention the change.
59
60 2009-04-26  Bruno Haible  <bruno@clisp.org>
61
62         Avoid test failures on AIX and OSF/1.
63         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
64         malloc(0).
65         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
66         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
67         Likewise.
68         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
69         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
70         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
71         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
72         * doc/posix-functions/malloc.texi: Document the portability problem
73         related to malloc(0).
74
75 2009-04-26  Bruno Haible  <bruno@clisp.org>
76
77         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
78         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
79         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
80
81 2009-04-25  Bruno Haible  <bruno@clisp.org>
82
83         Avoid link error when creating a namespace clean library.
84         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
85         as macro with arguments if already defined as an alias.
86         * lib/signbitf.c (gl_signbitf): Don't undefine.
87         * lib/signbitd.c (gl_signbitd): Don't undefine.
88         * lib/signbitl.c (gl_signbitl): Don't undefine.
89
90 2009-04-25  Jim Meyering  <meyering@redhat.com>
91
92         vc-list-files: fix another quoting bug
93         * build-aux/vc-list-files: Avoid sed backslash expansion
94         of pathological directory names.
95
96 2009-04-25  Eric Blake  <ebb9@byu.net>
97
98         vc-list-files: fix shell quoting error
99         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
100         timestamp.
101
102 2009-04-25  Jim Meyering  <meyering@redhat.com>
103
104         vc-list-files: restore lost functionality with subdir argument
105         * build-aux/vc-list-files: When given a non-"." sub-directory
106         argument, substitute the $dir/ prefix back onto each resulting name.
107         Otherwise, coreutils' root_tests check would fail.
108
109 2009-04-24  Eric Blake  <ebb9@byu.net>
110
111         vc-list-files: ignore git symlinks
112         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
113         than ls-files, to ignore git symlinks.
114
115         maint.mk: import improvements from m4
116         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
117         (move_if_change): Delete unused macro.
118         (news-date-check, vc-diff-check): Support VPATH builds.
119         (announcement): Likewise.  Split --bootstrap-tools list...
120         (boostrap-tools): ...into separate list, which can be overridden
121         in cfg.mk.
122         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
123         requiring dependency on useless-if-before-free module.
124         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
125         Support VPATH builds.
126
127 2009-04-24  Jim Meyering  <meyering@redhat.com>
128
129         maint.mk: remove coreutils-specific rules and variables
130         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
131         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
132         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
133
134         maint.mk: remove obsolete rule
135         * top/maint.mk (rel-check): Remove rule.
136         (WGET, WGETFLAGS): Remove now-unused variables.
137
138 2009-04-24  Simon Josefsson  <simon@josefsson.org>
139
140         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
141         consistency.
142
143         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
144         '$(PATH_SEPARATOR)' instead of ':'.
145
146 2009-04-24  Simon Josefsson  <simon@josefsson.org>
147
148         * lib/getopt1.c (main): Use 'const' for static array.
149
150 2009-04-24  Simon Josefsson  <simon@josefsson.org>
151
152         * top/maint.mk: Sync with coreutils.
153         * NEWS: Explain incompatibilities.
154
155 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
156             Bruno Haible  <bruno@clisp.org>
157
158         Fix cross-compilation results.
159         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
160         statement, as third argument of AC_TRY_RUN.
161         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
162         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
163         Likewise.
164         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
165         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
166         Likewise.
167         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
168         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
169         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
170
171 2009-04-20  Bruno Haible  <bruno@clisp.org>
172
173         Avoid test failure on mingw.
174         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
175
176 2009-04-20  Bruno Haible  <bruno@clisp.org>
177
178         Avoid compilation error on mingw.
179         * modules/localename-tests (Depends-on): Add locale.
180
181 2009-04-19  Bruno Haible  <bruno@clisp.org>
182
183         Support for building a shared library on Windows platforms.
184         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
185         (main): Test the presence of UNINORM_NFC here.
186         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
187         (main): Test the presence of UNINORM_NFD here.
188         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
189         (main): Test the presence of UNINORM_NFKC here.
190         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
191         (main): Test the presence of UNINORM_NFKD here.
192
193 2009-04-19  Bruno Haible  <bruno@clisp.org>
194
195         Avoid a compiler warning.
196         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
197         Change type of variable 'sequence'.
198
199 2009-04-19  Bruno Haible  <bruno@clisp.org>
200
201         * modules/configmake (Makefile.am): When the contents of configmake.h
202         does not change, arrange to preserve its modification time.
203
204 2009-04-17  Simon Josefsson  <simon@josefsson.org>
205
206         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
207         gettext domain.
208
209 2009-04-16  Jim Meyering  <meyering@redhat.com>
210
211         useless-if-before-free: improve conversion code
212         * build-aux/useless-if-before-free: Adjust code-in-comment to match
213         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
214
215 2009-04-14  Bruno Haible  <bruno@clisp.org>
216
217         * modules/fcntl (Depends-on): Add extensions.
218         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
219
220 2009-04-12  Ben Pfaff  <blp@gnu.org>
221
222         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
223         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
224
225 2009-03-20  Ben Pfaff  <blp@gnu.org>
226
227         Make rename replace existing destinations on Windows.
228         * m4/rename.m4: Add test for Mingw.
229         * lib/rename.c: Add rename replacement that uses MoveFileEx with
230         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
231         * doc/posix-functions/rename.texi: Document.
232
233 2009-04-10  Bruno Haible  <bruno@clisp.org>
234
235         New include file "iconveh.h".
236         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
237         * lib/striconveh.h: Include it.
238         (enum iconv_ilseq_handler): Remove definition.
239         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
240         striconveh.h.
241         * lib/striconveha.c: Include striconveh.h.
242         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
243         * modules/striconveh (Files): Add lib/iconveh.h.
244         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
245         lib/striconveh.h.
246
247 2009-04-10  Bruno Haible  <bruno@clisp.org>
248
249         * lib/uniconv.h: Update comment.
250
251 2009-04-10  Bruno Haible  <bruno@clisp.org>
252
253         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
254         always.
255         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
256         * lib/unistr/u16-mbtouc-aux.c: Likewise.
257         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
258         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
259         "unistring-notinline.h", so that the function gets defined always.
260         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
261         * lib/unistr/u8-uctomb.c: Likewise.
262         * lib/unistr/u16-mbtouc.c: Likewise.
263         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
264         * lib/unistr/u16-uctomb.c: Likewise.
265         * lib/unistr/u32-mbtouc.c: Likewise.
266         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
267         * lib/unistr/u32-uctomb.c: Likewise.
268
269 2009-04-10  Bruno Haible  <bruno@clisp.org>
270
271         Mark 'utime' obsolete.
272         * modules/utime (Status, Notice): New sections.
273         Suggested by Jim Meyering.
274
275         Fix cross-compile guess for utime test.
276         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
277         autoconf.
278         * doc/posix-functions/utime.texi: Give more precisions.
279         Reported by Jan <ipif@ymail.com>.
280
281 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
282
283         filevercmp: correct today's change
284         * lib/filevercmp.c: Also handle coreutils' test inputs.
285         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
286
287         Fix regression in 'filevercmp' module. Thanks Sven Joachim
288         for reporting it.
289         * lib/filevercmp.c: Special handle for "", "." and "..".
290         * tests/test-filevercmp.c: Enlarge the set suite.
291
292 2009-04-07  Jim Meyering  <meyering@redhat.com>
293
294         useless-if-before-free: show how to remove braced useless free, too
295         * build-aux/useless-if-before-free: still only in a comment, though.
296
297 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
298
299         maint.mk: import changes to syntax-check macros from coreutils
300         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
301         Use them in the relevant macros.
302
303 2009-04-06  Bruno Haible  <bruno@clisp.org>
304
305         Fix unportable use of bit-fields.
306         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
307         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
308         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
309
310 2009-04-06  Bruno Haible  <bruno@clisp.org>
311
312         Avoid test failures on AIX and OSF/1.
313         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
314         that malloc(0) = NULL.
315         * tests/unicase/test-u8-tolower.c (check): Likewise.
316         * tests/unicase/test-u8-totitle.c (check): Likewise.
317         * tests/unicase/test-u8-toupper.c (check): Likewise.
318         * tests/unicase/test-u16-casefold.c (check): Likewise.
319         * tests/unicase/test-u16-tolower.c (check): Likewise.
320         * tests/unicase/test-u16-totitle.c (check): Likewise.
321         * tests/unicase/test-u16-toupper.c (check): Likewise.
322         * tests/unicase/test-u32-casefold.c (check): Likewise.
323         * tests/unicase/test-u32-tolower.c (check): Likewise.
324         * tests/unicase/test-u32-totitle.c (check): Likewise.
325         * tests/unicase/test-u32-toupper.c (check): Likewise.
326         * tests/uninorm/test-u8-nfc.c (check): Likewise.
327         * tests/uninorm/test-u8-nfd.c (check): Likewise.
328         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
329         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
330         * tests/uninorm/test-u16-nfc.c (check): Likewise.
331         * tests/uninorm/test-u16-nfd.c (check): Likewise.
332         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
333         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
334         * tests/uninorm/test-u32-nfc.c (check): Likewise.
335         * tests/uninorm/test-u32-nfd.c (check): Likewise.
336         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
337         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
338
339 2009-04-05  Bruno Haible  <bruno@clisp.org>
340
341         Work around an autoconf limitation.
342         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
343         comment line if it would be longer than 3 KB.
344
345 2009-04-05  Bruno Haible  <bruno@clisp.org>
346
347         Avoid test failure with libiconv-1.13.
348         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
349         of the expected test results.
350
351 2009-04-05  Bruno Haible  <bruno@clisp.org>
352
353         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
354         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
355         that it should be installed.
356
357 2009-04-05  Bruno Haible  <bruno@clisp.org>
358
359         * gnulib-tool: New option --copy-file.
360         (func_usage): Document it.
361         (func_dest_tmpfilename): Moved out of func_import.
362         (func_add_file, func_update_file): New functions, extracted from
363         func_import.
364         (func_import): Update.
365
366 2009-04-05  Karl Berry  <karl@gnu.org>
367
368         * README: prominently mention gnulib-tool.
369         Rearrange sections so getting the code is near the top.
370
371 2009-04-05  Bruno Haible  <bruno@clisp.org>
372
373         * lib/unicase.h: Mention u*_cmp2.
374         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
375         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
376         * lib/unicase/ulc-casecmp.c: Likewise.
377         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
378         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
379         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
380         unistr/u8-cmp.
381         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
382         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
383         unistr/u16-cmp.
384         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
385         unistr/u32-cmp.
386
387         * lib/uninorm.h: Mention u*_cmp2.
388         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
389         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
390         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
391         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
392         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
393         unistr/u8-cmp.
394         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
395         unistr/u16-cmp.
396         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
397         unistr/u32-cmp.
398
399         New module 'unistr/u32-cmp2'.
400         * lib/unistr/u32-cmp2.c: New file.
401         * modules/unistr/u32-cmp2: New file.
402
403         New module 'unistr/u16-cmp2'.
404         * lib/unistr/u16-cmp2.c: New file.
405         * modules/unistr/u16-cmp2: New file.
406
407         New module 'unistr/u8-cmp2'.
408         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
409         * lib/unistr/u8-cmp2.c: New file.
410         * lib/unistr/u-cmp2.h: New file.
411         * modules/unistr/u8-cmp2: New file.
412
413 2009-04-05  Bruno Haible  <bruno@clisp.org>
414
415         * lib/unictype.h (uc_property_is_valid): New macro.
416         * tests/unictype/test-pr_byname.c (main): Use it.
417
418         * lib/unistr.h: Doc fixes.
419         * lib/uniconv.h: Doc fixes.
420         * lib/unictype.h: Doc fixes.
421
422 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
423
424         Port coreutils 7.2 to Solaris 8.
425
426         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
427         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
428         for Solaris 8.  This is a bit of a hack, as it means it's the
429         caller's responsibility to add -lnsl if needed, but most likely it
430         won't be needed since only getaddrinfo uses this and getaddrinfo
431         isn't needed on Solaris 8.
432
433         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
434         problem to Solaris 8 encountered with coreutils 7.2, which
435         resulted in a message "fnmatch.c:292: warning: passing argument 4
436         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
437         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
438
439 2009-04-03  Simon Josefsson  <simon@josefsson.org>
440
441         * m4/ld-version-script.m4: Add FIXME comment.
442
443 2009-04-02  Simon Josefsson  <simon@josefsson.org>
444
445         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
446         SOVERSION variable.
447
448 2009-04-02  Bruno Haible  <bruno@clisp.org>
449
450         * Makefile (info, html, dvi, pdf): Combine the rules.
451         Suggested by Jim Meyering.
452
453 2009-04-01  Bruno Haible  <bruno@clisp.org>
454
455         * Makefile (info, html, dvi, pdf): New targets.
456         Reported by Reuben Thomas <rrt@sc3d.org>.
457
458 2009-04-01  Bruno Haible  <bruno@clisp.org>
459
460         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
461         can be put into PATH.
462         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
463
464 2009-04-01  Bruno Haible  <bruno@clisp.org>
465
466         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
467
468 2009-04-01  Bruno Haible  <bruno@clisp.org>
469
470         Rename module 'visibility'.
471         * modules/lib-symbol-visibility: Renamed from modules/visibility.
472         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
473         * doc/gnulib.texi: Update.
474         * MODULES.html.sh (Misc): Update.
475         * NEWS: Mention the change.
476
477 2009-04-01  Simon Josefsson  <simon@josefsson.org>
478
479         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
480         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
481         Eric Blake <ebb9@byu.net> for review.
482         * MODULES.html.sh: Add lib-msvc-compat.
483         * doc/gnulib.texi: Link to new section.
484         * m4/ld-output-def.m4: New file.
485         * doc/ld-output-def.texi: New file.
486
487 2009-04-01  Simon Josefsson  <simon@josefsson.org>
488
489         Rename ld-version-script to lib-symbol-versions.  Suggested by
490         Bruno Haible <bruno@clisp.org>.
491         * modules/ld-version-script: Renamed to lib-symbol-versions.
492         * doc/ld-version-script.texi: Fix module name.
493         * MODULES.html.sh: Add lib-symbol-versions.
494
495 2009-03-31  Simon Josefsson  <simon@josefsson.org>
496
497         * modules/u64-tests: New file.
498         * tests/test-u64.c: New file.
499
500 2009-03-04  Simon Josefsson  <simon@josefsson.org>
501
502         * MODULES.html.sh: Mention u64.
503         * modules/u64: New module.
504         * modules/crypto/sha512: Depend on u64 module instead of providing
505         u64.h.
506
507 2009-03-27  Eric Blake  <ebb9@byu.net>
508
509         test-strerror: make debugging EAI_SYSTEM easier
510         * modules/getaddrinfo-tests (Depends-on): Add strerror.
511         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
512         failure was EAI_SYSTEM.
513
514 2009-03-25  Bruno Haible  <bruno@clisp.org>
515
516         Fix a problem with --enable-relocatable on Solaris 7.
517         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
518         since 2008-02-24.
519
520 2009-03-25  Eric Blake  <ebb9@byu.net>
521
522         test-sockets: avoid gcc warning
523         * tests/test-sockets.c (main): Silence compiler warning.
524
525 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
526
527         New modules nproc, pthread, contributed by Glen Lenker.
528
529         * MODULES.html.sh: Add pthread, nproc.
530         * lib/nproc.c: New file.
531         * lib/nproc.h: New file.
532         * lib/pthread.in.h: New file.
533         * m4/pthread.m4: New file.
534         * modules/nproc: New file.
535         * modules/pthread: New file.
536
537 2009-03-24  Simon Josefsson  <simon@josefsson.org>
538
539         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
540         New variable.
541
542 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
543
544         filevercmp: handle simple~ and numbered.~3~ backup suffixes
545         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
546         * tests/test-filevercmp.c: Add tests for backup suffixes.
547
548 2009-03-24  Simon Josefsson  <simon@josefsson.org>
549
550         * modules/stdlib (Depends-on): Add stdint, needed when defining
551         struct random_data on, for example, HP-UX 10.20.  Reported by
552         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
553
554 2009-03-24  Simon Josefsson  <simon@josefsson.org>
555
556         * lib/readline.c (readline): Call fflush on stdout after printing
557         prompt.
558
559 2009-03-20  Bruno Haible  <bruno@clisp.org>
560
561         Remove dependency from 'close' module to -lws2_32 on native Windows.
562         * lib/close-hook.h: New file.
563         * lib/close-hook.c: New file.
564         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
565         w32sock.h.
566         (_gl_close_fd_maybe_socket): Remove function.
567         (rpl_close): Invoke execute_all_close_hooks instead of
568         _gl_close_fd_maybe_socket.
569         * lib/sockets.c: Include close-hook.h, w32sock.h.
570         (close_fd_maybe_socket): New function, essentially from lib/close.c.
571         (close_sockets_hook): New variable.
572         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
573         (gl_sockets_cleanup): Unregister it.
574         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
575         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
576         * modules/close-hook: New file.
577         * modules/close (Files): Remove lib/w32sock.h.
578         (Depends-on): Add close-hook.
579         (Link): Remove section.
580         * modules/sockets (Files): Add lib/w32sock.h.
581         (Depends-on): Add close-hook.
582         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
583         invocation.
584         * NEWS: Mention that LIB_CLOSE is gone.
585
586 2009-03-23  Eric Blake  <ebb9@byu.net>
587
588         signal-tests: test previous patch
589         * tests/test-signal.c: New file.
590         * modules/signal-tests: Likewise.
591
592         signal.h: always support 'volatile sig_atomic_t'
593         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
594         (gl_SIGNAL_H_DEFAULTS): Add a default.
595         * modules/signal (Makefile.am): Substitute if needed.
596         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
597         users can blindly add volatile.
598         * doc/posix-headers/signal.texi (signal.h): Document it.
599         Reported by Matthew Woehlke.
600
601 2009-03-23  Jim Meyering  <meyering@redhat.com>
602
603         pathmax: PATH_MAX: use pathconf only when available
604         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
605         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
606         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
607         This avoids a link failure in a PSP cross-compilation environment
608         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
609
610         * lib/vasnprintf.c (divide): Fix typo in comment.
611
612 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
613
614         * gnulib-tool (func_filter_filelist): Fix comment.
615
616 2009-03-20  Bruno Haible  <bruno@clisp.org>
617
618         Make sockets.h self-contained.
619         * lib/sockets.c: Include sockets.h first.
620         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
621
622 2009-03-19  Eric Blake  <ebb9@byu.net>
623
624         doc: mention more functions added in cygwin 1.7.0
625         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
626         addition.
627         * doc/posix-functions/log2f.texi: Likewise.
628
629 2009-03-19  Jim Meyering  <meyering@redhat.com>
630
631         fsusage: avoid syntax error due to statement-before-declaration
632         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
633         after all declarations.  Reported by Matthew Woehlke in
634         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
635
636 2009-03-18  Eric Blake  <ebb9@byu.net>
637
638         build-aux/compile: sync from automake
639         * build-aux/compile: New file, from automake.
640         * config/srclist.txt: Mention build-aux/compile.
641
642 2009-03-17  Bruno Haible  <bruno@clisp.org>
643
644         * lib/git-merge-changelog.c: Fix typo in comment.
645         Reported by Reuben Thomas <rrt@sc3d.org>.
646
647 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
648
649         * m4/regex.m4: update and improve help for
650         --without-included-regex.
651
652 2009-03-17  Simon Josefsson  <simon@josefsson.org>
653
654         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
655         failure on missing include files.
656
657 2009-03-17  Eric Blake  <ebb9@byu.net>
658
659         doc: mention more functions added in cygwin 1.7.0
660         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
661         addition.
662         * doc/posix-functions/fwscanf.texi: Likewise.
663         * doc/posix-functions/swprintf.texi: Likewise.
664         * doc/posix-functions/swscanf.texi: Likewise.
665         * doc/posix-functions/vfwprintf.texi: Likewise.
666         * doc/posix-functions/vfwscanf.texi: Likewise.
667         * doc/posix-functions/vswprintf.texi: Likewise.
668         * doc/posix-functions/vswscanf.texi: Likewise.
669         * doc/posix-functions/vwprintf.texi: Likewise.
670         * doc/posix-functions/vwscanf.texi: Likewise.
671         * doc/posix-functions/wcscasecmp.texi: Likewise.
672         * doc/posix-functions/wcsdup.texi: Likewise.
673         * doc/posix-functions/wcsftime.texi: Likewise.
674         * doc/posix-functions/wcsncasecmp.texi: Likewise.
675         * doc/posix-functions/wprintf.texi: Likewise.
676         * doc/posix-functions/wscanf.texi: Likewise.
677         * doc/glibc-functions/gethostbyname2.texi: Likewise.
678
679 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
680
681         maint.mk: really add $(AM_MAKEFLAGS)
682         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
683         was inadvertently omitted in the last commit.
684         Spotted by Bruno Haible.
685
686         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
687         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
688         $(AM_MAKEFLAGS)' rather than plain `make'.
689
690         gnulib-tool: execute $MAKE not make
691         * gnulib-tool: Default $MAKE to 'make'.
692         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
693         than make.  Initialize $MAKE in the do-autobuild script.
694
695         gnulib-tool: use $MAKE not make in generated files
696         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
697         make, in generated files.  Initialize $MAKE in the do-autobuild
698         script.
699
700         * top/GNUmakefile (_have-git-version-gen): Fix typo.
701
702         GNUmakefile: disable parallelism only for multiple, recursive targets
703         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
704         additions in the Makefile.
705         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
706         by Automake.
707         (.NOTPARALLEL): Only disable parallel builds if multiple targets
708         are listed on the command line and at least one of them is
709         listed in $(ALL_RECURSIVE_TARGETS).
710
711 2009-03-14  Bruno Haible  <bruno@clisp.org>
712
713         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
714         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
715         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
716         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
717         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
718         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
719         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
720         unistr/u8-uctomb.
721         * modules/unistr/u8-strchr (Depends-on): Likewise.
722         * modules/unistr/u8-strrchr (Depends-on): Likewise.
723         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
724         unistr/u16-uctomb.
725         * modules/unistr/u16-strchr (Depends-on): Likewise.
726         * modules/unistr/u16-strrchr (Depends-on): Likewise.
727
728 2009-03-12  Bruno Haible  <bruno@clisp.org>
729
730         Work around select() bug on Interix 3.5.
731         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
732         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
733         * m4/select.m4: New file.
734         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
735         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
736         * modules/select (Files): Add m4/select.m4.
737         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
738         * modules/nanosleep (Depends-on): Add select.
739         * modules/poll (Depends-on): Likewise.
740         * doc/posix-functions/select.texi: Mention the Interix bug.
741         Reported by Markus Duft <mduft@gentoo.org>.
742
743         * lib/select.c: Renamed from lib/winsock-select.c.
744         * modules/select (Files): Add lib/select.c, remove
745         lib/winsock-select.c.
746         (configure.ac): Update.
747
748 2009-03-12  Jim Meyering  <meyering@redhat.com>
749
750         avoid gcc warnings about unused macro definitions
751         * lib/readtokens.c (STREQ): Remove unused definition.
752         * lib/xmalloc.c (SIZE_MAX): Likewise.
753         * lib/openat-die.c (N_): Likewise.
754         * lib/mountlist.c (SIZE_MAX): Remove definition.
755         Instead, include <stdint.h>.
756         * lib/readutmp.c: Likewise.
757         * modules/readutmp (Depends-on): Add stdint.
758         * modules/mountlist (Depends-on): Add stdint.
759         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
760
761 2009-03-10  Bruno Haible  <bruno@clisp.org>
762
763         Tests for module 'mbmemcasecoll'.
764         * modules/mbmemcasecoll-tests: New file.
765         * tests/test-mbmemcasecoll1.sh: New file.
766         * tests/test-mbmemcasecoll2.sh: New file.
767         * tests/test-mbmemcasecoll3.sh: New file.
768         * tests/test-mbmemcasecoll.c: New file.
769
770         New module 'mbmemcasecoll'.
771         * lib/mbmemcasecoll.h: New file.
772         * lib/mbmemcasecoll.c: New file.
773         * modules/mbmemcasecoll: New file.
774
775         * tests/test-mbmemcasecmp.h: New file, extracted from
776         tests/test-mbmemcasecmp.c.
777         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
778         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
779         (main): Update.
780         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
781
782 2009-03-09  Bruno Haible  <bruno@clisp.org>
783
784         Tests for module 'mbmemcasecmp'.
785         * modules/mbmemcasecmp-tests: New file.
786         * tests/test-mbmemcasecmp1.sh: New file.
787         * tests/test-mbmemcasecmp2.sh: New file.
788         * tests/test-mbmemcasecmp3.sh: New file.
789         * tests/test-mbmemcasecmp.c: New file.
790
791         New module 'mbmemcasecmp'.
792         * lib/mbmemcasecmp.h: New file.
793         * lib/mbmemcasecmp.c: New file.
794         * modules/mbmemcasecmp: New file.
795
796 2009-03-09  Bruno Haible  <bruno@clisp.org>
797
798         Tests for module 'unicase/ulc-casecoll'.
799         * modules/unicase/ulc-casecoll-tests: New file.
800         * tests/unicase/test-ulc-casecoll1.sh: New file.
801         * tests/unicase/test-ulc-casecoll2.sh: New file.
802         * tests/unicase/test-ulc-casecoll.c: New file.
803
804         New module 'unicase/ulc-casecoll'.
805         * lib/unicase.h (ulc_casecoll): New declaration.
806         * lib/unicase/ulc-casecoll.c: New file.
807         * modules/unicase/ulc-casecoll: New file.
808
809         New module 'unicase/ulc-casexfrm'.
810         * lib/unicase.h (ulc_casexfrm): New declaration.
811         * lib/unicase/ulc-casexfrm.c: New file.
812         * modules/unicase/ulc-casexfrm: New file.
813
814 2009-03-09  Bruno Haible  <bruno@clisp.org>
815
816         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
817         invocations.
818
819         * m4/mbscasecmp.m4: Remove file.
820         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
821         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
822
823         * m4/mbscasestr.m4: Remove file.
824         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
825         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
826
827         * m4/mbschr.m4: Remove file.
828         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
829         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
830
831         * m4/mbscspn.m4: Remove file.
832         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
833         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
834
835         * m4/mbslen.m4: Remove file.
836         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
837         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
838
839         * m4/mbsncasecmp.m4: Remove file.
840         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
841         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
842
843         * m4/mbsnlen.m4: Remove file.
844         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
845         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
846
847         * m4/mbspbrk.m4: Remove file.
848         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
849         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
850
851         * m4/mbspcasecmp.m4: Remove file.
852         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
853         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
854
855         * m4/mbsrchr.m4: Remove file.
856         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
857         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
858
859         * m4/mbssep.m4: Remove file.
860         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
861         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
862
863         * m4/mbsspn.m4: Remove file.
864         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
865         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
866
867         * m4/mbsstr.m4: Remove file.
868         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
869         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
870
871         * m4/mbstok_r.m4: Remove file.
872         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
873         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
874
875         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
876
877         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
878         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
879
880         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
881
882 2009-03-08  Bruno Haible  <bruno@clisp.org>
883
884         Tests for module 'unicase/ulc-casecmp'.
885         * modules/unicase/ulc-casecmp-tests: New file.
886         * tests/unicase/test-ulc-casecmp1.sh: New file.
887         * tests/unicase/test-ulc-casecmp2.sh: New file.
888         * tests/unicase/test-ulc-casecmp.c: New file.
889
890         New module 'unicase/ulc-casecmp'.
891         * lib/unicase.h (ulc_casecmp): New declaration.
892         * lib/unicase/ulc-casecmp.c: New file.
893         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
894         'const SRC_UNIT *'.
895         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
896         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
897         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
898         * modules/unicase/ulc-casecmp: New file.
899
900         Tests for module 'unicase/u32-is-cased'.
901         * modules/unicase/u32-is-cased-tests: New file.
902         * tests/unicase/test-u32-is-cased.c: New file.
903
904         Tests for module 'unicase/u16-is-cased'.
905         * modules/unicase/u16-is-cased-tests: New file.
906         * tests/unicase/test-u16-is-cased.c: New file.
907
908         Tests for module 'unicase/u8-is-cased'.
909         * modules/unicase/u8-is-cased-tests: New file.
910         * tests/unicase/test-u8-is-cased.c: New file.
911         * tests/unicase/test-is-cased.h: New file.
912
913         New module 'unicase/u32-is-cased'.
914         * lib/unicase/u32-is-cased.c: New file.
915         * modules/unicase/u32-is-cased: New file.
916
917         New module 'unicase/u16-is-cased'.
918         * lib/unicase/u16-is-cased.c: New file.
919         * modules/unicase/u16-is-cased: New file.
920
921         New module 'unicase/u8-is-cased'.
922         * lib/unicase/u8-is-cased.c: New file.
923         * lib/unicase/u-is-cased.h: New file.
924         * modules/unicase/u8-is-cased: New file.
925
926         Tests for module 'unicase/u32-is-casefolded'.
927         * modules/unicase/u32-is-casefolded-tests: New file.
928         * tests/unicase/test-u32-is-casefolded.c: New file.
929
930         Tests for module 'unicase/u16-is-casefolded'.
931         * modules/unicase/u16-is-casefolded-tests: New file.
932         * tests/unicase/test-u16-is-casefolded.c: New file.
933
934         Tests for module 'unicase/u8-is-casefolded'.
935         * modules/unicase/u8-is-casefolded-tests: New file.
936         * tests/unicase/test-u8-is-casefolded.c: New file.
937         * tests/unicase/test-is-casefolded.h: New file.
938
939         New module 'unicase/u32-is-casefolded'.
940         * lib/unicase/u32-is-casefolded.c: New file.
941         * modules/unicase/u32-is-casefolded: New file.
942
943         New module 'unicase/u16-is-casefolded'.
944         * lib/unicase/u16-is-casefolded.c: New file.
945         * modules/unicase/u16-is-casefolded: New file.
946
947         New module 'unicase/u8-is-casefolded'.
948         * lib/unicase/u8-is-casefolded.c: New file.
949         * modules/unicase/u8-is-casefolded: New file.
950
951         Tests for module 'unicase/u32-is-titlecase'.
952         * modules/unicase/u32-is-titlecase-tests: New file.
953         * tests/unicase/test-u32-is-titlecase.c: New file.
954
955         Tests for module 'unicase/u16-is-titlecase'.
956         * modules/unicase/u16-is-titlecase-tests: New file.
957         * tests/unicase/test-u16-is-titlecase.c: New file.
958
959         Tests for module 'unicase/u8-is-titlecase'.
960         * modules/unicase/u8-is-titlecase-tests: New file.
961         * tests/unicase/test-u8-is-titlecase.c: New file.
962         * tests/unicase/test-is-titlecase.h: New file.
963
964         New module 'unicase/u32-is-titlecase'.
965         * lib/unicase/u32-is-titlecase.c: New file.
966         * modules/unicase/u32-is-titlecase: New file.
967
968         New module 'unicase/u16-is-titlecase'.
969         * lib/unicase/u16-is-titlecase.c: New file.
970         * modules/unicase/u16-is-titlecase: New file.
971
972         New module 'unicase/u8-is-titlecase'.
973         * lib/unicase/u8-is-titlecase.c: New file.
974         * modules/unicase/u8-is-titlecase: New file.
975
976         Tests for module 'unicase/u32-is-lowercase'.
977         * modules/unicase/u32-is-lowercase-tests: New file.
978         * tests/unicase/test-u32-is-lowercase.c: New file.
979
980         Tests for module 'unicase/u16-is-lowercase'.
981         * modules/unicase/u16-is-lowercase-tests: New file.
982         * tests/unicase/test-u16-is-lowercase.c: New file.
983
984         Tests for module 'unicase/u8-is-lowercase'.
985         * modules/unicase/u8-is-lowercase-tests: New file.
986         * tests/unicase/test-u8-is-lowercase.c: New file.
987         * tests/unicase/test-is-lowercase.h: New file.
988
989         New module 'unicase/u32-is-lowercase'.
990         * lib/unicase/u32-is-lowercase.c: New file.
991         * modules/unicase/u32-is-lowercase: New file.
992
993         New module 'unicase/u16-is-lowercase'.
994         * lib/unicase/u16-is-lowercase.c: New file.
995         * modules/unicase/u16-is-lowercase: New file.
996
997         New module 'unicase/u8-is-lowercase'.
998         * lib/unicase/u8-is-lowercase.c: New file.
999         * modules/unicase/u8-is-lowercase: New file.
1000
1001         Tests for module 'unicase/u32-is-uppercase'.
1002         * modules/unicase/u32-is-uppercase-tests: New file.
1003         * tests/unicase/test-u32-is-uppercase.c: New file.
1004
1005         Tests for module 'unicase/u16-is-uppercase'.
1006         * modules/unicase/u16-is-uppercase-tests: New file.
1007         * tests/unicase/test-u16-is-uppercase.c: New file.
1008
1009         Tests for module 'unicase/u8-is-uppercase'.
1010         * modules/unicase/u8-is-uppercase-tests: New file.
1011         * tests/unicase/test-u8-is-uppercase.c: New file.
1012         * tests/unicase/test-is-uppercase.h: New file.
1013
1014         New module 'unicase/u32-is-uppercase'.
1015         * lib/unicase/u32-is-uppercase.c: New file.
1016         * modules/unicase/u32-is-uppercase: New file.
1017
1018         New module 'unicase/u16-is-uppercase'.
1019         * lib/unicase/u16-is-uppercase.c: New file.
1020         * modules/unicase/u16-is-uppercase: New file.
1021
1022         New module 'unicase/u8-is-uppercase'.
1023         * lib/unicase/u8-is-uppercase.c: New file.
1024         * modules/unicase/u8-is-uppercase: New file.
1025
1026         New module 'unicase/u32-is-invariant'.
1027         * lib/unicase/u32-is-invariant.c: New file.
1028         * modules/unicase/u32-is-invariant: New file.
1029
1030         New module 'unicase/u16-is-invariant'.
1031         * lib/unicase/u16-is-invariant.c: New file.
1032         * modules/unicase/u16-is-invariant: New file.
1033
1034         New module 'unicase/u8-is-invariant'.
1035         * lib/unicase/u8-is-invariant.c: New file.
1036         * lib/unicase/invariant.h: New file.
1037         * lib/unicase/u-is-invariant.h: New file.
1038         * modules/unicase/u8-is-invariant: New file.
1039
1040         Tests for module 'unicase/u32-casecoll'.
1041         * modules/unicase/u32-casecoll-tests: New file.
1042         * tests/unicase/test-u32-casecoll.c: New file.
1043
1044         Tests for module 'unicase/u16-casecoll'.
1045         * modules/unicase/u16-casecoll-tests: New file.
1046         * tests/unicase/test-u16-casecoll.c: New file.
1047
1048         Tests for module 'unicase/u8-casecoll'.
1049         * modules/unicase/u8-casecoll-tests: New file.
1050         * tests/unicase/test-u8-casecoll.c: New file.
1051
1052         New module 'unicase/u32-casecoll'.
1053         * lib/unicase/u32-casecoll.c: New file.
1054         * modules/unicase/u32-casecoll: New file.
1055
1056         New module 'unicase/u16-casecoll'.
1057         * lib/unicase/u16-casecoll.c: New file.
1058         * modules/unicase/u16-casecoll: New file.
1059
1060         New module 'unicase/u8-casecoll'.
1061         * lib/unicase/u8-casecoll.c: New file.
1062         * lib/unicase/u-casecoll.h: New file.
1063         * modules/unicase/u8-casecoll: New file.
1064
1065         New module 'unicase/u32-casexfrm'.
1066         * lib/unicase/u32-casexfrm.c: New file.
1067         * modules/unicase/u32-casexfrm: New file.
1068
1069         New module 'unicase/u16-casexfrm'.
1070         * lib/unicase/u16-casexfrm.c: New file.
1071         * modules/unicase/u16-casexfrm: New file.
1072
1073         New module 'unicase/u8-casexfrm'.
1074         * lib/unicase/u8-casexfrm.c: New file.
1075         * lib/unicase/u-casexfrm.h: New file.
1076         * modules/unicase/u8-casexfrm: New file.
1077
1078         Tests for module 'unicase/u32-casecmp'.
1079         * modules/unicase/u32-casecmp-tests: New file.
1080         * tests/unicase/test-u32-casecmp.c: New file.
1081
1082         Tests for module 'unicase/u16-casecmp'.
1083         * modules/unicase/u16-casecmp-tests: New file.
1084         * tests/unicase/test-u16-casecmp.c: New file.
1085
1086         Tests for module 'unicase/u8-casecmp'.
1087         * modules/unicase/u8-casecmp-tests: New file.
1088         * tests/unicase/test-u8-casecmp.c: New file.
1089         * tests/unicase/test-casecmp.h: New file.
1090
1091         New module 'unicase/u32-casecmp'.
1092         * lib/unicase/u32-casecmp.c: New file.
1093         * modules/unicase/u32-casecmp: New file.
1094
1095         New module 'unicase/u16-casecmp'.
1096         * lib/unicase/u16-casecmp.c: New file.
1097         * modules/unicase/u16-casecmp: New file.
1098
1099         New module 'unicase/u8-casecmp'.
1100         * lib/unicase/u8-casecmp.c: New file.
1101         * lib/unicase/u-casecmp.h: New file.
1102         * modules/unicase/u8-casecmp: New file.
1103
1104         Tests for module 'unicase/u32-casefold'.
1105         * modules/unicase/u32-casefold-tests: New file.
1106         * tests/unicase/test-u32-casefold.c: New file.
1107
1108         Tests for module 'unicase/u16-casefold'.
1109         * modules/unicase/u16-casefold-tests: New file.
1110         * tests/unicase/test-u16-casefold.c: New file.
1111
1112         Tests for module 'unicase/u8-casefold'.
1113         * modules/unicase/u8-casefold-tests: New file.
1114         * tests/unicase/test-u8-casefold.c: New file.
1115
1116         New module 'unicase/u32-casefold'.
1117         * lib/unicase/u32-casefold.c: New file.
1118         * modules/unicase/u32-casefold: New file.
1119
1120         New module 'unicase/u16-casefold'.
1121         * lib/unicase/u16-casefold.c: New file.
1122         * modules/unicase/u16-casefold: New file.
1123
1124         New module 'unicase/u8-casefold'.
1125         * lib/unicase/u8-casefold.c: New file.
1126         * lib/unicase/u-casefold.h: New file.
1127         * modules/unicase/u8-casefold: New file.
1128
1129         New module 'unicase/tocasefold'.
1130         * lib/unicase/casefold.h: New file.
1131         * lib/unicase/tocasefold.c: New file.
1132         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
1133         * modules/unicase/tocasefold: New file.
1134
1135         Tests for module 'unicase/u32-totitle'.
1136         * modules/unicase/u32-totitle-tests: New file.
1137         * tests/unicase/test-u32-totitle.c: New file.
1138
1139         Tests for module 'unicase/u16-totitle'.
1140         * modules/unicase/u16-totitle-tests: New file.
1141         * tests/unicase/test-u16-totitle.c: New file.
1142
1143         Tests for module 'unicase/u8-totitle'.
1144         * modules/unicase/u8-totitle-tests: New file.
1145         * tests/unicase/test-u8-totitle.c: New file.
1146
1147         New module 'unicase/u32-totitle'.
1148         * lib/unicase/u32-totitle.c: New file.
1149         * modules/unicase/u32-totitle: New file.
1150
1151         New module 'unicase/u16-totitle'.
1152         * lib/unicase/u16-totitle.c: New file.
1153         * modules/unicase/u16-totitle: New file.
1154
1155         New module 'unicase/u8-totitle'.
1156         * lib/unicase/u8-totitle.c: New file.
1157         * lib/unicase/u-totitle.h: New file.
1158         * modules/unicase/u8-totitle: New file.
1159
1160         Tests for module 'unicase/u32-tolower'.
1161         * modules/unicase/u32-tolower-tests: New file.
1162         * tests/unicase/test-u32-tolower.c: New file.
1163
1164         Tests for module 'unicase/u16-tolower'.
1165         * modules/unicase/u16-tolower-tests: New file.
1166         * tests/unicase/test-u16-tolower.c: New file.
1167
1168         Tests for module 'unicase/u8-tolower'.
1169         * modules/unicase/u8-tolower-tests: New file.
1170         * tests/unicase/test-u8-tolower.c: New file.
1171
1172         New module 'unicase/u32-tolower'.
1173         * lib/unicase/u32-tolower.c: New file.
1174         * modules/unicase/u32-tolower: New file.
1175
1176         New module 'unicase/u16-tolower'.
1177         * lib/unicase/u16-tolower.c: New file.
1178         * modules/unicase/u16-tolower: New file.
1179
1180         New module 'unicase/u8-tolower'.
1181         * lib/unicase/u8-tolower.c: New file.
1182         * modules/unicase/u8-tolower: New file.
1183
1184         Tests for module 'unicase/u32-toupper'.
1185         * modules/unicase/u32-toupper-tests: New file.
1186         * tests/unicase/test-u32-toupper.c: New file.
1187
1188         Tests for module 'unicase/u16-toupper'.
1189         * modules/unicase/u16-toupper-tests: New file.
1190         * tests/unicase/test-u16-toupper.c: New file.
1191
1192         Tests for module 'unicase/u8-toupper'.
1193         * modules/unicase/u8-toupper-tests: New file.
1194         * tests/unicase/test-u8-toupper.c: New file.
1195
1196         New module 'unicase/u32-toupper'.
1197         * lib/unicase/u32-toupper.c: New file.
1198         * modules/unicase/u32-toupper: New file.
1199
1200         New module 'unicase/u16-toupper'.
1201         * lib/unicase/u16-toupper.c: New file.
1202         * modules/unicase/u16-toupper: New file.
1203
1204         New module 'unicase/u8-toupper'.
1205         * lib/unicase/u8-toupper.c: New file.
1206         * modules/unicase/u8-toupper: New file.
1207
1208         New module 'unicase/u32-casemap'.
1209         * lib/unicase/u32-casemap.c: New file.
1210         * modules/unicase/u32-casemap: New file.
1211
1212         New module 'unicase/u16-casemap'.
1213         * lib/unicase/u16-casemap.c: New file.
1214         * modules/unicase/u16-casemap: New file.
1215
1216         New module 'unicase/u8-casemap'.
1217         * lib/unicase/unicasemap.h: New file.
1218         * lib/unicase/u8-casemap.c: New file.
1219         * lib/unicase/u-casemap.h: New file.
1220         * modules/unicase/u8-casemap: New file.
1221
1222         New module 'unicase/special-casing'.
1223         * lib/unicase/special-casing.h: New file.
1224         * lib/unicase/special-casing.c: New file.
1225         * lib/unicase/special-casing-table.gperf: New file, generated by
1226         gen-uni-tables.c.
1227         * modules/unicase/special-casing: New file.
1228
1229         Tests for module 'unicase/locale-language'.
1230         * modules/unicase/locale-language-tests: New file.
1231         * tests/unicase/test-locale-language.sh: New file.
1232         * tests/unicase/test-locale-language.c: New file.
1233
1234         New module 'unicase/locale-language'.
1235         * lib/unicase/locale-language.c: New file.
1236         * lib/unicase/locale-languages.gperf: New file.
1237         * modules/unicase/locale-language: New file.
1238
1239         Generate more tables for case conversion and case folding.
1240         * lib/gen-uni-tables.c (SCC_*): New enum items.
1241         (struct special_casing_rule): New type.
1242         (casing_rules, num_casing_rules, allocated_casing_rules): New
1243         variables.
1244         (add_casing_rule, fill_casing_rules): New functions.
1245         (struct casefold_rule): New type.
1246         (casefolding_rules, num_casefolding_rules,
1247         allocated_casefolding_rules): New variables.
1248         (fill_casefolding_rules): New function.
1249         (unicode_casefold): New variable.
1250         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
1251         sort_casing_rules, output_casing_rules): New functions.
1252         (main): Accept to more arguments: SpecialCasing.txt and
1253         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
1254         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
1255         Output mapping for casefolding.
1256
1257         * lib/unicase.h: Include stdbool.h, uninorm.h.
1258         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
1259         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
1260         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
1261         arguments.
1262         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
1263         resultp arguments.
1264         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
1265         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
1266         resultp arguments.
1267         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
1268         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
1269         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
1270         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
1271         declarations.
1272         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
1273
1274 2009-03-08  Bruno Haible  <bruno@clisp.org>
1275
1276         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
1277         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
1278         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
1279         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
1280
1281 2009-03-07  Bruno Haible  <bruno@clisp.org>
1282
1283         Adjust u*_normcmp, u*_normcoll API.
1284         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
1285         u16_normcoll, u32_normcoll): Change failure conventions.
1286         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
1287         errno and return -1.
1288         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
1289
1290 2009-03-07  Bruno Haible  <bruno@clisp.org>
1291
1292         Tests for module 'uninorm/u32-normcoll'.
1293         * modules/uninorm/u32-normcoll-tests: New file.
1294         * tests/uninorm/test-u32-normcoll.c: New file.
1295
1296         Tests for module 'uninorm/u16-normcoll'.
1297         * modules/uninorm/u16-normcoll-tests: New file.
1298         * tests/uninorm/test-u16-normcoll.c: New file.
1299
1300         Tests for module 'uninorm/u8-normcoll'.
1301         * modules/uninorm/u8-normcoll-tests: New file.
1302         * tests/uninorm/test-u8-normcoll.c: New file.
1303
1304 2009-03-07  Bruno Haible  <bruno@clisp.org>
1305
1306         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
1307         tests/uninorm/test-u32-normcmp.c.
1308         * tests/uninorm/test-u32-normcmp.c: Include it.
1309         (test_nonascii): New function, extracted from main. Add some more
1310         tests.
1311         (main): Invoke test_ascii and test_nonascii.
1312         * modules/uninorm/u32-normcmp-tests (Files): Add
1313         tests/uninorm/test-u32-normcmp.h.
1314         (Depends-on): Remove uninorm/u32-normcmp.
1315
1316         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
1317         tests/uninorm/test-u16-normcmp.c.
1318         * tests/uninorm/test-u16-normcmp.c: Include it.
1319         (test_nonascii): New function, extracted from main. Add some more
1320         tests.
1321         (main): Invoke test_ascii and test_nonascii.
1322         * modules/uninorm/u16-normcmp-tests (Files): Add
1323         tests/uninorm/test-u16-normcmp.h.
1324         (Depends-on): Remove uninorm/u16-normcmp.
1325
1326         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
1327         tests/uninorm/test-u8-normcmp.c.
1328         * tests/uninorm/test-u8-normcmp.c: Include it.
1329         (test_nonascii): New function, extracted from main. Add some more
1330         tests.
1331         (main): Invoke test_ascii and test_nonascii.
1332         * modules/uninorm/u8-normcmp-tests (Files): Add
1333         tests/uninorm/test-u8-normcmp.h.
1334         (Depends-on): Remove uninorm/u8-normcmp.
1335
1336 2009-03-07  Bruno Haible  <bruno@clisp.org>
1337
1338         New module 'uninorm/u32-normcoll'.
1339         * lib/uninorm/u32-normcoll.c: New file.
1340         * modules/uninorm/u32-normcoll: New file.
1341
1342         New module 'uninorm/u16-normcoll'.
1343         * lib/uninorm/u16-normcoll.c: New file.
1344         * modules/uninorm/u16-normcoll: New file.
1345
1346         New module 'uninorm/u8-normcoll'.
1347         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
1348         declarations.
1349         * lib/uninorm/u8-normcoll.c: New file.
1350         * lib/uninorm/u-normcoll.h: New file.
1351         * modules/uninorm/u8-normcoll: New file.
1352
1353         New module 'uninorm/u32-normxfrm'.
1354         * lib/uninorm/u32-normxfrm.c: New file.
1355         * modules/uninorm/u32-normxfrm: New file.
1356
1357         New module 'uninorm/u16-normxfrm'.
1358         * lib/uninorm/u16-normxfrm.c: New file.
1359         * modules/uninorm/u16-normxfrm: New file.
1360
1361         New module 'uninorm/u8-normxfrm'.
1362         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
1363         declarations.
1364         * lib/uninorm/u8-normxfrm.c: New file.
1365         * lib/uninorm/u-normxfrm.h: New file.
1366         * modules/uninorm/u8-normxfrm: New file.
1367
1368 2009-03-07  Bruno Haible  <bruno@clisp.org>
1369
1370         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
1371         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
1372         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
1373
1374 2009-03-07  Bruno Haible  <bruno@clisp.org>
1375
1376         New module 'memxfrm'.
1377         * lib/memxfrm.h: New file.
1378         * lib/memxfrm.c: New file.
1379         * modules/memxfrm: New file.
1380
1381 2009-03-07  Bruno Haible  <bruno@clisp.org>
1382
1383         New module 'memcmp2'.
1384         * lib/memcmp2.h: New file.
1385         * lib/memcmp2.c: New file.
1386         * modules/memcmp2: New file.
1387
1388 2009-03-07  Bruno Haible  <bruno@clisp.org>
1389
1390         Tests for module 'uninorm/decomposing-form'.
1391         * modules/uninorm/decomposing-form-tests: New file.
1392         * tests/uninorm/test-decomposing-form.c: New file.
1393
1394         New module 'uninorm/decomposing-form'.
1395         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
1396         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
1397         Add 'decomposing_variant' field.
1398         * lib/uninorm/decomposing-form.c: New file.
1399         * lib/uninorm/nfc.c (uninorm_nfc): Update.
1400         * lib/uninorm/nfd.c (uninorm_nfd): Update.
1401         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
1402         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
1403         * modules/uninorm/decomposing-form: New file.
1404         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
1405         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
1406
1407 2009-03-07  Bruno Haible  <bruno@clisp.org>
1408
1409         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
1410         strings.
1411
1412 2009-03-06  Bruno Haible  <bruno@clisp.org>
1413
1414         Tests for module 'uninorm/u32-normcmp'.
1415         * tests/uninorm/test-u32-normcmp.c: New file.
1416         * modules/uninorm/u32-normcmp-tests: New file.
1417
1418         Tests for module 'uninorm/u16-normcmp'.
1419         * tests/uninorm/test-u16-normcmp.c: New file.
1420         * modules/uninorm/u16-normcmp-tests: New file.
1421
1422         Tests for module 'uninorm/u8-normcmp'.
1423         * tests/uninorm/test-u8-normcmp.c: New file.
1424         * modules/uninorm/u8-normcmp-tests: New file.
1425
1426         New module 'uninorm/u32-normcmp'.
1427         * lib/uninorm/u32-normcmp.c: New file.
1428         * modules/uninorm/u32-normcmp: New file.
1429
1430         New module 'uninorm/u16-normcmp'.
1431         * lib/uninorm/u16-normcmp.c: New file.
1432         * modules/uninorm/u16-normcmp: New file.
1433
1434         New module 'uninorm/u8-normcmp'.
1435         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
1436         declarations.
1437         * lib/uninorm/u8-normcmp.c: New file.
1438         * lib/uninorm/u-normcmp.h: New file.
1439         * modules/uninorm/u8-normcmp: New file.
1440
1441 2009-03-06  Bruno Haible  <bruno@clisp.org>
1442
1443         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
1444         Reported by Eric Blake.
1445
1446 2009-03-06  Eric Blake  <ebb9@byu.net>
1447             Bruno Haible  <bruno@clisp.org>
1448
1449         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
1450         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
1451         condition.
1452         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
1453         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
1454         condition.
1455         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
1456
1457 2009-03-06  Eric Blake  <ebb9@byu.net>
1458
1459         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
1460         to avoid compiler warnings.
1461         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
1462
1463 2009-03-05  Bruno Haible  <bruno@clisp.org>
1464
1465         * tests/test-ftell.c (main): Disable test beyond end of file on
1466         FreeMiNT.
1467         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
1468
1469 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
1470
1471         * lib/filevercmp.c: Move hidden files up in ordering.
1472         * tests/test-filevercmp.c: Add tests for hidden files.
1473
1474 2009-03-04  Bruno Haible  <bruno@clisp.org>
1475
1476         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
1477         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
1478         AM_CFLAGS.
1479         Reported by Simon Josefsson.
1480
1481 2009-03-03  Bruno Haible  <bruno@clisp.org>
1482
1483         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
1484         Reported by Simon Josefsson.
1485
1486         * doc/ld-version-script.texi: Update node reference.
1487
1488 2009-03-03  Bruno Haible  <bruno@clisp.org>
1489
1490         * modules/visibility (License): Change to 'unlimited'.
1491         Suggested by Simon Josefsson.
1492
1493 2009-03-03  Jim Meyering  <meyering@redhat.com>
1494
1495         unlinkdir: cannot_unlink_dir may modify process state
1496         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
1497         it's neither thread-safe nor appropriate for use in a library.
1498
1499 2009-03-03  Eric Blake  <ebb9@byu.net>
1500
1501         test-closein: silence test under Darwin
1502         * tests/test-closein.sh: Ignore stderr from cat, since we don't
1503         care if it dies from EPIPE or EBADF.
1504
1505 2009-03-03  Bruno Haible  <bruno@clisp.org>
1506
1507         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
1508         earlier.
1509         * doc/visibility.texi: Fix @node and @section.
1510
1511 2009-03-03  Simon Josefsson  <simon@josefsson.org>
1512
1513         * doc/gnulib.texi: Link to sections for ld version script and
1514         visibility.
1515         * doc/visibility.texi: Add @node and @section.
1516         * modules/ld-version-script: New module.
1517         * m4/ld-version-script.m4: New file.
1518         * doc/ld-version-script.texi: New file.
1519
1520 2009-03-02  David Lutterkort  <lutter@redhat.com>
1521
1522         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
1523         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1524
1525 2009-03-02  Bruno Haible  <bruno@clisp.org>
1526
1527         * doc/visibility.texi: Mention libtool's -export-symbols option.
1528
1529 2009-03-02  Jim Meyering  <meyering@redhat.com>
1530
1531         announce-gen: new option: --no-print-checksums
1532         * build-aux/announce-gen (usage): Describe it.
1533         (print_checksums): Print a newline here, not in the [*] footnote.
1534         (main): Honor it.
1535
1536 2009-03-01  Bruno Haible  <bruno@clisp.org>
1537
1538         Use socklen_t in the native Windows replacements prototypes.
1539         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
1540         instead of 'int'.
1541         * lib/getsockopt.c (rpl_getsockopt): Likewise.
1542         * lib/setsockopt.c (rpl_setsockopt): Likewise.
1543         * modules/getsockopt (Depends-on): Add socklen.
1544         * modules/setsockopt (Depends-on): Add socklen.
1545
1546 2009-03-01  Bruno Haible  <bruno@clisp.org>
1547
1548         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
1549         least 4.2.
1550
1551 2009-03-01  Eric Blake  <ebb9@byu.net>
1552             Bruno Haible  <bruno@clisp.org>
1553
1554         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
1555         error messages.
1556         * lib/wait-process.c (wait_subprocess): Omit error message about
1557         deadly signal sent to the child of termsigp != NULL.
1558
1559 2009-03-01  Eric Blake  <ebb9@byu.net>
1560
1561         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
1562
1563 2009-03-01  Bruno Haible  <bruno@clisp.org>
1564
1565         Avoid a gcc warning.
1566         * tests/test-sched.c (b): Make global.
1567         Reported by Eric Blake.
1568
1569 2009-01-19  Martin Lambers  <marlam@marlam.de>
1570
1571         Provide POSIX semantics for socket timeout options on W32.
1572         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
1573         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
1574         * modules/setsockopt: Depend on sys_time module for struct timeval.
1575         * modules/getsockopt: Depend on sys_time module for struct timeval.
1576
1577 2009-03-01  Simon Josefsson  <simon@josefsson.org>
1578
1579         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
1580         __USE_GNU, for consistency with netdb.in.h.
1581         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
1582
1583 2009-03-01  Bruno Haible  <bruno@clisp.org>
1584
1585         More support for FreeMiNT.
1586         * lib/fseeko.c (rpl_fseeko): Complete last commit.
1587         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
1588
1589 2009-03-01  Bruno Haible  <bruno@clisp.org>
1590
1591         More support for FreeMiNT.
1592         * lib/fpurge.c (fpurge): Correct last commit.
1593         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
1594
1595 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1596
1597         Fix unportable awk script in vc-list-files.
1598         * build-aux/vc-list-files: In the replacement awk script, use
1599         substr with a second argument of 1, not zero.
1600         Report by Simon Josefsson.
1601
1602 2009-02-28  Bruno Haible  <bruno@clisp.org>
1603
1604         More support for FreeMiNT.
1605         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
1606         to FreeMiNT today.
1607         * lib/fwriting.c (fwriting): Likewise.
1608         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
1609
1610 2009-02-28  Bruno Haible  <bruno@clisp.org>
1611
1612         * tests/test-freadseek.c (main): Disable test beyond end of file on
1613         FreeMiNT.
1614         * tests/test-ftello.c (main): Likewise.
1615         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
1616
1617 2009-02-28  Bruno Haible  <bruno@clisp.org>
1618
1619         Add tentative support for FreeMiNT.
1620         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
1621         * lib/fpurge.c (fpurge): Likewise.
1622         * lib/freadable.c (freadable): Likewise.
1623         * lib/freading.c (freading): Likewise.
1624         * lib/freadptr.c (freadptr): Likewise.
1625         * lib/freadseek.c (freadptrinc): Likewise.
1626         * lib/fseeko.c (rpl_fseeko): Likewise.
1627         * lib/fseterr.c (fseterr): Likewise.
1628         * lib/fwritable.c (fwritable): Likewise.
1629         * lib/fwriting.c (fwriting): Likewise.
1630         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
1631         Hourihane.
1632         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
1633
1634 2009-02-28  Bruno Haible  <bruno@clisp.org>
1635
1636         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
1637         SIGCHLD.
1638         Reported by Jim Meyering.
1639
1640 2009-02-28  Bruno Haible  <bruno@clisp.org>
1641
1642         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
1643         Mention the results of these tests on various platforms.
1644         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
1645         order.
1646         * doc/posix-functions/printf.texi: Likewise.
1647         * doc/posix-functions/snprintf.texi: Likewise.
1648         * doc/posix-functions/sprintf.texi: Likewise.
1649         * doc/posix-functions/vfprintf.texi: Likewise.
1650         * doc/posix-functions/vprintf.texi: Likewise.
1651         * doc/posix-functions/vsnprintf.texi: Likewise.
1652         * doc/posix-functions/vsprintf.texi: Likewise.
1653         * doc/glibc-functions/obstack_printf.texi: Likewise.
1654         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
1655
1656 2009-02-28  Bruno Haible  <bruno@clisp.org>
1657
1658         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
1659         Reported by Loïc Minier <lool@dooz.org>.
1660
1661 2009-02-27  Bruno Haible  <bruno@clisp.org>
1662
1663         * gnulib-tool (func_import): Make the sed expression used to create the
1664         sed script for updating the .gitignore file POSIX compliant.
1665         Reported by Eric Blake.
1666
1667 2009-02-27  Bruno Haible  <bruno@clisp.org>
1668
1669         * gnulib-tool (sed): Don't alias as "sed --posix".
1670         Reported by Eric Blake.
1671
1672 2009-02-27  Bruno Haible  <bruno@clisp.org>
1673
1674         Avoid test link errors.
1675         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
1676         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
1677         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
1678         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
1679         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1680
1681 2009-02-27  Bruno Haible  <bruno@clisp.org>
1682
1683         Avoid spurious "(cached)" in configure output.
1684         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
1685         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
1686         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
1687         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
1688         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
1689         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
1690         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
1691         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
1692         Reported by Eric Blake.
1693
1694 2009-02-27  Eric Blake  <ebb9@byu.net>
1695
1696         printf: fix regression in previous patch
1697         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
1698
1699 2009-02-27  Bruno Haible  <bruno@clisp.org>
1700
1701         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
1702         value.
1703         * lib/stdint.in.h: Likewise.
1704         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
1705
1706 2009-02-27  Eric Blake  <ebb9@byu.net>
1707
1708         doc: mention more functions added in cygwin 1.7.0
1709         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
1710         addition.
1711         * doc/posix-functions/open_wmemstream.texi: Likewise.
1712         * doc/posix-functions/wcsnlen.texi: Likewise.
1713         * doc/posix-functions/wcsnrtombs.texi: Likewise.
1714         * doc/posix-functions/wcstod.texi: Likewise.
1715         * doc/posix-functions/wcstof.texi: Likewise.
1716         * doc/posix-functions/wcstoimax.texi: Likewise.
1717         * doc/posix-functions/wcstok.texi: Likewise.
1718         * doc/posix-functions/wcstoumax.texi: Likewise.
1719
1720         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
1721         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
1722         * doc/posix-functions/fprintf.texi: Update.
1723         * doc/posix-functions/printf.texi: Update.
1724         * doc/posix-functions/snprintf.texi: Update.
1725         * doc/posix-functions/sprintf.texi: Update.
1726         * doc/posix-functions/vfprintf.texi: Update.
1727         * doc/posix-functions/vprintf.texi: Update.
1728         * doc/posix-functions/vsnprintf.texi: Update.
1729         * doc/posix-functions/vsprintf.texi: Update.
1730         * doc/glibc-functions/obstack_printf.texi: Update.
1731         * doc/glibc-functions/obstack_vprintf.texi: Update.
1732
1733 2009-02-26  Eric Blake  <ebb9@byu.net>
1734
1735         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
1736         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
1737         compilation bug by using runtime conversion.
1738         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
1739         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
1740         * modules/ceill-tests (Files): Use nan.h.
1741         * modules/floorl-tests (Files): Likewise.
1742         * modules/frexpl-tests (Files): Likewise.
1743         * modules/isnanl-tests (Files): Likewise.
1744         * modules/ldexpl-tests (Files): Likewise.
1745         * modules/roundl-tests (Files): Likewise.
1746         * modules/truncl-tests (Files): Likewise.
1747         * tests/test-ceill.c (main): Use a working NaN.
1748         * tests/test-floorl.c (main): Likewise.
1749         * tests/test-frexpl.c (main): Likewise.
1750         * tests/test-isnan.c (test_long_double): Likewise.
1751         * tests/test-isnanl.h (main): Likewise.
1752         * tests/test-ldexpl.h (main): Likewise.
1753         * tests/test-roundl.h (main): Likewise.
1754         * tests/test-truncl.h (main): Likewise.
1755         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
1756
1757 2009-02-26  Eric Blake  <ebb9@byu.net>
1758             Bruno Haible  <bruno@clisp.org>
1759
1760         Work around a *printf bug with %ls on Solaris.
1761         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
1762         precision is specified, sprintf stops converting the wide string
1763         argument when the number of bytes that have been produced by this
1764         conversion equals or exceeds the precision.
1765         * doc/posix-functions/fprintf.texi: Update.
1766         * doc/posix-functions/printf.texi: Update.
1767         * doc/posix-functions/snprintf.texi: Update.
1768         * doc/posix-functions/sprintf.texi: Update.
1769         * doc/posix-functions/vfprintf.texi: Update.
1770         * doc/posix-functions/vprintf.texi: Update.
1771         * doc/posix-functions/vsnprintf.texi: Update.
1772         * doc/posix-functions/vsprintf.texi: Update.
1773         * doc/glibc-functions/obstack_printf.texi: Update.
1774         * doc/glibc-functions/obstack_vprintf.texi: Update.
1775
1776 2009-02-26  Eric Blake  <ebb9@byu.net>
1777
1778         stdlib: favor compiler check of random.h
1779         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
1780         to avoid an ObjC random.h installed by Swarm.
1781
1782 2009-02-26  Bruno Haible  <bruno@clisp.org>
1783
1784         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
1785         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
1786         Reported by Gary V. Vaughan <gary@gnu.org>.
1787
1788 2009-02-26  Bruno Haible  <bruno@clisp.org>
1789
1790         Fix *printf behaviour regarding the %ls directive.
1791         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
1792         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
1793         NEED_PRINTF_DIRECTIVE_LS.
1794         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
1795         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
1796         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1797         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
1798         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
1799         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
1800         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
1801         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1802         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1803         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1804         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1805         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
1806         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1807         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1808         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1809         * doc/posix-functions/fprintf.texi: Update.
1810         * doc/posix-functions/printf.texi: Update.
1811         * doc/posix-functions/snprintf.texi: Update.
1812         * doc/posix-functions/sprintf.texi: Update.
1813         * doc/posix-functions/vfprintf.texi: Update.
1814         * doc/posix-functions/vprintf.texi: Update.
1815         * doc/posix-functions/vsnprintf.texi: Update.
1816         * doc/posix-functions/vsprintf.texi: Update.
1817         * doc/glibc-functions/obstack_printf.texi: Update.
1818         * doc/glibc-functions/obstack_vprintf.texi: Update.
1819         Reported by Eric Blake.
1820
1821 2009-02-25  Bruno Haible  <bruno@clisp.org>
1822
1823         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
1824         with known value.
1825         Reported by Gary V. Vaughan <gary@gnu.org>.
1826
1827 2009-02-25  Bruno Haible  <bruno@clisp.org>
1828
1829         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
1830         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
1831         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
1832         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
1833         Reported by Gary V. Vaughan <gary@gnu.org>.
1834
1835 2009-02-25  Bruno Haible  <bruno@clisp.org>
1836
1837         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
1838         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
1839         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
1840         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
1841         Reported by Gary V. Vaughan <gary@gnu.org>.
1842
1843 2009-02-25  Eric Blake  <ebb9@byu.net>
1844
1845         tests: skip fseek/ftell tests if ungetc is broken
1846         * m4/ungetc.m4: New file.
1847         * modules/fseek-tests: Split test, so ungetc dependency is
1848         separate from rest of test.
1849         * modules/fseeko-tests: Likewise.
1850         * modules/ftell-tests: Likewise.
1851         * modules/ftello-tests: Likewise.
1852         * tests/test-fseek.c (main): Isolate ungetc dependency.
1853         * tests/test-fseeko.c (main): Likewise.
1854         * tests/test-ftell.c (main): Likewise.
1855         * tests/test-ftello.c (main): Likewise.
1856         * tests/test-fseek2.sh: New file.
1857         * tests/test-fseeko2.sh: Likewise.
1858         * tests/test-ftell2.sh: Likewise.
1859         * tests/test-ftello2.sh: Likewise.
1860
1861 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
1862
1863         test-getaddrinfo: fix usage of skip return code 77
1864         * tests/test-gettaddrinfo.c: Return skip code 77 only
1865         for first occurance of skip (4x77 is not 77)
1866
1867 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
1868
1869         strtod: avoid C99 decl-after-statement
1870         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
1871
1872 2009-02-24  Eric Blake  <ebb9@byu.net>
1873
1874         strtod: detect HP-UX 11.31 bug
1875         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
1876         Reported by Gary V. Vaughan.
1877
1878 2009-02-23  Bruno Haible  <bruno@clisp.org>
1879
1880         Fix invalid read past end of memory block.
1881         * lib/vasnprintf.c (DCHAR_SET): Define.
1882         (local_wcslen): Define only when needed.
1883         (local_strnlen, local_wcsnlen): New functions.
1884         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
1885         directives that involve a conversion ourselves.
1886         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
1887         wcsnlen, mbrtowc, wcrtomb.
1888         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
1889         * tests/test-vasprintf-posix.c (test_function): Likewise.
1890         * tests/test-snprintf-posix.h (test_function): Likewise.
1891         * tests/test-sprintf-posix.h (test_function): Likewise.
1892         Reported by Ben Pfaff <blp@cs.stanford.edu>.
1893
1894 2009-02-22  Bruno Haible  <bruno@clisp.org>
1895
1896         Implement new clarified decomposition of Hangul syllables.
1897         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
1898         of type LTV, return only a pairwise decomposition.
1899         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
1900         Likewise.
1901         * tests/uninorm/test-decomposition.c (main): Updated expected result.
1902         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
1903         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
1904
1905 2009-02-22  Bruno Haible  <bruno@clisp.org>
1906
1907         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
1908         zero-length results and shrink excess allocated memory.
1909         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
1910         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
1911         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
1912         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
1913         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
1914         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
1915         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
1916         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
1917         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
1918         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
1919         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
1920         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
1921
1922 2009-02-21  Bruno Haible  <bruno@clisp.org>
1923
1924         * doc/gnulib.texi: Include safe-alloc.texi earlier.
1925         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
1926         spaces after a period. Put a space between a macro name and its
1927         argument list. Trivial rewordings.
1928         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
1929         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
1930         (main): Return 0 explicitly.
1931
1932 2009-02-21  Bruno Haible  <bruno@clisp.org>
1933
1934         Tests for module 'uninorm/filter'.
1935         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
1936         * modules/uninorm/filter-tests: New file.
1937
1938         New module 'uninorm/filter'.
1939         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
1940         uninorm_filter_flush, uninorm_filter_free): New declarations.
1941         * lib/uninorm/uninorm-filter.c: New file.
1942         * modules/uninorm/filter: New file.
1943
1944 2009-02-21  Bruno Haible  <bruno@clisp.org>
1945
1946         Tests for module 'uninorm/nfkc'.
1947         * tests/uninorm/test-nfkc.c: New file.
1948         * tests/uninorm/test-u8-nfkc.c: New file.
1949         * tests/uninorm/test-u16-nfkc.c: New file.
1950         * tests/uninorm/test-u32-nfkc.c: New file.
1951         * tests/uninorm/test-u32-nfkc-big.sh: New file.
1952         * tests/uninorm/test-u32-nfkc-big.c: New file.
1953         * modules/uninorm/nfkc-tests: New file.
1954
1955         New module 'uninorm/nfkc'.
1956         * lib/uninorm/nfkc.c: New file.
1957         * modules/uninorm/nfkc: New file.
1958
1959         Tests for module 'uninorm/nfkd'.
1960         * tests/uninorm/test-nfkd.c: New file.
1961         * tests/uninorm/test-u8-nfkd.c: New file.
1962         * tests/uninorm/test-u16-nfkd.c: New file.
1963         * tests/uninorm/test-u32-nfkd.c: New file.
1964         * tests/uninorm/test-u32-nfkd-big.sh: New file.
1965         * tests/uninorm/test-u32-nfkd-big.c: New file.
1966         * modules/uninorm/nfkd-tests: New file.
1967
1968         New module 'uninorm/nfkd'.
1969         * lib/uninorm/nfkd.c: New file.
1970         * modules/uninorm/nfkd: New file.
1971
1972         Tests for module 'uninorm/nfc'.
1973         * tests/uninorm/test-nfc.c: New file.
1974         * tests/uninorm/test-u8-nfc.c: New file.
1975         * tests/uninorm/test-u16-nfc.c: New file.
1976         * tests/uninorm/test-u32-nfc.c: New file.
1977         * tests/uninorm/test-u32-nfc-big.sh: New file.
1978         * tests/uninorm/test-u32-nfc-big.c: New file.
1979         * modules/uninorm/nfc-tests: New file.
1980
1981         New module 'uninorm/nfc'.
1982         * lib/uninorm/nfc.c: New file.
1983         * modules/uninorm/nfc: New file.
1984
1985         Tests for module 'uninorm/nfd'.
1986         * tests/uninorm/test-nfd.c: New file.
1987         * tests/uninorm/test-u8-nfd.c: New file.
1988         * tests/uninorm/test-u16-nfd.c: New file.
1989         * tests/uninorm/test-u32-nfd.c: New file.
1990         * tests/uninorm/test-u32-nfd-big.sh: New file.
1991         * tests/uninorm/test-u32-nfd-big.c: New file.
1992         * tests/uninorm/test-u32-normalize-big.h: New file.
1993         * tests/uninorm/test-u32-normalize-big.c: New file.
1994         * tests/uninorm/NormalizationTest.txt: New file, created from
1995         Unicode 5.1.0 NormalizationTest.txt.
1996         * modules/uninorm/nfd-tests: New file.
1997
1998         New module 'uninorm/nfd'.
1999         * lib/uninorm/nfd.c: New file.
2000         * modules/uninorm/nfd: New file.
2001
2002         New module 'uninorm/u32-normalize'.
2003         * lib/uninorm/u32-normalize.c: New file.
2004         * modules/uninorm/u32-normalize: New file.
2005
2006         New module 'uninorm/u16-normalize'.
2007         * lib/uninorm/u16-normalize.c: New file.
2008         * modules/uninorm/u16-normalize: New file.
2009
2010         New module 'uninorm/u8-normalize'.
2011         * lib/uninorm/u8-normalize.c: New file.
2012         * lib/uninorm/normalize-internal.h: New file.
2013         * lib/uninorm/u-normalize-internal.h: New file.
2014         * modules/uninorm/u8-normalize: New file.
2015
2016         New module 'uninorm/decompose-internal'.
2017         * lib/uninorm/decompose-internal.c: New file.
2018         * modules/uninorm/decompose-internal: New file.
2019
2020         Tests for module 'uninorm/composition'.
2021         * tests/uninorm/test-composition.c: New file.
2022         * modules/uninorm/composition-tests: New file.
2023
2024         New module 'uninorm/composition'.
2025         * lib/uninorm/composition.c: New file.
2026         * lib/uninorm/composition-table.gperf: New file, generated by
2027         gen-uni-tables.
2028         * modules/uninorm/composition: New file.
2029
2030         Tests for module 'uninorm/compat-decomposition'.
2031         * tests/uninorm/test-compat-decomposition.c: New file.
2032         * modules/uninorm/compat-decomposition-tests: New file.
2033
2034         New module 'uninorm/compat-decomposition'.
2035         * lib/uninorm/decompose-internal.h: New file.
2036         * lib/uninorm/compat-decomposition.c: New file.
2037         * modules/uninorm/compat-decomposition: New file.
2038
2039         Tests for module 'uninorm/canonical-decomposition'.
2040         * tests/uninorm/test-canonical-decomposition.c: New file.
2041         * modules/uninorm/canonical-decomposition-tests: New file.
2042
2043         New module 'uninorm/canonical-decomposition'.
2044         * lib/uninorm/canonical-decomposition.c: New file.
2045         * modules/uninorm/canonical-decomposition: New file.
2046
2047         Tests for module 'uninorm/decomposition'.
2048         * tests/uninorm/test-decomposition.c: New file.
2049         * modules/uninorm/decomposition-tests: New file.
2050
2051         New module 'uninorm/decomposition'.
2052         * lib/uninorm/decomposition.c: New file.
2053         * modules/uninorm/decomposition: New file.
2054
2055         New module 'uninorm/decomposition-table'.
2056         * lib/uninorm/decomposition-table.h: New file.
2057         * lib/uninorm/decomposition-table.c: New file.
2058         * lib/uninorm/decomposition-table1.h: New file, generated by
2059         gen-uni-tables.
2060         * lib/uninorm/decomposition-table2.h: New file, generated by
2061         gen-uni-tables.
2062         * modules/uninorm/decomposition-table: New file.
2063
2064         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
2065         (UC_DECOMP_*): New enumeration items.
2066         (get_decomposition): New function.
2067         (struct decomp_table): New type.
2068         (output_decomposition, output_decomposition_tables): New functions.
2069         (unicode_composition_exclusions): New variable.
2070         (fill_composition_exclusions, debug_output_composition_tables): New
2071         functions.
2072         (main): Accept one more argument. Invoke fill_composition_exclusions.
2073         Output decomposition and composition tables.
2074
2075         New module 'uninorm/base'.
2076         * lib/uninorm.h: New file.
2077         * lib/unictype.h: Update comment.
2078         * modules/uninorm/base: New file.
2079
2080 2009-02-21  David Lutterkort  <lutter@redhat.com>
2081
2082         Tests for module 'safe-alloc'.
2083         * tests/test-safe-alloc.c: New file.
2084         * modules/safe-alloc-tests: New file.
2085
2086         New module 'safe-alloc'.
2087         * lib/safe-alloc.h: New file.
2088         * lib/safe-alloc.c: New file.
2089         * m4/safe-alloc.m4: New file.
2090         * modules/safe-alloc: New file.
2091         * doc/safe-alloc.texi: New file.
2092         * doc/gnulib.texi: Include it.
2093         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
2094         safe-alloc.
2095
2096 2009-02-18  Bruno Haible  <bruno@clisp.org>
2097
2098         Fix link error on non-glibc systems.
2099         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
2100         variable.
2101         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
2102
2103 2009-02-18  Jim Meyering  <meyering@redhat.com>
2104
2105         fts: avoid used-uninitialized error due to recent change
2106         * lib/fts.c (fts_read): Guard uses of the new member,
2107         parent->fts_n_dirs_remaining, since it's not relevant for
2108         the parent of a directory specified on the command-line.
2109
2110 2009-02-17  James Youngman  <jay@gnu.org>
2111             Bruno Haible  <bruno@clisp.org>
2112
2113         * m4/include_next.m4: Reformulate comment.
2114
2115 2009-02-16  Jim Meyering  <meyering@redhat.com>
2116
2117         fts: add #if guards so that the fts_lgpl module still builds
2118         * lib/fts.c: Guard just-added hash-table-using parts with
2119         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
2120         Reported by Simon Josefsson.
2121
2122 2009-02-15  Bruno Haible  <bruno@clisp.org>
2123
2124         * modules/array-mergesort-tests: New file.
2125         * tests/test-array-mergesort.c: New file.
2126
2127         New module 'array-mergesort'.
2128         * modules/array-mergesort: New file.
2129         * lib/array-mergesort.h: New file.
2130
2131 2009-02-15  Bruno Haible  <bruno@clisp.org>
2132
2133         Fix 2009-02-07 commit.
2134         * lib/gen-uni-tables.c (output_predicate, output_category,
2135         output_combclass, output_bidi_category, output_decimal_digit,
2136         output_digit, output_numeric, output_mirror, output_scripts,
2137         output_ident_category, output_simple_mapping): Fix format directives.
2138         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
2139
2140 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
2141
2142         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
2143         fixes are available from IBM.
2144
2145 2009-02-13  Jim Meyering  <meyering@redhat.com>
2146
2147         fts: arrange not to stat non-directories in more cases
2148         This makes GNU find (when it doesn't need to stat each file)
2149         *much* more efficient at traversing reiserfs file systems.
2150         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
2151         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
2152         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
2153         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
2154         (leaf_optimization_applies): New function.
2155         (LCO_hash, LCO_compare): New helper functions.
2156         (link_count_optimize_ok): New function.
2157         (fts_stat): Initialize new member (if dir).
2158         (fts_read): Decrement parent's fts_n_dirs_remaining count if
2159         we've just stat'ed a directory.  Skip the stat call when possible.
2160         ---
2161         Note this AFS-related exchange:
2162         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
2163         and note find's pioctl call in find/fstype.c.
2164         But that is necessary only if you want to enable the
2165         optimization for AFS, and for now, I don't.
2166
2167         fts: move a function definition "up" (no semantic change)
2168         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
2169         "up" to precede upcoming use of a related function.
2170
2171 2009-02-11  Jim Meyering  <meyering@redhat.com>
2172
2173         fts: correct internal computation of nlinks (optimization-related)
2174         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
2175         whether the current entry is a directory, so don't test it.
2176
2177 2009-02-10  Bruno Haible  <bruno@clisp.org>
2178
2179         Tests for module 'uniwbrk/ulc-wordbreaks'.
2180         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
2181         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
2182         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
2183
2184         Tests for module 'uniwbrk/u32-wordbreaks'.
2185         * modules/uniwbrk/u32-wordbreaks-tests: New file.
2186         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
2187
2188         Tests for module 'uniwbrk/u16-wordbreaks'.
2189         * modules/uniwbrk/u16-wordbreaks-tests: New file.
2190         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
2191
2192         Tests for module 'uniwbrk/u8-wordbreaks'.
2193         * modules/uniwbrk/u8-wordbreaks-tests: New file.
2194         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
2195
2196 2009-02-10  Bruno Haible  <bruno@clisp.org>
2197
2198         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
2199         property.
2200         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
2201         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
2202         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
2203
2204 2009-02-10  Simon Josefsson  <simon@josefsson.org>
2205
2206         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
2207         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
2208
2209 2009-02-10  Bruno Haible  <bruno@clisp.org>
2210
2211         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
2212         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
2213         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
2214         * lib/unilbrk/u8-possible-linebreaks.c: Update.
2215         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
2216         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
2217
2218 2009-02-09  Simon Josefsson  <simon@josefsson.org>
2219
2220         * lib/sockets.h (gl_fd_to_handle): New function.
2221
2222         * tests/test-sockets.c: Call gl_fd_to_handle.
2223
2224 2009-02-09  Bruno Haible  <bruno@clisp.org>
2225
2226         * doc/havelib.texi: Document the conventions on bi-arch systems.
2227
2228 2009-02-08  Bruno Haible  <bruno@clisp.org>
2229
2230         Document the AC_LIB_LINKFLAGS macro.
2231         * doc/havelib.texi: New file, mostly written on 2005-05-24.
2232         * doc/gnulib.texi: Include it.
2233
2234 2009-02-08  Bruno Haible  <bruno@clisp.org>
2235
2236         Fix wrong order of sections, compared to TOC.
2237         * doc/gnulib.texi: Include relocatable-maint.texi after the
2238         "Regular expressions" node, not before.
2239
2240 2009-02-08  Bruno Haible  <bruno@clisp.org>
2241
2242         Tests for module 'unicase/totitle'.
2243         * modules/unicase/totitle-tests: New file.
2244
2245         Tests for module 'unicase/tolower'.
2246         * modules/unicase/tolower-tests: New file.
2247
2248         Tests for module 'unicase/toupper'.
2249         * modules/unicase/toupper-tests: New file.
2250         * tests/unicase/test-mapping-part1.h: New file.
2251         * tests/unicase/test-mapping-part2.h: New file.
2252
2253         New module 'unicase/totitle'.
2254         * modules/unicase/totitle: New file.
2255         * lib/unicase/totitle.c: New file.
2256
2257         New module 'unicase/tolower'.
2258         * modules/unicase/tolower: New file.
2259         * lib/unicase/tolower.c: New file.
2260
2261         New module 'unicase/toupper'.
2262         * modules/unicase/toupper: New file.
2263         * lib/unicase/toupper.c: New file.
2264         * lib/unicase/simple-mapping.h: New file.
2265
2266         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
2267         (mapping_table): New structure.
2268         (output_simple_mapping): New function.
2269         (main): Invoke output_simple_mapping_test and output_simple_mapping.
2270         * modules/gen-uni-tables (Description): Update.
2271         * lib/unicase/toupper.h: New file, automatically generated by
2272         gen-uni-tables.
2273         * lib/unicase/tolower.h: New file, automatically generated by
2274         gen-uni-tables.
2275         * lib/unicase/totitle.h: New file, automatically generated by
2276         gen-uni-tables.
2277         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
2278         gen-uni-tables.
2279         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
2280         gen-uni-tables.
2281         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
2282         gen-uni-tables.
2283
2284         New module 'unicase/base'.
2285         * modules/unicase/base: New file.
2286         * lib/unicase.h: New file.
2287
2288 2009-02-08  Bruno Haible  <bruno@clisp.org>
2289
2290         New module 'uniwbrk/ulc-wordbreaks'.
2291         * modules/uniwbrk/ulc-wordbreaks: New file.
2292         * lib/uniwbrk/ulc-wordbreaks.c: New file.
2293
2294         New module 'uniwbrk/u32-wordbreaks'.
2295         * modules/uniwbrk/u32-wordbreaks: New file.
2296         * lib/uniwbrk/u32-wordbreaks.c: New file.
2297
2298         New module 'uniwbrk/u16-wordbreaks'.
2299         * modules/uniwbrk/u16-wordbreaks: New file.
2300         * lib/uniwbrk/u16-wordbreaks.c: New file.
2301
2302         New module 'uniwbrk/u8-wordbreaks'.
2303         * modules/uniwbrk/u8-wordbreaks: New file.
2304         * lib/uniwbrk/u8-wordbreaks.c: New file.
2305         * lib/uniwbrk/u-wordbreaks.h: New file.
2306
2307         New module 'uniwbrk/table'.
2308         * modules/uniwbrk/table: New file.
2309         * lib/uniwbrk/wbrktable.h: New file.
2310         * lib/uniwbrk/wbrktable.c: New file.
2311
2312         New module 'uniwbrk/wordbreak-property'.
2313         * modules/uniwbrk/wordbreak-property: New file.
2314         * lib/uniwbrk/wordbreak-property.c: New file.
2315
2316         * lib/gen-uni-tables.c (WBP_*): New enum items.
2317         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
2318         (unicode_org_wbp): New variable.
2319         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
2320         New functions.
2321         (wbp_table): New structure.
2322         (output_wbp, output_wbrk_tables): New functions.
2323         (main): Accept additional argument. Invoke fill_org_wbp,
2324         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
2325         output_wbrk_tables.
2326         * modules/gen-uni-tables (Description): Update.
2327         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
2328         gen-uni-tables.
2329
2330         New module 'uniwbrk/base'.
2331         * modules/uniwbrk/base: New file.
2332         * lib/uniwbrk.h: New file.
2333
2334 2009-02-08  Bruno Haible  <bruno@clisp.org>
2335
2336         Update to Unicode 5.1.0.
2337         * lib/gen-uni-tables.c (is_property_alphabetic): Include
2338         U+2185..U+2188.
2339         (is_property_default_ignorable_code_point): Don't include characters
2340         of category Cc or Cs and not-a-characters.
2341         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
2342         U+0D79, U+109E, U+109F, U+A60C.
2343         * lib/unictype/bidi_of.h: Regenerated.
2344         * lib/unictype/blocks.h: Regenerated.
2345         * lib/unictype/categ_C.h: Regenerated.
2346         * lib/unictype/categ_Cf.h: Regenerated.
2347         * lib/unictype/categ_Cn.h: Regenerated.
2348         * lib/unictype/categ_L.h: Regenerated.
2349         * lib/unictype/categ_Ll.h: Regenerated.
2350         * lib/unictype/categ_Lm.h: Regenerated.
2351         * lib/unictype/categ_Lo.h: Regenerated.
2352         * lib/unictype/categ_Lu.h: Regenerated.
2353         * lib/unictype/categ_M.h: Regenerated.
2354         * lib/unictype/categ_Mc.h: Regenerated.
2355         * lib/unictype/categ_Me.h: Regenerated.
2356         * lib/unictype/categ_Mn.h: Regenerated.
2357         * lib/unictype/categ_N.h: Regenerated.
2358         * lib/unictype/categ_Nd.h: Regenerated.
2359         * lib/unictype/categ_Nl.h: Regenerated.
2360         * lib/unictype/categ_No.h: Regenerated.
2361         * lib/unictype/categ_P.h: Regenerated.
2362         * lib/unictype/categ_Pd.h: Regenerated.
2363         * lib/unictype/categ_Pe.h: Regenerated.
2364         * lib/unictype/categ_Pf.h: Regenerated.
2365         * lib/unictype/categ_Pi.h: Regenerated.
2366         * lib/unictype/categ_Po.h: Regenerated.
2367         * lib/unictype/categ_Ps.h: Regenerated.
2368         * lib/unictype/categ_S.h: Regenerated.
2369         * lib/unictype/categ_Sk.h: Regenerated.
2370         * lib/unictype/categ_Sm.h: Regenerated.
2371         * lib/unictype/categ_So.h: Regenerated.
2372         * lib/unictype/categ_of.h: Regenerated.
2373         * lib/unictype/combining.h: Regenerated.
2374         * lib/unictype/ctype_alnum.h: Regenerated.
2375         * lib/unictype/ctype_alpha.h: Regenerated.
2376         * lib/unictype/ctype_graph.h: Regenerated.
2377         * lib/unictype/ctype_lower.h: Regenerated.
2378         * lib/unictype/ctype_print.h: Regenerated.
2379         * lib/unictype/ctype_punct.h: Regenerated.
2380         * lib/unictype/ctype_upper.h: Regenerated.
2381         * lib/unictype/decdigit.h: Regenerated.
2382         * lib/unictype/digit.h: Regenerated.
2383         * lib/unictype/mirror.h: Regenerated.
2384         * lib/unictype/numeric.h: Regenerated.
2385         * lib/unictype/pr_alphabetic.h: Regenerated.
2386         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
2387         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
2388         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
2389         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
2390         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
2391         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
2392         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
2393         * lib/unictype/pr_combining.h: Regenerated.
2394         * lib/unictype/pr_dash.h: Regenerated.
2395         * lib/unictype/pr_decimal_digit.h: Regenerated.
2396         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
2397         * lib/unictype/pr_deprecated.h: Regenerated.
2398         * lib/unictype/pr_diacritic.h: Regenerated.
2399         * lib/unictype/pr_extender.h: Regenerated.
2400         * lib/unictype/pr_format_control.h: Regenerated.
2401         * lib/unictype/pr_grapheme_base.h: Regenerated.
2402         * lib/unictype/pr_grapheme_extend.h: Regenerated.
2403         * lib/unictype/pr_grapheme_link.h: Regenerated.
2404         * lib/unictype/pr_id_continue.h: Regenerated.
2405         * lib/unictype/pr_id_start.h: Regenerated.
2406         * lib/unictype/pr_ideographic.h: Regenerated.
2407         * lib/unictype/pr_ignorable_control.h: Regenerated.
2408         * lib/unictype/pr_lowercase.h: Regenerated.
2409         * lib/unictype/pr_math.h: Regenerated.
2410         * lib/unictype/pr_numeric.h: Regenerated.
2411         * lib/unictype/pr_other_alphabetic.h: Regenerated.
2412         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
2413         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
2414         * lib/unictype/pr_other_id_continue.h: Regenerated.
2415         * lib/unictype/pr_other_lowercase.h: Regenerated.
2416         * lib/unictype/pr_other_math.h: Regenerated.
2417         * lib/unictype/pr_punctuation.h: Regenerated.
2418         * lib/unictype/pr_sentence_terminal.h: Regenerated.
2419         * lib/unictype/pr_soft_dotted.h: Regenerated.
2420         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
2421         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
2422         * lib/unictype/pr_unified_ideograph.h: Regenerated.
2423         * lib/unictype/pr_uppercase.h: Regenerated.
2424         * lib/unictype/pr_xid_continue.h: Regenerated.
2425         * lib/unictype/pr_xid_start.h: Regenerated.
2426         * lib/unictype/pr_zero_width.h: Regenerated.
2427         * lib/unictype/scripts.h: Regenerated.
2428         * lib/unictype/scripts_byname.gperf: Regenerated.
2429         * lib/unictype/sy_java_ident.h: Regenerated.
2430         * lib/unilbrk/lbrkprop1.h: Regenerated.
2431         * lib/unilbrk/lbrkprop2.h: Regenerated.
2432         * tests/unictype/test-categ_C.c: Regenerated.
2433         * tests/unictype/test-categ_Cf.c: Regenerated.
2434         * tests/unictype/test-categ_Cn.c: Regenerated.
2435         * tests/unictype/test-categ_L.c: Regenerated.
2436         * tests/unictype/test-categ_Ll.c: Regenerated.
2437         * tests/unictype/test-categ_Lm.c: Regenerated.
2438         * tests/unictype/test-categ_Lo.c: Regenerated.
2439         * tests/unictype/test-categ_Lu.c: Regenerated.
2440         * tests/unictype/test-categ_M.c: Regenerated.
2441         * tests/unictype/test-categ_Mc.c: Regenerated.
2442         * tests/unictype/test-categ_Me.c: Regenerated.
2443         * tests/unictype/test-categ_Mn.c: Regenerated.
2444         * tests/unictype/test-categ_N.c: Regenerated.
2445         * tests/unictype/test-categ_Nd.c: Regenerated.
2446         * tests/unictype/test-categ_Nl.c: Regenerated.
2447         * tests/unictype/test-categ_No.c: Regenerated.
2448         * tests/unictype/test-categ_P.c: Regenerated.
2449         * tests/unictype/test-categ_Pd.c: Regenerated.
2450         * tests/unictype/test-categ_Pe.c: Regenerated.
2451         * tests/unictype/test-categ_Pf.c: Regenerated.
2452         * tests/unictype/test-categ_Pi.c: Regenerated.
2453         * tests/unictype/test-categ_Po.c: Regenerated.
2454         * tests/unictype/test-categ_Ps.c: Regenerated.
2455         * tests/unictype/test-categ_S.c: Regenerated.
2456         * tests/unictype/test-categ_Sk.c: Regenerated.
2457         * tests/unictype/test-categ_Sm.c: Regenerated.
2458         * tests/unictype/test-categ_So.c: Regenerated.
2459         * tests/unictype/test-ctype_alnum.c: Regenerated.
2460         * tests/unictype/test-ctype_alpha.c: Regenerated.
2461         * tests/unictype/test-ctype_graph.c: Regenerated.
2462         * tests/unictype/test-ctype_lower.c: Regenerated.
2463         * tests/unictype/test-ctype_print.c: Regenerated.
2464         * tests/unictype/test-ctype_punct.c: Regenerated.
2465         * tests/unictype/test-ctype_upper.c: Regenerated.
2466         * tests/unictype/test-decdigit.h: Regenerated.
2467         * tests/unictype/test-digit.h: Regenerated.
2468         * tests/unictype/test-numeric.h: Regenerated.
2469         * tests/unictype/test-pr_alphabetic.c: Regenerated.
2470         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
2471         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
2472         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
2473         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
2474         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
2475         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
2476         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
2477         * tests/unictype/test-pr_combining.c: Regenerated.
2478         * tests/unictype/test-pr_dash.c: Regenerated.
2479         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
2480         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
2481         * tests/unictype/test-pr_deprecated.c: Regenerated.
2482         * tests/unictype/test-pr_diacritic.c: Regenerated.
2483         * tests/unictype/test-pr_extender.c: Regenerated.
2484         * tests/unictype/test-pr_format_control.c: Regenerated.
2485         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
2486         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
2487         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
2488         * tests/unictype/test-pr_id_continue.c: Regenerated.
2489         * tests/unictype/test-pr_id_start.c: Regenerated.
2490         * tests/unictype/test-pr_ideographic.c: Regenerated.
2491         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
2492         * tests/unictype/test-pr_lowercase.c: Regenerated.
2493         * tests/unictype/test-pr_math.c: Regenerated.
2494         * tests/unictype/test-pr_numeric.c: Regenerated.
2495         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
2496         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
2497         Regenerated.
2498         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
2499         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
2500         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
2501         * tests/unictype/test-pr_other_math.c: Regenerated.
2502         * tests/unictype/test-pr_punctuation.c: Regenerated.
2503         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
2504         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
2505         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
2506         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
2507         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
2508         * tests/unictype/test-pr_uppercase.c: Regenerated.
2509         * tests/unictype/test-pr_xid_continue.c: Regenerated.
2510         * tests/unictype/test-pr_xid_start.c: Regenerated.
2511         * tests/unictype/test-pr_zero_width.c: Regenerated.
2512
2513         Update to Unicode 5.1.0.
2514         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
2515         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
2516         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
2517         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
2518         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
2519         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
2520         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
2521         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
2522         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
2523         (nonspacing_table_ind): Update.
2524         * tests/uniwidth/test-uc_width2.sh: Update expected result.
2525
2526         Update to Unicode 5.1.0.
2527         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
2528         code transform.
2529         * lib/uniname/uniname.c (unicode_character_name,
2530         unicode_name_character): Add the range 0x1Fxxx to the code transform.
2531         * lib/uniname/uninames.h: Regenerated.
2532         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
2533
2534 2009-02-07  Bruno Haible  <bruno@clisp.org>
2535
2536         Merge gen-ctype and gen-lbrk into a single program.
2537         * lib/gen-uni-tables.c: New file, incorporating
2538         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
2539         Add directory prefixes to the names of the generated files.
2540         * lib/unictype/gen-ctype.c: Remove file.
2541         * lib/unilbrk/gen-lbrk.c: Remove file.
2542         * modules/gen-uni-tables: New file.
2543         * modules/unictype/gen-ctype: Remove file.
2544         * modules/unilbrk/gen-lbrk: Remove file.
2545
2546 2009-02-07  Bruno Haible  <bruno@clisp.org>
2547
2548         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
2549
2550         New module 'unistr/u32-strcoll'.
2551         * modules/unistr/u32-strcoll: New file.
2552         * lib/unistr/u32-strcoll.c: New file.
2553
2554         New module 'unistr/u16-strcoll'.
2555         * modules/unistr/u16-strcoll: New file.
2556         * lib/unistr/u16-strcoll.c: New file.
2557
2558         New module 'unistr/u8-strcoll'.
2559         * modules/unistr/u8-strcoll: New file.
2560         * lib/unistr/u8-strcoll.c: New file.
2561         * lib/unistr/u-strcoll.h: New file.
2562
2563 2009-02-07  Bruno Haible  <bruno@clisp.org>
2564
2565         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
2566         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
2567         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
2568         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
2569         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
2570         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
2571
2572 2009-02-07  Bruno Haible  <bruno@clisp.org>
2573
2574         Make 64-bit clean.
2575         * lib/unictype/gen-ctype.c (output_predicate, output_category,
2576         output_combclass, output_bidi_category, output_decimal_digit,
2577         output_digit, output_numeric, output_mirror, output_scripts,
2578         output_ident_category): Use proper width specifier in format strings.
2579
2580 2009-02-07  Bruno Haible  <bruno@clisp.org>
2581
2582         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
2583         failure behaviour.
2584
2585 2009-02-07  Jim Meyering  <meyering@redhat.com>
2586
2587         regex: avoid compilation failure with upcoming gcc-4.4
2588         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
2589         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
2590         "... error: integer overflow in preprocessor expression".
2591
2592 2009-02-05  Ben Pfaff  <blp@gnu.org>
2593
2594         Fix link errors on Windows when close module is used.
2595         * modules/close: Add $(LIB_CLOSE) to Link section.
2596         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
2597         $(LIB_CLOSE) on Windows.
2598
2599 2009-02-05  Jim Meyering  <meyering@redhat.com>
2600
2601         still avoid unused-parameter warnings, but do it cleanly
2602         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
2603         (get_fs_usage): Cast to void instead.
2604         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
2605         (dev_from_mount_options, read_file_system_list): Cast to void.
2606         Prompted by Bruno Haible.
2607
2608 2009-02-04  Jim Meyering  <meyering@redhat.com>
2609
2610         fsusage.c: correct copyright year
2611         * lib/fsusage.c: Reflect year in which the change is pushed into
2612
2613         avoid misc. warnings
2614         * lib/fsusage.c (UNUSED_PARAM): Define.
2615         (get_fs_usage): Mark parameter "disk" as unused.
2616         * lib/getugroups.c (getgrent): Use "void" in prototype.
2617         * lib/mountlist.c: Mark unused parameters.
2618         (read_file_system_list): Declare a local with "const".
2619         * lib/nanosleep.c (getnow): Declare static.
2620         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
2621
2622         dirfd: set errno upon failure
2623         * lib/dirfd.c: Include <errno.h>.
2624         Set errno to ENOTSUP when returning -1.
2625         * modules/dirfd (Depends-on): Add errno.
2626         Suggested by John Kodis <kodis@comcast.net>.
2627
2628 2009-02-01  Bruno Haible  <bruno@clisp.org>
2629
2630         Don't assume sizeof (long) >= sizeof (void *).
2631         * lib/memcmp.c: Include stdint.h.
2632         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
2633         srcp2 to 'const byte *'.
2634         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
2635         types to uintptr_t.
2636         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
2637         * modules/memcmp (Depends-on): Add stdint.
2638         Reported by Ozkan Sezer <sezeroz@gmail.com>.
2639
2640 2009-01-30  Eric Blake  <ebb9@byu.net>
2641
2642         fix more require-before-expand issues
2643         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
2644         expand, AC_PROG_AWK.
2645         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
2646
2647 2009-01-28  Eric Blake  <ebb9@byu.net>
2648
2649         version-etc: use consistent URL formatting
2650         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
2651         Improve formatting.  Use fputs for string without %.
2652
2653 2009-01-28  Jim Meyering  <meyering@redhat.com>
2654
2655         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
2656         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
2657         "underquoted definition of NAME" from autoconf-2.59.
2658
2659 2009-01-28  Bruno Haible  <bruno@clisp.org>
2660
2661         * doc/gnulib.texi: Add "Obsolete modules" to index.
2662
2663 2009-01-28  Jim Meyering  <meyering@redhat.com>
2664
2665         useless-if-before-free: recognize more variants
2666         * build-aux/useless-if-before-free: Also recognize e.g.,
2667         if (NULL != p) free (p);
2668
2669 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
2670
2671         test-getaddrinfo: skip (don't fail) this test when there's no network
2672         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
2673         on the presumption that it means you lack network access.
2674
2675 2009-01-26  Jim Meyering  <meyering@redhat.com>
2676
2677         fflush: avoid warnings on modern systems
2678         * lib/fflush.c (rpl_fflush): Move declarations of locals,
2679         pos and result, into scopes where they're used.
2680
2681 2009-01-26  Eric Blake  <ebb9@byu.net>
2682
2683         Silence warning reintroduced by recent extensions patch.
2684         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
2685         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
2686         autoconf.
2687
2688         Backport improved autoconf semantics of AC_DEFUN_ONCE.
2689         * m4/00gnulib.m4: New file.
2690         * gnulib-tool (func_get_filelist): Always use it.
2691         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
2692         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
2693
2694 2009-01-25  Bruno Haible  <bruno@clisp.org>
2695
2696         Make test-quotearg work on MacOS X and AIX.
2697         * tests/test-quotearg.sh: New file.
2698         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
2699         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
2700         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
2701         include <libintl.h>.
2702         (fake_locale): Remove variable.
2703         (gettext, dgettext, dcgettext): Remove functions.
2704         (main): Instead of setting a fake locale, set a real locale. Call
2705         textdomain and bindtextdomain.
2706         * modules/quotearg-tests (Files): Add the new files.
2707         (Depends-on): Add gettext, setenv, unsetenv.
2708         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
2709         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
2710         Augment TESTS_ENVIRONMENT.
2711
2712 2009-01-25  Bruno Haible  <bruno@clisp.org>
2713
2714         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
2715         fr_FR.ISO8859-1 locale on MacOS X.
2716         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
2717         ja_JP.eucJP locale on MacOS X.
2718         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
2719         zh_CN.GB18030 locale on MacOS X.
2720
2721 2009-01-25  Bruno Haible  <bruno@clisp.org>
2722
2723         Avoid link errors on MacOS X 10.3.
2724         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
2725         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
2726
2727 2009-01-25  Bruno Haible  <bruno@clisp.org>
2728
2729         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
2730         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
2731         * modules/pipe (Files): Remove m4/posix_spawn.m4.
2732         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
2733         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
2734         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
2735         posix_spawnattr_init, posix_spawnattr_setsigmask,
2736         posix_spawnattr_setflags, posix_spawnattr_destroy.
2737
2738         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
2739         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
2740         * modules/execute (Files): Remove m4/posix_spawn.m4.
2741         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
2742         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
2743         posix_spawnattr_init, posix_spawnattr_setsigmask,
2744         posix_spawnattr_setflags, posix_spawnattr_destroy.
2745
2746 2009-01-25  Bruno Haible  <bruno@clisp.org>
2747
2748         * lib/glthread/threadlib.c: Include <stdlib.h>.
2749
2750 2009-01-25  Bruno Haible  <bruno@clisp.org>
2751
2752         * lib/glthread/threadlib.c (dummy): New declaration.
2753
2754 2009-01-25  Bruno Haible  <bruno@clisp.org>
2755
2756         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
2757         multibyte characters also for the GB18030 encoding. Don't crash when
2758         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
2759
2760 2009-01-25  Bruno Haible  <bruno@clisp.org>
2761
2762         Avoid redefining 'struct random_data' on OSF/1 5.1.
2763         * lib/stdlib.in.h: Include <random.h> if it exists.
2764         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
2765         HAVE_RANDOM_H. Include <random.h> when testing whether
2766         'struct random_data' exists.
2767         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
2768
2769 2009-01-25  Bruno Haible  <bruno@clisp.org>
2770
2771         Don't install charset.alias on MacOS X >= 10.3.
2772         * lib/localcharset.c (DARWIN7): New macro.
2773         (get_charset_aliases): Hardcode the result for Darwin7.
2774         * modules/localcharset (install-exec-local): Don't install
2775         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
2776
2777 2009-01-25  Bruno Haible  <bruno@clisp.org>
2778
2779         Don't install charset.alias on mingw and Cygwin.
2780         * modules/localcharset (install-exec-local): Don't install
2781         charset.alias on mingw and Cygwin, if the file does not yet exist.
2782         The result for these platforms is hardcoded in localcharset.c.
2783
2784 2009-01-25  Bruno Haible  <bruno@clisp.org>
2785
2786         Make it possible again to use AC_GNU_SOURCE together with gnulib.
2787         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
2788         before requiring AC_USE_SYSTEM_EXTENSIONS.
2789
2790 2009-01-25  Jim Meyering  <meyering@redhat.com>
2791
2792         c-strtod: avoid warnings
2793         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
2794         "assignment discards qualifiers from pointer target type" warnings.
2795
2796 2009-01-24  Bruno Haible  <bruno@clisp.org>
2797
2798         Add support for non-UTF-8 locales on MacOS X.
2799         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
2800         canonical encodings. For Darwin 7 and newer, don't map traditional
2801         encodings to UTF-8.
2802         Reported by Vincent Lefevre <vincent@vinc17.org>
2803         at <http://savannah.gnu.org/bugs/?25235>.
2804
2805 2009-01-24  Bruno Haible  <bruno@clisp.org>
2806
2807         * doc/gnulib.texi (Obsolete modules): New section.
2808         Reported by Mike Frysinger <vapier@gentoo.org>.
2809
2810 2009-01-24  Bruno Haible  <bruno@clisp.org>
2811
2812         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
2813         (%.dvi): New rule.
2814
2815 2009-01-24  Bruno Haible  <bruno@clisp.org>
2816
2817         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
2818         Reported by Eric Blake.
2819
2820 2009-01-24  Bruno Haible  <bruno@clisp.org>
2821
2822         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
2823         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
2824         Reported by Gary V. Vaughan <gary@gnu.org>.
2825
2826 2009-01-24  Bruno Haible  <bruno@clisp.org>
2827
2828         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
2829
2830 2009-01-23  Bruno Haible  <bruno@clisp.org>
2831
2832         Make c-strtod, c-strtold usable in libraries.
2833         * lib/c-strtod.c: Include string.h instead of xalloc.h.
2834         (C_STRTOD): Call strdup instead of xstrdup.
2835         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
2836         * modules/c-strtold (Depends-on): Likewise.
2837         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
2838         * NEWS: Mention the change.
2839         Reported by Michael Gold <mgold@ncf.ca>.
2840
2841 2009-01-23  Jim Meyering  <meyering@redhat.com>
2842
2843         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
2844         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
2845         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
2846
2847 2009-01-23  Simon Josefsson  <simon@josefsson.org>
2848
2849         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
2850         GNU CoreUtils.
2851         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
2852         * modules/version-etc (Description): Update.
2853
2854 2009-01-22  Bruno Haible  <bruno@clisp.org>
2855
2856         Cache the C locale object.
2857         * lib/c-strtod.c (c_locale_cache): New variable.
2858         (c_locale): New function.
2859         (C_STRTOD): Use it, and don't call freelocale.
2860         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
2861         Suggested by Paolo Bonzini.
2862
2863 2009-01-21  Bruno Haible  <bruno@clisp.org>
2864
2865         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
2866         conditions other than overflow.
2867
2868 2009-01-21  Bruno Haible  <bruno@clisp.org>
2869
2870         * lib/c-strtod.c: Include errno.h.
2871         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
2872         value from STRTOD_L and STRTOD.
2873
2874 2009-01-21  Bruno Haible  <bruno@clisp.org>
2875         and Jim Meyering  <meyering@redhat.com>
2876
2877         nanosleep: skip configure test (fail it) for apple universal builds
2878         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
2879         universal builds, assume that nanosleep does not work.
2880         * modules/nanosleep (Depends-on): Add multiarch.
2881
2882         mktime: skip configure test (fail it) for apple universal builds
2883         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
2884         universal builds, assume that mktime does not work.
2885         * modules/mktime (Depends-on): Add multiarch.
2886
2887 2009-01-21  Eric Blake  <ebb9@byu.net>
2888
2889         multiarch: avoid expand-before-require warning
2890         * modules/multiarch (configure.ac): Require, rather than expand,
2891         gl_MULTIARCH.
2892         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
2893         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
2894         enforce that all clients require it.  Partial reversion of
2895         2008-12-29 patch.
2896
2897         error: avoid expand-before-require warning
2898         * modules/errno (configure.ac): Require, rather than expand,
2899         gl_HEADER_ERRNO_H.
2900         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
2901         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
2902         enforce that all clients require it.
2903
2904         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
2905         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
2906         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
2907         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
2908
2909 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
2910
2911         Revert:
2912         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
2913
2914         regex: do not depend on obsolete modules.
2915         * modules/regex: Remove memcmp and memmove.
2916
2917 2009-01-20  Bruno Haible  <bruno@clisp.org>
2918
2919         Make the 'link' module link on Windows NT 4.
2920         * lib/link.c (_WIN32_WINNT): Don't define.
2921         (CreateHardLinkFuncType): New type.
2922         (CreateHardLinkFunc, initialized): New variables.
2923         (initialize): New function.
2924         (link): Invoke CreateHardLink indirectly through the function pointer.
2925
2926 2009-01-20  Bruno Haible  <bruno@clisp.org>
2927
2928         Fix compilation failure on mingw.
2929         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
2930
2931 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
2932
2933         * doc/c-strtod.texi: Mention a couple of restrictions.
2934
2935 2009-01-20  Jim Meyering  <meyering@redhat.com>
2936
2937         gettimeofday: move more declarations out of functions
2938         * lib/gettimeofday.c: Move extern declarations of tzset and
2939         gmtime out of containing functions.  Prompted by Bruno Haible.
2940
2941 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
2942
2943         regex: do not depend on obsolete modules.
2944         * modules/regex: Remove memcmp and memmove.
2945
2946 2009-01-19  Bruno Haible  <bruno@clisp.org>
2947
2948         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
2949         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
2950         gl_BIGENDIAN, not AC_C_BIGENDIAN.
2951         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
2952         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
2953
2954 2009-01-19  Bruno Haible  <bruno@clisp.org>
2955
2956         * tests/test-link.c: Include <errno.h>.
2957         (main): Exit with code 77 when a hard link cannot be created due to
2958         the file system.
2959         * tests/test-link.sh: Skip test when a hard link cannot be created due
2960         to the file system.
2961         Suggested by Eric Blake.
2962
2963 2009-01-19  Martin Lambers  <marlam@marlam.de>
2964
2965         * modules/link-tests: New file.
2966         * tests/test-link.sh: New file.
2967         * tests/test-link.c: New file.
2968
2969 2009-01-19  Eric Blake  <ebb9@byu.net>
2970
2971         doc: mention another function added in cygwin 1.7.0
2972         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
2973         Another new function in cygwin 1.7.
2974
2975 2009-01-19  Bruno Haible  <bruno@clisp.org>
2976
2977         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
2978         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
2979         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
2980         gl_BIGENDIAN, not AC_C_BIGENDIAN.
2981         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
2982         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
2983         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
2984         * m4/md4.m4 (gl_MD4): Likewise.
2985         * m4/md5.m4 (gl_MD5): Likewise.
2986         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
2987         * m4/sha1.m4 (gl_SHA1): Likewise.
2988         * m4/sha256.m4 (gl_SHA256): Likewise.
2989         * m4/sha512.m4 (gl_SHA512): Likewise.
2990
2991 2009-01-19  Bruno Haible  <bruno@clisp.org>
2992
2993         * modules/uniname/uniname-tests (Depends-on): Add progname.
2994         * tests/uniname/test-uninames.c: Include progname.h.
2995         (main): Call set_program_name.
2996
2997         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
2998         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
2999         (main): Call set_program_name.
3000
3001         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
3002         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
3003         (main): Call set_program_name.
3004
3005         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
3006         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
3007         (main): Call set_program_name.
3008
3009         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
3010         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
3011         (main): Call set_program_name.
3012
3013         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
3014         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
3015         (main): Call set_program_name.
3016
3017         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
3018         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
3019         (main): Call set_program_name.
3020
3021         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
3022         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
3023         (main): Call set_program_name.
3024
3025         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
3026         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
3027         (main): Call set_program_name.
3028
3029 2009-01-19  Eric Blake  <ebb9@byu.net>
3030
3031         test-unistd: test previous patch
3032         * tests/test-unistd.c: Test *_FILENO macros.
3033
3034         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
3035         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
3036         Guarantee a definition.
3037         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
3038         * modules/unistd-safer (Depends-on): Add dependency on unistd.
3039         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
3040         * lib/dup-safer.c (STDERR_FILENO): Likewise.
3041         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
3042         Likewise.
3043         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
3044         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
3045         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
3046         Likewise.
3047         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
3048         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
3049         (STDERR_FILENO): Likewise.
3050         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
3051         (STDERR_FILENO): Likewise.
3052         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
3053         (STDERR_FILENO): Likewise.
3054         Reported by Elbert Pol.
3055
3056 2009-01-19  Eric Blake  <ebb9@byu.net>
3057
3058         doc: mention more functions added in cygwin 1.7.0
3059         * doc/posix-functions/abort.texi (abort): Update wording related
3060         to cygwin.
3061         * doc/posix-functions/daylight.texi (daylight): Likewise.
3062         * doc/posix-functions/optarg.texi (optarg): Likewise.
3063         * doc/posix-functions/optarg.texi (opterr): Likewise.
3064         * doc/posix-functions/optarg.texi (optind): Likewise.
3065         * doc/posix-functions/optarg.texi (optopt): Likewise.
3066         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
3067         worked in 1.5.x, and was withdrawn in 1.7.
3068         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
3069         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
3070         cygwin versions.
3071         * doc/posix-functions/perror.texi (perror): Likewise.
3072         * doc/posix-functions/printf.texi (printf): Likewise.
3073         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
3074         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
3075         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
3076         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
3077         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
3078         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
3079         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
3080         Likewise.
3081         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
3082         Likewise.
3083         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
3084         this function.
3085         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
3086         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
3087         Likewise.
3088         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
3089         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
3090         * doc/posix-functions/confstr.texi (confstr): Likewise.
3091         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
3092         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
3093         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
3094         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
3095         * doc/posix-functions/fputws.texi (fputws): Likewise.
3096         * doc/posix-functions/fwide.texi (fwide): Likewise.
3097         * doc/posix-functions/getwc.texi (getwc): Likewise.
3098         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
3099         * doc/posix-functions/putwc.texi (putwc): Likewise.
3100         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
3101         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
3102         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
3103         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
3104         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
3105         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
3106         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
3107         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
3108         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
3109         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
3110         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
3111
3112 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
3113
3114         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
3115         * lib/ioctl.c: Include <sys/ioctl.h>.
3116
3117 2009-01-19  Simon Josefsson  <simon@josefsson.org>
3118
3119         * modules/getdate-tests (Depends-on): Add progname.
3120         * tests/test-getdate.c: Use progname module, to avoid link errors
3121         on non-glibc systems.
3122
3123 2009-01-18  Simon Josefsson  <simon@josefsson.org>
3124
3125         * modules/filenamecat-tests (Depends-on): Add progname.
3126         * modules/fstrcmp-tests (Depends-on): Likewise.
3127
3128         * tests/test-filenamecat.c: Use progname module, to avoid link
3129         errors on non-glibc systems.
3130         * tests/test-fstrcmp.c: Likewise.
3131
3132 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
3133
3134         gettimeofday: avoid warning: nested extern declaration of 'localtime'
3135         * lib/gettimeofday.c: Move extern declaration out of function.
3136
3137 2009-01-18  Bruno Haible  <bruno@clisp.org>
3138
3139         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
3140         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
3141         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
3142
3143 2009-01-18  Bruno Haible  <bruno@clisp.org>
3144
3145         * lib/strftime.c (MEMPCPY): Remove unused macro.
3146         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
3147
3148 2009-01-18  Martin Lambers  <marlam@marlam.de>
3149
3150         New module 'link'.
3151         * lib/unistd.in.h (link): New declaration.
3152         * lib/link.c: New file.
3153         * m4/link.m4: New file.
3154         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
3155         HAVE_LINK.
3156         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
3157         * modules/link: New file.
3158         * doc/posix-functions/link.texi: Mention the new module.
3159
3160 2009-01-18  Bruno Haible  <bruno@clisp.org>
3161
3162         * tests/test-avltree_list.c (main): Call set_program_name.
3163         * tests/test-avltree_oset.c (main): Likewise.
3164         * tests/test-obstack-printf.c: Include progname.h.
3165         (main): Call set_program_name.
3166         * tests/test-quotearg.c: Include progname.h.
3167         (main): Call set_program_name.
3168         * tests/test-xmemdup0.c: Include progname.h.
3169         (main): Call set_program_name.
3170
3171 2009-01-18  Bruno Haible  <bruno@clisp.org>
3172
3173         New module 'alphasort'.
3174         * lib/dirent.in.h (alphasort): New declaration.
3175         * lib/alphasort.c: New file, from glibc with modifications.
3176         * m4/alphasort.m4: New file.
3177         * modules/alphasort: New file.
3178         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
3179         HAVE_ALPHASORT.
3180         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
3181         HAVE_ALPHASORT.
3182         * doc/posix-functions/alphasort.texi: Mention the new module and the
3183         portability problems.
3184
3185 2009-01-18  Bruno Haible  <bruno@clisp.org>
3186
3187         New module 'scandir'.
3188         * lib/dirent.in.h (scandir): New declaration.
3189         * lib/scandir.c: New file, from glibc with modifications.
3190         * m4/scandir.m4: New file.
3191         * modules/scandir: New file.
3192         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
3193         HAVE_SCANDIR.
3194         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
3195         HAVE_SCANDIR.
3196         * doc/posix-functions/scandir.texi: Mention the new module and the
3197         portability problems.
3198
3199 2009-01-17  Bruno Haible  <bruno@clisp.org>
3200
3201         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
3202         Update documentation.
3203         (func_remove_suffix): Escape all dots in the suffix. Update
3204         documentation.
3205         (func_filter_filelist): Update documentation.
3206         Reported by Ralf Wildenhues.
3207
3208 2009-01-17  Bruno Haible  <bruno@clisp.org>
3209
3210         * modules/dprintf-posix-tests: New file.
3211         * tests/test-dprintf-posix.sh: New file.
3212         * tests/test-dprintf-posix.c: New file.
3213
3214         New modules 'dprintf', 'dprintf-posix'.
3215         * lib/stdio.in.h (dprintf): New declaration.
3216         * lib/dprintf.c: New file.
3217         * m4/dprintf.m4: New file.
3218         * m4/dprintf-posix.m4: New file.
3219         * modules/dprintf: New file.
3220         * modules/dprintf-posix: New file.
3221         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
3222         HAVE_DPRINTF, REPLACE_DPRINTF.
3223         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
3224         HAVE_DPRINTF, REPLACE_DPRINTF.
3225         * doc/posix-functions/dprintf.texi: Mention the new modules.
3226
3227 2009-01-17  Bruno Haible  <bruno@clisp.org>
3228
3229         * modules/vdprintf-posix-tests: New file.
3230         * tests/test-vdprintf-posix.sh: New file.
3231         * tests/test-vdprintf-posix.c: New file.
3232
3233         New modules 'vdprintf', 'vdprintf-posix'.
3234         * lib/stdio.in.h (vdprintf): New declaration.
3235         * lib/vdprintf.c: New file.
3236         * m4/vdprintf.m4: New file.
3237         * m4/vdprintf-posix.m4: New file.
3238         * modules/vdprintf: New file.
3239         * modules/vdprintf-posix: New file.
3240         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
3241         HAVE_VDPRINTF, REPLACE_VDPRINTF.
3242         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
3243         HAVE_VDPRINTF, REPLACE_VDPRINTF.
3244         * doc/posix-functions/vdprintf.texi: Mention the new modules.
3245
3246 2009-01-17  Bruno Haible  <bruno@clisp.org>
3247
3248         Fix replacement of fopen on mingw.
3249         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
3250         mingw.
3251
3252 2009-01-17  Bruno Haible  <bruno@clisp.org>
3253
3254         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
3255         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
3256
3257 2009-01-17  Bruno Haible  <bruno@clisp.org>
3258
3259         Avoid test-fflush2.sh failure on mingw.
3260         * tests/test-fflush2.c: Include binary-io.h.
3261         (main): Put standard input into binary mode.
3262         * modules/fflush-tests (Depends-on): Add binary-io.
3263
3264 2009-01-17  Bruno Haible  <bruno@clisp.org>
3265
3266         * lib/wchar.in.h: In another particular situation, include only the
3267         system's <wchar.h> file.
3268         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
3269         Reported by Albert Chin-A-Young <china@thewrittenword.com>
3270         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
3271
3272 2009-01-17  Bruno Haible  <bruno@clisp.org>
3273
3274         Support for stripping executables in --enable-relocatable.
3275         * build-aux/install-reloc: Expect one more argument, or an environment
3276         variable RELOC_STRIP_PROG. If set, strip the destination program and
3277         its wrapper.
3278         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
3279         RELOC_STRIP_PROG.
3280         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
3281         to set RELOCATABLE_STRIP.
3282         * NEWS: Mention the new Makefile requirement.
3283
3284 2009-01-17  Bruno Haible  <bruno@clisp.org>
3285
3286         * build-aux/install-reloc: Remove debugging information left over by
3287         C compiler on MacOS X.
3288
3289 2009-01-17  Bruno Haible  <bruno@clisp.org>
3290
3291         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
3292         * lib/progreloc.c (find_executable): Fix type of pointer passed to
3293         _NSGetExecutablePath.
3294
3295 2009-01-16  Jim Meyering  <meyering@redhat.com>
3296
3297         strerror: avoid warnings about discarding "const"
3298         * lib/strerror.c (rpl_strerror): Instead of returning a const
3299         string from each and every "case", use a variable, and add a single
3300         cast after the switch.
3301
3302 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
3303
3304         * lib/arpa_inet.in.h: Add extern "C" block for C++.
3305
3306 2009-01-16  Bruno Haible  <bruno@clisp.org>
3307
3308         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
3309         array initializer syntax that also works in C++ mode.
3310         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3311
3312 2009-01-16  Jim Meyering  <meyering@redhat.com>
3313
3314         poll: suppress a warning
3315         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
3316         to ignore "...unsigned expression < 0 is always false" warnings.
3317
3318 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
3319
3320         poll: remove declarations of unused variables
3321         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
3322         sockbuf and optlen.
3323
3324 2009-01-15  Bruno Haible  <bruno@clisp.org>
3325
3326         Make fflush-after-ungetc POSIX compliant on BSD systems.
3327         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
3328         (clear_ungetc_buffer): Implement also for other systems.
3329         (rpl_fflush): On glibc systems, invoke
3330         clear_ungetc_buffer_preserving_position. Otherwise, invoke
3331         clear_ungetc_buffer after fetching the stream's position, not before.
3332
3333 2009-01-15  Bruno Haible  <bruno@clisp.org>
3334
3335         Make fflush-after-ungetc POSIX compliant on glibc systems.
3336         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
3337         after ungetc.
3338         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
3339         (rpl_fflush): On glibc systems, simply call the system's fflush
3340         function after clearing the ungetc buffer.
3341         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
3342         Instead, lseek only to the end of file, then use the system's fseeko
3343         for the rest. On glibc systems, reset the EOF indicator bit.
3344
3345 2009-01-15  Jim Meyering  <meyering@redhat.com>
3346
3347         openmp.m4: revert quote-adding change, for portability to older autoconf
3348         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
3349         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
3350         Simon Josefsson noticed the problem when using autoconf-2.61.
3351
3352 2009-01-15  Bruno Haible  <bruno@clisp.org>
3353
3354         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
3355         * tests/test-fflush2.c (ASSERT): Always fail.
3356         (main): Add two tests for fflush() after ungetc(), taking into account
3357         the Austin Group's clarification.
3358         Suggested by Eric Blake.
3359
3360 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
3361
3362         mktime.m4: remove K&R-style function prototypes
3363         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
3364         for the Sun C++ compiler.
3365
3366 2009-01-14  Bruno Haible  <bruno@clisp.org>
3367
3368         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
3369         while including <wchar.h>.
3370         * lib/wchar.in.h: In two particular situations on HP-UX, include only
3371         the system's <wchar.h> file.
3372         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3373
3374 2009-01-14  Bruno Haible  <bruno@clisp.org>
3375
3376         * m4/csharp.m4: Don't mention gettext on the serial number line.
3377         * m4/csharpexec.m4: Likewise.
3378         * m4/eaccess.m4: Likewise.
3379         * m4/javaexec.m4: Likewise.
3380         * m4/sig_atomic_t.m4: Likewise.
3381         * m4/tmpdir.m4: Likewise.
3382         * m4/intldir.m4: Bump gettext version.
3383         * m4/lib-ld.m4: Likewise.
3384
3385 2009-01-14  Bruno Haible  <bruno@clisp.org>
3386
3387         * lib/progname.c (set_program_name): Add more comments.
3388         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
3389
3390 2009-01-14  Simon Josefsson  <simon@josefsson.org>
3391
3392         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
3393         were sys/stat.h does not define it.
3394
3395 2009-01-14  Jim Meyering  <meyering@redhat.com>
3396
3397         many *.m4 files: improve m4 quoting
3398         99% of this change was performed by running the following commands:
3399         git ls-files | grep '\.m4$' | xargs perl -pi \
3400           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
3401           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
3402           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
3403           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
3404         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
3405         The remainder were to add Copyright dates, increment serial numbers,
3406         undo some changes in comments, exclude m4/intl.m4, and add quotes
3407         around the "1" in ",1" where the unusual spacing prohibited the
3408         above regexps from doing the job.  For more details, see
3409         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
3410         * m4/acl.m4: Modified.
3411         * m4/afs.m4: Likewise.
3412         * m4/alloca.m4: Likewise.
3413         * m4/argp.m4: Likewise.
3414         * m4/argz.m4: Likewise.
3415         * m4/atexit.m4: Likewise.
3416         * m4/bison-i18n.m4: Likewise.
3417         * m4/bison.m4: Likewise.
3418         * m4/byteswap.m4: Likewise.
3419         * m4/c-stack.m4: Likewise.
3420         * m4/c-strtod.m4: Likewise.
3421         * m4/calloc.m4: Likewise.
3422         * m4/canonicalize-lgpl.m4: Likewise.
3423         * m4/chown.m4: Likewise.
3424         * m4/clock_time.m4: Likewise.
3425         * m4/codeset.m4: Likewise.
3426         * m4/copy-file.m4: Likewise.
3427         * m4/csharp.m4: Likewise.
3428         * m4/csharpcomp.m4: Likewise.
3429         * m4/csharpexec.m4: Likewise.
3430         * m4/d-ino.m4: Likewise.
3431         * m4/d-type.m4: Likewise.
3432         * m4/dirfd.m4: Likewise.
3433         * m4/double-slash-root.m4: Likewise.
3434         * m4/eaccess.m4: Likewise.
3435         * m4/eealloc.m4: Likewise.
3436         * m4/environ.m4: Likewise.
3437         * m4/errno_h.m4: Likewise.
3438         * m4/euidaccess.m4: Likewise.
3439         * m4/execute.m4: Likewise.
3440         * m4/fatal-signal.m4: Likewise.
3441         * m4/fchdir.m4: Likewise.
3442         * m4/fcntl_h.m4: Likewise.
3443         * m4/fileblocks.m4: Likewise.
3444         * m4/filenamecat.m4: Likewise.
3445         * m4/findprog.m4: Likewise.
3446         * m4/flexmember.m4: Likewise.
3447         * m4/fnmatch.m4: Likewise.
3448         * m4/fopen.m4: Likewise.
3449         * m4/fpending.m4: Likewise.
3450         * m4/fprintf-posix.m4: Likewise.
3451         * m4/free.m4: Likewise.
3452         * m4/frexp.m4: Likewise.
3453         * m4/frexpl.m4: Likewise.
3454         * m4/fsusage.m4: Likewise.
3455         * m4/ftruncate.m4: Likewise.
3456         * m4/gc-camellia.m4: Likewise.
3457         * m4/gc-random.m4: Likewise.
3458         * m4/gc.m4: Likewise.
3459         * m4/getaddrinfo.m4: Likewise.
3460         * m4/getcwd-abort-bug.m4: Likewise.
3461         * m4/getcwd-path-max.m4: Likewise.
3462         * m4/getdate.m4: Likewise.
3463         * m4/getdomainname.m4: Likewise.
3464         * m4/getgroups.m4: Likewise.
3465         * m4/gethostname.m4: Likewise.
3466         * m4/gethrxtime.m4: Likewise.
3467         * m4/getline.m4: Likewise.
3468         * m4/getloadavg.m4: Likewise.
3469         * m4/getndelim2.m4: Likewise.
3470         * m4/getpass.m4: Likewise.
3471         * m4/gettext.m4: Likewise.
3472         * m4/gettime.m4: Likewise.
3473         * m4/gettimeofday.m4: Likewise.
3474         * m4/gnulib-common.m4: Likewise.
3475         * m4/group-member.m4: Likewise.
3476         * m4/host-os.m4: Likewise.
3477         * m4/iconv.m4: Likewise.
3478         * m4/iconv_open.m4: Likewise.
3479         * m4/inet_ntop.m4: Likewise.
3480         * m4/inet_pton.m4: Likewise.
3481         * m4/inline.m4: Likewise.
3482         * m4/intldir.m4: Likewise.
3483         * m4/intlmacosx.m4: Likewise.
3484         * m4/intmax.m4: Likewise.
3485         * m4/intmax_t.m4: Likewise.
3486         * m4/inttypes.m4: Likewise.
3487         * m4/inttypes_h.m4: Likewise.
3488         * m4/inttypes-pri.m4: Likewise.
3489         * m4/isapipe.m4: Likewise.
3490         * m4/isnand.m4: Likewise.
3491         * m4/isnanf.m4: Likewise.
3492         * m4/isnanl.m4: Likewise.
3493         * m4/javacomp.m4: Likewise.
3494         * m4/javaexec.m4: Likewise.
3495         * m4/jm-winsz1.m4: Likewise.
3496         * m4/jm-winsz2.m4: Likewise.
3497         * m4/lchown.m4: Likewise.
3498         * m4/lcmessage.m4: Likewise.
3499         * m4/ldexpl.m4: Likewise.
3500         * m4/lib-ld.m4: Likewise.
3501         * m4/lib-link.m4: Likewise.
3502         * m4/libsigsegv.m4: Likewise.
3503         * m4/link-follow.m4: Likewise.
3504         * m4/localcharset.m4: Likewise.
3505         * m4/locale-fr.m4: Likewise.
3506         * m4/locale-ja.m4: Likewise.
3507         * m4/locale-tr.m4: Likewise.
3508         * m4/locale-zh.m4: Likewise.
3509         * m4/lock.m4: Likewise.
3510         * m4/longlong.m4: Likewise.
3511         * m4/ls-mntd-fs.m4: Likewise.
3512         * m4/lstat.m4: Likewise.
3513         * m4/malloc.m4: Likewise.
3514         * m4/mathl.m4: Likewise.
3515         * m4/mbrtowc.m4: Likewise.
3516         * m4/mbstate_t.m4: Likewise.
3517         * m4/mbswidth.m4: Likewise.
3518         * m4/memchr.m4: Likewise.
3519         * m4/memcmp.m4: Likewise.
3520         * m4/memcpy.m4: Likewise.
3521         * m4/memmem.m4: Likewise.
3522         * m4/memmove.m4: Likewise.
3523         * m4/mempcpy.m4: Likewise.
3524         * m4/memrchr.m4: Likewise.
3525         * m4/memset.m4: Likewise.
3526         * m4/minmax.m4: Likewise.
3527         * m4/mkdir-slash.m4: Likewise.
3528         * m4/mkdtemp.m4: Likewise.
3529         * m4/mktime.m4: Likewise.
3530         * m4/mmap-anon.m4: Likewise.
3531         * m4/mountlist.m4: Likewise.
3532         * m4/nanosleep.m4: Likewise.
3533         * m4/nls.m4: Likewise.
3534         * m4/nocrash.m4: Likewise.
3535         * m4/open.m4: Likewise.
3536         * m4/openat.m4: Likewise.
3537         * m4/openmp.m4: Likewise.
3538         * m4/pathmax.m4: Likewise.
3539         * m4/perl.m4: Likewise.
3540         * m4/physmem.m4: Likewise.
3541         * m4/pipe.m4: Likewise.
3542         * m4/po.m4: Likewise.
3543         * m4/poll.m4: Likewise.
3544         * m4/posixtm.m4: Likewise.
3545         * m4/posixver.m4: Likewise.
3546         * m4/printf-frexp.m4: Likewise.
3547         * m4/printf-frexpl.m4: Likewise.
3548         * m4/printf-posix.m4: Likewise.
3549         * m4/printf-posix-rpl.m4: Likewise.
3550         * m4/printf.m4: Likewise.
3551         * m4/progtest.m4: Likewise.
3552         * m4/putenv.m4: Likewise.
3553         * m4/readline.m4: Likewise.
3554         * m4/readlink.m4: Likewise.
3555         * m4/readutmp.m4: Likewise.
3556         * m4/realloc.m4: Likewise.
3557         * m4/regex.m4: Likewise.
3558         * m4/relocatable.m4: Likewise.
3559         * m4/relocatable-lib.m4: Likewise.
3560         * m4/rename-dest-slash.m4: Likewise.
3561         * m4/rename.m4: Likewise.
3562         * m4/rmdir-errno.m4: Likewise.
3563         * m4/rmdir.m4: Likewise.
3564         * m4/roundf.m4: Likewise.
3565         * m4/roundl.m4: Likewise.
3566         * m4/rpmatch.m4: Likewise.
3567         * m4/save-cwd.m4: Likewise.
3568         * m4/selinux-selinux-h.m4: Likewise.
3569         * m4/setenv.m4: Likewise.
3570         * m4/settime.m4: Likewise.
3571         * m4/sig2str.m4: Likewise.
3572         * m4/sig_atomic_t.m4: Likewise.
3573         * m4/signalblocking.m4: Likewise.
3574         * m4/signbit.m4: Likewise.
3575         * m4/sigpipe.m4: Likewise.
3576         * m4/sockets.m4: Likewise.
3577         * m4/sockpfaf.m4: Likewise.
3578         * m4/st_dm_mode.m4: Likewise.
3579         * m4/stat-time.m4: Likewise.
3580         * m4/stdbool.m4: Likewise.
3581         * m4/stdint.m4: Likewise.
3582         * m4/stdint_h.m4: Likewise.
3583         * m4/stpcpy.m4: Likewise.
3584         * m4/stpncpy.m4: Likewise.
3585         * m4/strcase.m4: Likewise.
3586         * m4/strchrnul.m4: Likewise.
3587         * m4/strcspn.m4: Likewise.
3588         * m4/strdup.m4: Likewise.
3589         * m4/strftime.m4: Likewise.
3590         * m4/strndup.m4: Likewise.
3591         * m4/strnlen.m4: Likewise.
3592         * m4/strpbrk.m4: Likewise.
3593         * m4/strptime.m4: Likewise.
3594         * m4/strsep.m4: Likewise.
3595         * m4/strtod.m4: Likewise.
3596         * m4/strtoimax.m4: Likewise.
3597         * m4/strtok_r.m4: Likewise.
3598         * m4/strtol.m4: Likewise.
3599         * m4/strtoll.m4: Likewise.
3600         * m4/strtoul.m4: Likewise.
3601         * m4/strtoull.m4: Likewise.
3602         * m4/strtoumax.m4: Likewise.
3603         * m4/strverscmp.m4: Likewise.
3604         * m4/threadlib.m4: Likewise.
3605         * m4/timegm.m4: Likewise.
3606         * m4/tm_gmtoff.m4: Likewise.
3607         * m4/tmpdir.m4: Likewise.
3608         * m4/tmpfile.m4: Likewise.
3609         * m4/tzset.m4: Likewise.
3610         * m4/uintmax_t.m4: Likewise.
3611         * m4/unlinkdir.m4: Likewise.
3612         * m4/unlocked-io.m4: Likewise.
3613         * m4/uptime.m4: Likewise.
3614         * m4/userspec.m4: Likewise.
3615         * m4/utimbuf.m4: Likewise.
3616         * m4/utime.m4: Likewise.
3617         * m4/utimes-null.m4: Likewise.
3618         * m4/utimes.m4: Likewise.
3619         * m4/vararrays.m4: Likewise.
3620         * m4/vasnprintf.m4: Likewise.
3621         * m4/vfprintf-posix.m4: Likewise.
3622         * m4/vprintf-posix.m4: Likewise.
3623         * m4/wait-process.m4: Likewise.
3624         * m4/wchar_t.m4: Likewise.
3625         * m4/wint_t.m4: Likewise.
3626         * m4/write-any-file.m4: Likewise.
3627         * m4/yield.m4: Likewise.
3628
3629 2009-01-13  Bruno Haible  <bruno@clisp.org>
3630
3631         Avoid test-copy-file.sh failures when ACL support insufficient.
3632         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
3633         TESTS_ENVIRONMENT.
3634         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
3635         Reported by Jim Meyering.
3636
3637 2009-01-13  Bruno Haible  <bruno@clisp.org>
3638
3639         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
3640         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
3641         * modules/unistdio/u8-printf-parse (Files): Likewise.
3642         * modules/unistdio/u32-printf-parse (Files): Likewise.
3643         * modules/unistdio/ulc-printf-parse (Files): Likewise.
3644
3645 2009-01-13  Simon Josefsson  <simon@josefsson.org>
3646
3647         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
3648         and m4/inttypes_h.m4 too.
3649
3650 2009-01-12  Eric Blake  <ebb9@byu.net>
3651
3652         tests: IRIX 6.2 cc can't compile -0.0 into .data
3653         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
3654         rather than at compile-time.
3655         * tests/test-floorl.c (minus_zero): Likewise.
3656         * tests/test-frexpl.c (minus_zero): Likewise.
3657         * tests/test-isnan.c (minus_zerol): Likewise.
3658         * tests/test-isnanl.h (minus_zero): Likewise.
3659         * tests/test-ldexpl.c (minus_zero): Likewise.
3660         * tests/test-roundl.c (minus_zero): Likewise.
3661         * tests/test-signbit.c (minus_zerol): Likewise.
3662         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
3663         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
3664         * tests/test-truncl.c (minus_zero): Likewise.
3665         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
3666         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
3667         Reported by Tom G. Christensen and Nelson H. F. Beebe.
3668
3669 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
3670
3671         regex: fix glibc bug 9697
3672         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
3673         handling.
3674
3675 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
3676
3677         regex: fix glibc bug 697
3678         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
3679         being NULL also if there are no backreferences.
3680
3681 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
3682
3683         regex: merge glibc changes
3684         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
3685         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
3686         re_string_skip_chars, re_string_reconstruct): Likewise.
3687         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
3688
3689 2009-01-07  Jim Meyering  <meyering@redhat.com>
3690
3691         poll: filter through cppi
3692         * lib/poll.c: Indent cpp directives to reflect nesting.
3693
3694 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
3695
3696         poll: don't return uninitialized
3697         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
3698
3699 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
3700
3701         avoid compile failure on AIX 6.1
3702         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
3703         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
3704
3705 2009-01-04  Jim Meyering  <meyering@redhat.com>
3706
3707         remove duplicate inclusion of <stdio.h>
3708         * tests/test-fprintf-posix.c: Likewise.
3709         * tests/test-printf-posix.c: Likewise.
3710         * tests/test-snprintf-posix.c: Likewise.
3711         * tests/test-sprintf-posix.c: Likewise.
3712         * tests/test-vasprintf-posix.c: Likewise.
3713         * tests/test-vfprintf-posix.c: Likewise.
3714         * tests/test-vprintf-posix.c: Likewise.
3715         * tests/test-vsnprintf-posix.c: Likewise.
3716         * tests/test-vsprintf-posix.c: Likewise.
3717
3718 2009-01-03  Jim Meyering  <meyering@redhat.com>
3719
3720         gnulib-tool: fix sed-based filtering
3721         * gnulib-tool (func_filter_filelist): Remove extra backslash
3722         in sed_fff_filter definition.
3723
3724 2009-01-02  Jim Meyering  <meyering@redhat.com>
3725
3726         strftime: avoid compilation failure on Solaris 2.6
3727         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
3728         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
3729         Don't #define mbrlen or mbsinit, since now they're guaranteed to
3730         be available.  Reported by Tom G. Christensen.  Details in
3731         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
3732
3733 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3734             Bruno Haible  <bruno@clisp.org>
3735
3736         Speed up gnulib-tool by doing more string processing through shell
3737         built-ins.
3738         * gnulib-tool (fast_func_append): New variable.
3739         (func_remove_prefix, func_remove_suffix): New functions.
3740         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
3741         (func_filter_filelist): New function.
3742         (func_get_dependencies): Use func_remove_suffix instead of sed.
3743         (func_get_automake_snippet): Use func_filter_filelist instead of a
3744         subshell and sed invocation.
3745
3746 2009-01-01  Bruno Haible  <bruno@clisp.org>
3747
3748         Fix a security bug.
3749         * gnulib-tool (func_import, import, update): Don't allow the characters
3750         '"', '$', '`', '\' in macro arguments that become part of commands that
3751         are evaluated.
3752
3753 2009-01-01  Bruno Haible  <bruno@clisp.org>
3754
3755         * gnulib-tool (func_reset_sigpipe): Add more comments.
3756
3757 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3758
3759         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
3760         func_emit_tests_Makefile_am, func_import): Abort loops early if we
3761         already know the answer.
3762
3763 2009-01-01  Jim Meyering  <meyering@redhat.com>
3764
3765         * lib/version-etc.c (version_etc_va): Update copyright year.
3766
3767 2008-12-30  Bruno Haible  <bruno@clisp.org>
3768
3769         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
3770         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
3771         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
3772
3773 2008-12-29  Eric Blake  <ebb9@byu.net>
3774
3775         multiarch: avoid autoconf AC_REQUIRE bug
3776         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
3777         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
3778         2.63 and older.
3779         Reported by Bruno Haible, and analyzed in
3780         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
3781
3782 2008-12-29  Bruno Haible  <bruno@clisp.org>
3783
3784         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
3785         files in subdirectories correctly.
3786         Reported by Ralf Wildenhues.
3787
3788 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3789
3790         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
3791         rather than 'join FILE -', for Solaris join.
3792
3793 2008-12-29  Bruno Haible  <bruno@clisp.org>
3794
3795         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
3796         quoting.
3797         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
3798         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
3799         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
3800         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
3801         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
3802         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
3803         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
3804         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
3805         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
3806         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
3807         * m4/nls.m4 (AM_NLS): Likewise.
3808         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
3809         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
3810         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
3811         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
3812         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
3813         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
3814         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
3815         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
3816         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
3817         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
3818         * m4/xsize.m4 (gl_XSIZE): Likewise.
3819         Suggested by Jim Meyering.
3820
3821 2008-11-17  Bruce Korb  <bkorb@gnu.org>
3822
3823         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
3824         * lib/parse-duration.c: use a switch instead of cascading if's.
3825
3826 2008-12-29  Eric Blake  <ebb9@byu.net>
3827
3828         wchar.h: supply WEOF on Irix 5.3
3829         * lib/wchar.in.h (wint_t): Also supply WEOF.
3830         * lib/wctype.in.h (wint_t): Likewise.
3831         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
3832         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
3833         Reported by Tom G. Christensen.
3834
3835 2008-12-26  Bruno Haible  <bruno@clisp.org>
3836
3837         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
3838         i486, i586, i686.
3839
3840 2008-12-26  Bruno Haible  <bruno@clisp.org>
3841
3842         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
3843
3844 2008-12-26  Bruno Haible  <bruno@clisp.org>
3845
3846         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
3847         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
3848         not __STDC_CONSTANT_MACROS.
3849         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
3850
3851 2008-12-25  Bruno Haible  <bruno@clisp.org>
3852
3853         Add support for universal builds to vasnprintf.
3854         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
3855         universal builds, guess no.
3856         * modules/vasnprintf-posix (Depends-on): Add multiarch.
3857         * modules/vasprintf-posix (Depends-on): Likewise.
3858         * modules/fprintf-posix (Depends-on): Likewise.
3859         * modules/vfprintf-posix (Depends-on): Likewise.
3860         * modules/snprintf-posix (Depends-on): Likewise.
3861         * modules/vsnprintf-posix (Depends-on): Likewise.
3862         * modules/sprintf-posix (Depends-on): Likewise.
3863         * modules/vsprintf-posix (Depends-on): Likewise.
3864         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
3865         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
3866         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
3867         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
3868         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
3869         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
3870         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
3871
3872         Add support for universal builds to <inttypes.h>.
3873         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
3874         _SCNu64_PREFIX): In Apple
3875         universal builds, define directly, using _LP64.
3876         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
3877         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
3878         * modules/inttypes (Depends-on): Add multiarch.
3879         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
3880
3881         Add support for universal builds to <stdint.h>.
3882         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
3883         universal builds, define directly, using _LP64.
3884         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
3885         Apple universal builds, don't test for the size and suffix of ptrdiff_t
3886         and size_t.
3887         * modules/stdint (Depends-on): Add multiarch.
3888         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
3889
3890         New module 'multiarch'.
3891         * modules/multiarch: New file.
3892         * m4/multiarch.m4: New file.
3893
3894 2008-12-25  Bruno Haible  <bruno@clisp.org>
3895
3896         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
3897
3898 2008-12-25  Bruno Haible  <bruno@clisp.org>
3899
3900         * modules/btowc (License): Relicense under LGPLv2+.
3901         * modules/mbsinit (License): Likewise.
3902         * modules/mbrtowc (License): Likewise.
3903         * modules/wcrtomb (License): Likewise.
3904         * modules/streq (License): Likewise.
3905         Reported by David Lutterkort <lutter@redhat.com>.
3906
3907 2008-12-23  Bruno Haible  <bruno@clisp.org>
3908
3909         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
3910
3911 2008-12-23  Bruno Haible  <bruno@clisp.org>
3912
3913         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
3914         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
3915         GETADDRINFO_LIB, not in LIBS.
3916         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
3917         * modules/canon-host (Link): Likewise.
3918         * NEWS: Mention the change.
3919         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
3920         GETADDRINFO_LIB.
3921
3922 2008-12-22  Bruno Haible  <bruno@clisp.org>
3923
3924         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
3925         * doc/posix-functions/iswalpha_l.texi: Likewise.
3926         * doc/posix-functions/iswblank_l.texi: Likewise.
3927         * doc/posix-functions/iswcntrl_l.texi: Likewise.
3928         * doc/posix-functions/iswctype_l.texi: Likewise.
3929         * doc/posix-functions/iswdigit_l.texi: Likewise.
3930         * doc/posix-functions/iswgraph_l.texi: Likewise.
3931         * doc/posix-functions/iswlower_l.texi: Likewise.
3932         * doc/posix-functions/iswprint_l.texi: Likewise.
3933         * doc/posix-functions/iswpunct_l.texi: Likewise.
3934         * doc/posix-functions/iswspace_l.texi: Likewise.
3935         * doc/posix-functions/iswupper_l.texi: Likewise.
3936         * doc/posix-functions/iswxdigit_l.texi: Likewise.
3937         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
3938         * doc/posix-functions/open_wmemstream.texi: Likewise.
3939         * doc/posix-functions/swscanf.texi: Likewise.
3940         * doc/posix-functions/towctrans_l.texi: Likewise.
3941         * doc/posix-functions/towlower.texi: Likewise.
3942         * doc/posix-functions/towlower_l.texi: Likewise.
3943         * doc/posix-functions/towupper.texi: Likewise.
3944         * doc/posix-functions/towupper_l.texi: Likewise.
3945         * doc/posix-functions/vfwprintf.texi: Likewise.
3946         * doc/posix-functions/vfwscanf.texi: Likewise.
3947         * doc/posix-functions/vswscanf.texi: Likewise.
3948         * doc/posix-functions/vwprintf.texi: Likewise.
3949         * doc/posix-functions/vwscanf.texi: Likewise.
3950         * doc/posix-functions/wcpcpy.texi: Likewise.
3951         * doc/posix-functions/wcpncpy.texi: Likewise.
3952         * doc/posix-functions/wcscasecmp.texi: Likewise.
3953         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
3954         * doc/posix-functions/wcscoll_l.texi: Likewise.
3955         * doc/posix-functions/wcsdup.texi: Likewise.
3956         * doc/posix-functions/wcsncasecmp.texi: Likewise.
3957         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
3958         * doc/posix-functions/wcsnlen.texi: Likewise.
3959         * doc/posix-functions/wcsnrtombs.texi: Likewise.
3960         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
3961         * doc/posix-functions/wctrans_l.texi: Likewise.
3962         * doc/posix-functions/wctype_l.texi: Likewise.
3963         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
3964         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
3965         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
3966         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
3967         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
3968         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
3969         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
3970         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
3971         * doc/glibc-functions/wcschrnul.texi: Likewise.
3972         * doc/glibc-functions/wcsftime_l.texi: Likewise.
3973         * doc/glibc-functions/wcstod_l.texi: Likewise.
3974         * doc/glibc-functions/wcstof_l.texi: Likewise.
3975         * doc/glibc-functions/wcstol_l.texi: Likewise.
3976         * doc/glibc-functions/wcstold_l.texi: Likewise.
3977         * doc/glibc-functions/wcstoll_l.texi: Likewise.
3978         * doc/glibc-functions/wcstoq.texi: Likewise.
3979         * doc/glibc-functions/wcstoul_l.texi: Likewise.
3980         * doc/glibc-functions/wcstoull_l.texi: Likewise.
3981         * doc/glibc-functions/wcstouq.texi: Likewise.
3982         * doc/glibc-functions/wmempcpy.texi: Likewise.
3983
3984 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
3985             Eric Blake  <ebb9@byu.net>
3986             Paolo Bonzini  <bonzini@gnu.org>
3987             Bruno Haible  <bruno@clisp.org>
3988
3989         Make c-stack work on Haiku.
3990         * lib/c-stack.c (SA_ONSTACK): Define fallback.
3991         (c_stack_action): Use SA_ONSTACK flag.
3992
3993 2008-12-22  Bruno Haible  <bruno@clisp.org>
3994
3995         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
3996
3997 2008-12-22  Bruno Haible  <bruno@clisp.org>
3998
3999         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
4000         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
4001         being overridden.
4002         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
4003         New macros.
4004         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
4005         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
4006         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
4007         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
4008
4009 2008-12-22  Bruno Haible  <bruno@clisp.org>
4010
4011         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
4012         from test code.
4013
4014 2008-12-22  Eric Blake  <ebb9@byu.net>
4015
4016         Avoid gcc warnings on cygwin.
4017         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
4018         Avoid unused variable.
4019         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
4020         Likewise.
4021
4022 2008-12-22  Bruno Haible  <bruno@clisp.org>
4023
4024         Remove HAVE_MBRTOWC conditionals.
4025         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
4026         (mbscasecmp): Assume mbrtowc function.
4027         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
4028         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
4029         * lib/mbschr.c: Include mbuiter.h unconditionally.
4030         (mbschr): Assume mbrtowc function.
4031         * lib/mbscspn.c: Include mbuiter.h unconditionally.
4032         (mbscspn): Assume mbrtowc function.
4033         * lib/mbslen.c: Include mbuiter.h unconditionally.
4034         (mbslen): Assume mbrtowc function.
4035         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
4036         (mbsncasecmp): Assume mbrtowc function.
4037         * lib/mbsnlen.c: Include mbiter.h unconditionally.
4038         (mbsnlen): Assume mbrtowc function.
4039         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
4040         (mbspbrk): Assume mbrtowc function.
4041         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
4042         (mbspcasecmp): Assume mbrtowc function.
4043         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
4044         (mbsrchr): Assume mbrtowc function.
4045         * lib/mbssep.c: Include mbuiter.h unconditionally.
4046         (mbssep): Assume mbrtowc function.
4047         * lib/mbsspn.c: Include mbuiter.h unconditionally.
4048         (mbsspn): Assume mbrtowc function.
4049         * lib/mbsstr.c: Include mbuiter.h unconditionally.
4050         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
4051         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
4052         (mbstok_r): Assume mbrtowc function.
4053         * lib/propername.c: Include mbuiter.h unconditionally.
4054         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
4055         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
4056         (trim2): Assume mbrtowc function.
4057         * lib/mbswidth.c (mbsinit): Remove fallback definition.
4058         (mbsnwidth): Assume mbrtowc function.
4059         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
4060         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
4061         fallback definitions.
4062         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
4063
4064 2008-12-22  Bruno Haible  <bruno@clisp.org>
4065
4066         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
4067
4068 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
4069
4070         * modules/regex: Request emulations for the mb*/wc* functions we need.
4071         * m4/regex.m4: Don't look for those functions here.
4072         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
4073
4074 2008-12-22  Bruno Haible  <bruno@clisp.org>
4075
4076         * modules/fnmatch (Depends-on): Remove duplicated dependency.
4077
4078 2008-12-21  Bruno Haible  <bruno@clisp.org>
4079
4080         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
4081         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
4082         (Include): Remove conditionalization.
4083         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
4084         (Include): Remove conditionalization.
4085         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
4086         (Include): Remove conditionalization.
4087         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
4088         * m4/mbfile.m4 (gl_MBFILE): Likewise.
4089         * NEWS: Mention the change.
4090         Reported by Alan Hourihane <alanh@fairlite.co.uk>
4091         via Sergey Poznyakoff <gray@gnu.org.ua>.
4092
4093 2008-12-21  Bruno Haible  <bruno@clisp.org>
4094
4095         * MODULES.html.sh (Extended multibyte and wide character utilities
4096         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
4097         wcrtomb, wcsrtombs.
4098         (Support for systems lacking POSIX:2008): Add accept, bind, close,
4099         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
4100         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
4101         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
4102
4103 2008-12-21  Bruno Haible  <bruno@clisp.org>
4104
4105         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
4106
4107 2008-12-21  Bruno Haible  <bruno@clisp.org>
4108
4109         * modules/wcsnrtombs-tests: New file.
4110         * tests/test-wcsnrtombs1.sh: New file.
4111         * tests/test-wcsnrtombs2.sh: New file.
4112         * tests/test-wcsnrtombs3.sh: New file.
4113         * tests/test-wcsnrtombs4.sh: New file.
4114         * tests/test-wcsnrtombs.c: New file.
4115
4116         New module 'wcsnrtombs'.
4117         * lib/wchar.in.h (wcsnrtombs): New declaration.
4118         * lib/wcsnrtombs.c: New file.
4119         * lib/wcsrtombs-state.c: New file.
4120         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
4121         (internal_state): Remove variable.
4122         * m4/wcsnrtombs.m4: New file.
4123         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
4124         compilation units.
4125         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
4126         HAVE_WCSNRTOMBS.
4127         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
4128         HAVE_WCSNRTOMBS.
4129         * modules/wcsnrtombs: New file.
4130         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
4131         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
4132
4133 2008-12-21  Bruno Haible  <bruno@clisp.org>
4134
4135         * modules/wcsrtombs-tests: New file.
4136         * tests/test-wcsrtombs1.sh: New file.
4137         * tests/test-wcsrtombs2.sh: New file.
4138         * tests/test-wcsrtombs3.sh: New file.
4139         * tests/test-wcsrtombs4.sh: New file.
4140         * tests/test-wcsrtombs.c: New file.
4141
4142         New module 'wcsrtombs'.
4143         * lib/wchar.in.h (wcsrtombs): New declaration.
4144         * lib/wcsrtombs.c: New file.
4145         * m4/wcsrtombs.m4: New file.
4146         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
4147         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
4148         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
4149         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
4150         * modules/wcsrtombs: New file.
4151         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
4152         bugs.
4153
4154 2008-12-21  Bruno Haible  <bruno@clisp.org>
4155
4156         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
4157         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
4158         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
4159         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
4160         if not correct.
4161         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
4162         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
4163         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
4164         m4/locale-zh.m4, m4/codeset.m4.
4165         * doc/posix-functions/wcrtomb.texi: Document the bug.
4166
4167 2008-12-21  Bruno Haible  <bruno@clisp.org>
4168
4169         Work around a btowc() bug on IRIX 6.5.
4170         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
4171         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
4172         REPLACE_WTOBC if not.
4173         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
4174         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
4175         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
4176
4177 2008-12-21  Bruno Haible  <bruno@clisp.org>
4178
4179         * modules/wcrtomb-tests: New file.
4180         * tests/test-wcrtomb.sh: New file.
4181         * tests/test-wcrtomb.c: New file.
4182
4183         New module 'wcrtomb'.
4184         * lib/wchar.in.h (wcrtomb): New declaration.
4185         * lib/wcrtomb.c: New file.
4186         * m4/wcrtomb.m4: New file.
4187         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
4188         HAVE_WCRTOMB.
4189         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
4190         HAVE_WCRTOMB.
4191         * modules/wcrtomb: New file.
4192         * doc/posix-functions/wcrtomb.texi: Mention the new module.
4193
4194 2008-12-21  Bruno Haible  <bruno@clisp.org>
4195
4196         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
4197         * modules/mbsrtowcs (Files): Likewise.
4198         * modules/wctob (Files): Likewise.
4199         * modules/c-strcase-tests (Files): Likewise.
4200         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
4201         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
4202         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
4203         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
4204         * modules/vasnprintf-posix-tests (Files): Likewise.
4205
4206 2008-12-21  William Pursell  <bill.pursell@gmail.com>
4207
4208         gitlog-to-changelog: pass all command-line arguments to git-log
4209         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
4210         it is sometimes convenient to filter the commits in various ways.
4211         gitlog-to-changelog only allows --since to specify a start date,
4212         but git-log itself supports many other filtering mechanisms.
4213         At the moment, I want to filter by branch name.  Rather than
4214         adding a --branch option to gitlog-to-changelog, it seems more
4215         flexible to simply pass all options directly to git-log and let
4216         git do the work.  Notice that this effectively makes --since a
4217         redundant option for gitlog-to-changelog, but removing it would
4218         require current usage to change since calls would then require
4219         an additional '--'.
4220
4221 2008-12-21  Bruno Haible  <bruno@clisp.org>
4222
4223         * modules/mbsnrtowcs-tests: New file.
4224         * tests/test-mbsnrtowcs1.sh: New file.
4225         * tests/test-mbsnrtowcs2.sh: New file.
4226         * tests/test-mbsnrtowcs3.sh: New file.
4227         * tests/test-mbsnrtowcs4.sh: New file.
4228         * tests/test-mbsnrtowcs.c: New file.
4229
4230         New module 'mbsnrtowcs'.
4231         * lib/wchar.in.h (mbsnrtowcs): New declaration.
4232         * lib/mbsnrtowcs.c: New file.
4233         * lib/mbsrtowcs-state.c: New file.
4234         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
4235         (internal_state): Remove variable.
4236         * m4/mbsnrtowcs.m4: New file.
4237         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
4238         compilation units.
4239         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
4240         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
4241         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
4242         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
4243         * modules/mbsnrtowcs: New file.
4244         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
4245         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
4246         portability problem.
4247
4248 2008-12-21  Bruno Haible  <bruno@clisp.org>
4249
4250         Work around mbsrtowcs bug.
4251         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
4252         (gl_FUNC_MBSRTOWCS): Invoke it.
4253         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
4254         m4/locale-zh.m4.
4255         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
4256
4257 2008-12-21  Bruno Haible  <bruno@clisp.org>
4258
4259         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
4260
4261 2008-12-21  Bruno Haible  <bruno@clisp.org>
4262
4263         Update doc for AIX.
4264         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
4265         16-bit wchar_t type.
4266         * doc/posix-functions/btowc.texi: Likewise.
4267         * doc/posix-functions/fgetwc.texi: Likewise.
4268         * doc/posix-functions/fgetws.texi: Likewise.
4269         * doc/posix-functions/fputwc.texi: Likewise.
4270         * doc/posix-functions/fputws.texi: Likewise.
4271         * doc/posix-functions/fwide.texi: Likewise.
4272         * doc/posix-functions/fwprintf.texi: Likewise.
4273         * doc/posix-functions/fwscanf.texi: Likewise.
4274         * doc/posix-functions/getwchar.texi: Likewise.
4275         * doc/posix-functions/getwc.texi: Likewise.
4276         * doc/posix-functions/iswalnum.texi: Likewise.
4277         * doc/posix-functions/iswalpha.texi: Likewise.
4278         * doc/posix-functions/iswblank.texi: Likewise.
4279         * doc/posix-functions/iswcntrl.texi: Likewise.
4280         * doc/posix-functions/iswctype.texi: Likewise.
4281         * doc/posix-functions/iswdigit.texi: Likewise.
4282         * doc/posix-functions/iswgraph.texi: Likewise.
4283         * doc/posix-functions/iswlower.texi: Likewise.
4284         * doc/posix-functions/iswprint.texi: Likewise.
4285         * doc/posix-functions/iswpunct.texi: Likewise.
4286         * doc/posix-functions/iswspace.texi: Likewise.
4287         * doc/posix-functions/iswupper.texi: Likewise.
4288         * doc/posix-functions/iswxdigit.texi: Likewise.
4289         * doc/posix-functions/mbrtowc.texi: Likewise.
4290         * doc/posix-functions/mbsrtowcs.texi: Likewise.
4291         * doc/posix-functions/mbstowcs.texi: Likewise.
4292         * doc/posix-functions/mbtowc.texi: Likewise.
4293         * doc/posix-functions/putwchar.texi: Likewise.
4294         * doc/posix-functions/putwc.texi: Likewise.
4295         * doc/posix-functions/swprintf.texi: Likewise.
4296         * doc/posix-functions/tolower.texi: Likewise.
4297         * doc/posix-functions/toupper.texi: Likewise.
4298         * doc/posix-functions/towctrans.texi: Likewise.
4299         * doc/posix-functions/ungetwc.texi: Likewise.
4300         * doc/posix-functions/vswprintf.texi: Likewise.
4301         * doc/posix-functions/wcrtomb.texi: Likewise.
4302         * doc/posix-functions/wcscat.texi: Likewise.
4303         * doc/posix-functions/wcschr.texi: Likewise.
4304         * doc/posix-functions/wcscmp.texi: Likewise.
4305         * doc/posix-functions/wcscoll.texi: Likewise.
4306         * doc/posix-functions/wcscpy.texi: Likewise.
4307         * doc/posix-functions/wcscspn.texi: Likewise.
4308         * doc/posix-functions/wcsftime.texi: Likewise.
4309         * doc/posix-functions/wcslen.texi: Likewise.
4310         * doc/posix-functions/wcsncat.texi: Likewise.
4311         * doc/posix-functions/wcsncmp.texi: Likewise.
4312         * doc/posix-functions/wcsncpy.texi: Likewise.
4313         * doc/posix-functions/wcspbrk.texi: Likewise.
4314         * doc/posix-functions/wcsrchr.texi: Likewise.
4315         * doc/posix-functions/wcsrtombs.texi: Likewise.
4316         * doc/posix-functions/wcsspn.texi: Likewise.
4317         * doc/posix-functions/wcsstr.texi: Likewise.
4318         * doc/posix-functions/wcstod.texi: Likewise.
4319         * doc/posix-functions/wcstof.texi: Likewise.
4320         * doc/posix-functions/wcstoimax.texi: Likewise.
4321         * doc/posix-functions/wcstok.texi: Likewise.
4322         * doc/posix-functions/wcstold.texi: Likewise.
4323         * doc/posix-functions/wcstoll.texi: Likewise.
4324         * doc/posix-functions/wcstol.texi: Likewise.
4325         * doc/posix-functions/wcstombs.texi: Likewise.
4326         * doc/posix-functions/wcstoull.texi: Likewise.
4327         * doc/posix-functions/wcstoul.texi: Likewise.
4328         * doc/posix-functions/wcstoumax.texi: Likewise.
4329         * doc/posix-functions/wcswidth.texi: Likewise.
4330         * doc/posix-functions/wcsxfrm.texi: Likewise.
4331         * doc/posix-functions/wctob.texi: Likewise.
4332         * doc/posix-functions/wctomb.texi: Likewise.
4333         * doc/posix-functions/wctrans.texi: Likewise.
4334         * doc/posix-functions/wctype.texi: Likewise.
4335         * doc/posix-functions/wcwidth.texi: Likewise.
4336         * doc/posix-functions/wmemchr.texi: Likewise.
4337         * doc/posix-functions/wmemcmp.texi: Likewise.
4338         * doc/posix-functions/wmemcpy.texi: Likewise.
4339         * doc/posix-functions/wmemmove.texi: Likewise.
4340         * doc/posix-functions/wmemset.texi: Likewise.
4341         * doc/posix-functions/wprintf.texi: Likewise.
4342         * doc/posix-functions/wscanf.texi: Likewise.
4343
4344 2008-12-21  Bruno Haible  <bruno@clisp.org>
4345
4346         Update doc for HP-UX 11.11.
4347         * doc/posix-functions/btowc.texi: Clarify that the function is missing
4348         in HP-UX version 11.00, not in all versions of HP-UX 11.
4349         * doc/posix-functions/fwide.texi: Likewise.
4350         * doc/posix-functions/fwprintf.texi: Likewise.
4351         * doc/posix-functions/fwscanf.texi: Likewise.
4352         * doc/posix-functions/inet_ntop.texi: Likewise.
4353         * doc/posix-functions/inet_pton.texi: Likewise.
4354         * doc/posix-functions/mbrlen.texi: Likewise.
4355         * doc/posix-functions/mbrtowc.texi: Likewise.
4356         * doc/posix-functions/mbsinit.texi: Likewise.
4357         * doc/posix-functions/mbsrtowcs.texi: Likewise.
4358         * doc/posix-functions/swprintf.texi: Likewise.
4359         * doc/posix-functions/swscanf.texi: Likewise.
4360         * doc/posix-functions/towctrans.texi: Likewise.
4361         * doc/posix-functions/vfwprintf.texi: Likewise.
4362         * doc/posix-functions/vswprintf.texi: Likewise.
4363         * doc/posix-functions/vwprintf.texi: Likewise.
4364         * doc/posix-functions/wcrtomb.texi: Likewise.
4365         * doc/posix-functions/wcsrtombs.texi: Likewise.
4366         * doc/posix-functions/wcsstr.texi: Likewise.
4367         * doc/posix-functions/wctob.texi: Likewise.
4368         * doc/posix-functions/wctrans.texi: Likewise.
4369         * doc/posix-functions/wmemchr.texi: Likewise.
4370         * doc/posix-functions/wmemcmp.texi: Likewise.
4371         * doc/posix-functions/wmemcpy.texi: Likewise.
4372         * doc/posix-functions/wmemmove.texi: Likewise.
4373         * doc/posix-functions/wmemset.texi: Likewise.
4374         * doc/posix-functions/wprintf.texi: Likewise.
4375         * doc/posix-functions/wscanf.texi: Likewise.
4376
4377 2008-12-21  Bruno Haible  <bruno@clisp.org>
4378
4379         Work around a portability problem.
4380         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
4381         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
4382
4383 2008-12-20  Bruno Haible  <bruno@clisp.org>
4384
4385         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
4386         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
4387         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
4388         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
4389         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
4390
4391         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
4392         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
4393         set.
4394         (GNULIB_defined_mbstate_t): New macro.
4395         (mbsinit): Redefine if REPLACE_MBSINIT is set.
4396         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
4397         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
4398         reuses the system's mbrtowc function but works around the bugs.
4399         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
4400         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
4401         macros.
4402         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
4403         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
4404         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
4405         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
4406         REPLACE_MBSINIT if mbsinit needs to be overridden.
4407         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
4408         REPLACE_MBSINIT, REPLACE_MBRTOWC.
4409         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
4410         REPLACE_MBSINIT, REPLACE_MBRTOWC.
4411         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
4412         m4/locale-zh.m4.
4413         (Depends): Add mbsinit.
4414         * modules/mbsinit (Depends): Add mbrtowc.
4415         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
4416
4417 2008-12-20  Bruno Haible  <bruno@clisp.org>
4418
4419         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
4420         so that there are no conversion errors on AIX.
4421         * tests/test-mbsrtowcs.c (main): LIkewise.
4422
4423 2008-12-20  Bruno Haible  <bruno@clisp.org>
4424
4425         Work around wctob bug on Solaris <= 9.
4426         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
4427         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
4428         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
4429         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
4430         * modules/wctob (Files): Add m4/locale-fr.m4.
4431         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
4432
4433 2008-12-20  Bruno Haible  <bruno@clisp.org>
4434
4435         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
4436         /dev/null.
4437         * tests/test-select-in.sh: Likewise.
4438         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4439
4440 2008-12-20  Bruno Haible  <bruno@clisp.org>
4441
4442         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
4443         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
4444         Cygwin 1.5.x.
4445
4446 2008-12-20  Bruno Haible  <bruno@clisp.org>
4447
4448         Ensure mbstate_t is defined on HP-UX 11.11.
4449         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
4450         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
4451         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
4452         AC_USE_SYSTEM_EXTENSIONS.
4453         * modules/fnmatch (Depends-on): Add extensions.
4454         * modules/mbrlen (Depends-on): Likewise.
4455         * modules/mbrtowc (Depends-on): Likewise.
4456         * modules/mbsinit (Depends-on): Likewise.
4457         * modules/mbsrtowcs (Depends-on): Likewise.
4458         * modules/mbswidth (Depends-on): Likewise.
4459         * modules/quotearg (Depends-on): Likewise.
4460         * modules/strftime (Depends-on): Likewise.
4461
4462 2008-12-20  Bruno Haible  <bruno@clisp.org>
4463
4464         Ensure wctob is declared on IRIX 6.5.
4465         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
4466         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
4467         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
4468         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
4469         of HAVE_WCTOB.
4470         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
4471         HAVE_WCTOB.
4472         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
4473
4474 2008-12-19  Bruno Haible  <bruno@clisp.org>
4475
4476         * modules/mbsrtowcs-tests: New file.
4477         * tests/test-mbsrtowcs1.sh: New file.
4478         * tests/test-mbsrtowcs2.sh: New file.
4479         * tests/test-mbsrtowcs3.sh: New file.
4480         * tests/test-mbsrtowcs4.sh: New file.
4481         * tests/test-mbsrtowcs.c: New file.
4482
4483         New module 'mbsrtowcs'.
4484         * lib/wchar.in.h (mbsrtowcs): New declaration.
4485         * lib/mbsrtowcs.c: New file.
4486         * m4/mbsrtowcs.m4: New file.
4487         * modules/mbsrtowcs: New file.
4488         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
4489         HAVE_MBSRTOWCS.
4490         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
4491         HAVE_MBSRTOWCS.
4492         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
4493
4494 2008-12-19  Bruno Haible  <bruno@clisp.org>
4495
4496         New module 'mbrlen'.
4497         * lib/wchar.in.h (mbrlen): New declaration.
4498         * lib/mbrlen.c: New file.
4499         * m4/mbrlen.m4: New file.
4500         * modules/mbrlen: New file.
4501         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
4502         HAVE_MBRLEN.
4503         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
4504         HAVE_MBRLEN.
4505         * doc/posix-functions/mbrlen.texi: Document the new module.
4506
4507 2008-12-19  Bruno Haible  <bruno@clisp.org>
4508
4509         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
4510         * modules/mbrtowc (Depends-on): Add verify.
4511         Suggested by Paul Eggert.
4512
4513 2008-12-18  Bruno Haible  <bruno@clisp.org>
4514
4515         * modules/mbsinit-tests: New file.
4516         * tests/test-mbsinit.sh: New file.
4517         * tests/test-mbsinit.c: New file.
4518
4519 2008-12-18  Bruno Haible  <bruno@clisp.org>
4520
4521         * modules/mbrtowc-tests: New file.
4522         * tests/test-mbrtowc1.sh: New file.
4523         * tests/test-mbrtowc2.sh: New file.
4524         * tests/test-mbrtowc3.sh: New file.
4525         * tests/test-mbrtowc4.sh: New file.
4526         * tests/test-mbrtowc.c: New file.
4527
4528         New module 'mbrtowc'.
4529         * lib/wchar.in.h (mbstate_t): Override when the system does not have
4530         mbsinit and mbrtowc.
4531         (mbrtowc): New declaration.
4532         * lib/mbrtowc.c: New file.
4533         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
4534         * modules/mbrtowc: New file.
4535         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
4536         HAVE_MBRTOWC.
4537         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
4538         HAVE_MBRTOWC.
4539         * doc/posix-functions/mbrtowc.texi: Document the new module.
4540
4541 2008-12-18  Bruno Haible  <bruno@clisp.org>
4542
4543         New module 'wctob'.
4544         * lib/wchar.in.h (wctob): New declaration.
4545         * lib/wctob.c: New file.
4546         * m4/wctob.m4: New file.
4547         * modules/wctob: New file.
4548         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
4549         HAVE_WCTOB.
4550         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
4551         * doc/posix-functions/wctob.texi: Document the new module.
4552
4553 2008-12-18  Bruno Haible  <bruno@clisp.org>
4554
4555         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
4556         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
4557
4558 2008-12-18  Simon Josefsson  <simon@josefsson.org>
4559
4560         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
4561         G. Christensen" <tgc@jupiterrise.com>.
4562
4563         * lib/flock.c: Need to include errno.h.  Reported by "Tom
4564         G. Christensen" <tgc@jupiterrise.com>.
4565
4566         * lib/flock.c: Need to include string.h.  Reported by "Tom
4567         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
4568         <ebb9@byu.net>.
4569
4570 2008-12-18  Bruno Haible  <bruno@clisp.org>
4571
4572         * m4/locale-ja.m4: New file, from GNU gettext.
4573
4574 2008-12-17  Bruno Haible  <bruno@clisp.org>
4575
4576         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
4577         Suggested by Eric Blake.
4578
4579 2008-12-17  Bruno Haible  <bruno@clisp.org>
4580
4581         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
4582
4583 2008-12-17  Bruno Haible  <bruno@clisp.org>
4584
4585         * lib/mbsinit.c: Include verify.h. Verify an assumption.
4586         * modules/mbsinit (Depends-on): Add verify.
4587         Suggested by Paul Eggert.
4588
4589 2008-12-17  Bruno Haible  <bruno@clisp.org>
4590
4591         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
4592         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
4593         gl_FUNC_MBRTOWC.
4594         * m4/mbiter.m4 (gl_MBITER): LIkewise.
4595         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
4596         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
4597         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
4598         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
4599         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
4600         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
4601         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
4602         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
4603         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
4604         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
4605         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
4606         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
4607         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
4608         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
4609         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4610         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
4611         * modules/trim (configure.ac): Likewise.
4612
4613 2008-12-17  Bruno Haible  <bruno@clisp.org>
4614
4615         * modules/btowc-tests: New file.
4616         * tests/test-btowc1.sh: New file.
4617         * tests/test-btowc2.sh: New file.
4618         * tests/test-btowc.c: New file.
4619
4620         New module 'btowc'.
4621         * lib/wchar.in.h (btowc): New declaration.
4622         * lib/btowc.c: New file.
4623         * m4/btowc.m4: New file.
4624         * modules/btowc: New file.
4625         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
4626         HAVE_BTOWC.
4627         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
4628         * doc/posix-functions/btowc.texi: Document the new module.
4629
4630 2008-12-17  Bruno Haible  <bruno@clisp.org>
4631
4632         New module 'mbsinit'.
4633         * lib/wchar.in.h (mbsinit): New declaration.
4634         * lib/mbsinit.c: New file.
4635         * m4/mbsinit.m4: New file.
4636         * modules/mbsinit: New file.
4637         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
4638         HAVE_MBSINIT.
4639         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
4640         HAVE_MBSINIT.
4641         * doc/posix-functions/mbsinit.texi: Document the new module.
4642
4643 2008-12-16  Bruno Haible  <bruno@clisp.org>
4644
4645         * lib/unistd.in.h: Add comment.
4646         * tests/test-environ.c: Don't include <stdlib.h>.
4647
4648 2008-12-16  Bruno Haible  <bruno@clisp.org>
4649
4650         * lib/parse-duration.h (parse_duration): Document return value
4651         convention.
4652         * lib/parse-duration.c: Include specification header first. Add
4653         comments.
4654         (_): Remove macro.
4655         (parse_year_month_day, parse_hour_minute_second): Move side effects
4656         outside of strchr call.
4657         (parse_non_iso8601): Move side effects outside of isspace call.
4658         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
4659         call.
4660
4661 2008-12-16  Bruno Haible  <bruno@clisp.org>
4662
4663         * tests/test-parse-duration.sh: Produce no output when the test
4664         succeeds.
4665
4666 2008-12-16  Bruno Haible  <bruno@clisp.org>
4667
4668         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
4669         expressions.
4670
4671 2008-12-15  Bruno Haible  <bruno@clisp.org>
4672
4673         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
4674         * doc/glibc-functions/flistxattr.texi: Likewise.
4675         * doc/glibc-functions/fopencookie.texi: Likewise.
4676         * doc/glibc-functions/fremovexattr.texi: Likewise.
4677         * doc/glibc-functions/fsetxattr.texi: Likewise.
4678         * doc/glibc-functions/getxattr.texi: Likewise.
4679         * doc/glibc-functions/lgetxattr.texi: Likewise.
4680         * doc/glibc-functions/listxattr.texi: Likewise.
4681         * doc/glibc-functions/llistxattr.texi: Likewise.
4682         * doc/glibc-functions/lremovexattr.texi: Likewise.
4683         * doc/glibc-functions/lsetxattr.texi: Likewise.
4684         * doc/glibc-functions/removexattr.texi: Likewise.
4685         * doc/glibc-functions/setxattr.texi: Likewise.
4686         * doc/posix-functions/open_memstream.texi: Likewise.
4687
4688 2008-12-15  Eric Blake  <ebb9@byu.net>
4689
4690         Update doc for cygwin 1.7.
4691         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
4692         functions.
4693         * doc/posix-functions/fchmodat.texi: Likewise.
4694         * doc/posix-functions/fchownat.texi: Likewise.
4695         * doc/posix-functions/fdopendir.texi: Likewise.
4696         * doc/posix-functions/fmemopen.texi: Likewise.
4697         * doc/posix-functions/freeaddrinfo.texi: Likewise.
4698         * doc/posix-functions/fstatat.texi: Likewise.
4699         * doc/posix-functions/futimens.texi: Likewise.
4700         * doc/posix-functions/gai_strerror.texi: Likewise.
4701         * doc/posix-functions/getaddrinfo.texi: Likewise.
4702         * doc/posix-functions/getnameinfo.texi: Likewise.
4703         * doc/posix-functions/if_freenameindex.texi: Likewise.
4704         * doc/posix-functions/if_indextoname.texi: Likewise.
4705         * doc/posix-functions/if_nameindex.texi: Likewise.
4706         * doc/posix-functions/if_nametoindex.texi: Likewise.
4707         * doc/posix-functions/insque.texi: Likewise.
4708         * doc/posix-functions/linkat.texi: Likewise.
4709         * doc/posix-functions/llrint.texi: Likewise.
4710         * doc/posix-functions/llrintf.texi: Likewise.
4711         * doc/posix-functions/llrintl.texi: Likewise.
4712         * doc/posix-functions/lockf.texi: Likewise.
4713         * doc/posix-functions/lrintl.texi: Likewise.
4714         * doc/posix-functions/mkdirat.texi: Likewise.
4715         * doc/posix-functions/mkfifoat.texi: Likewise.
4716         * doc/posix-functions/mknodat.texi: Likewise.
4717         * doc/posix-functions/mq_close.texi: Likewise.
4718         * doc/posix-functions/mq_getattr.texi: Likewise.
4719         * doc/posix-functions/mq_notify.texi: Likewise.
4720         * doc/posix-functions/mq_open.texi: Likewise.
4721         * doc/posix-functions/mq_receive.texi: Likewise.
4722         * doc/posix-functions/mq_send.texi: Likewise.
4723         * doc/posix-functions/mq_setattr.texi: Likewise.
4724         * doc/posix-functions/mq_timedreceive.texi: Likewise.
4725         * doc/posix-functions/mq_timedsend.texi: Likewise.
4726         * doc/posix-functions/mq_unlink.texi: Likewise.
4727         * doc/posix-functions/open_memstream.texi: Likewise.
4728         * doc/posix-functions/openat.texi: Likewise.
4729         * doc/posix-functions/posix_fadvise.texi: Likewise.
4730         * doc/posix-functions/posix_fallocate.texi: Likewise.
4731         * doc/posix-functions/posix_madvise.texi: Likewise.
4732         * doc/posix-functions/posix_memalign.texi: Likewise.
4733         * doc/posix-functions/posix_openpt.texi: Likewise.
4734         * doc/posix-functions/readlinkat.texi: Likewise.
4735         * doc/posix-functions/remque.texi: Likewise.
4736         * doc/posix-functions/renameat.texi: Likewise.
4737         * doc/posix-functions/rintl.texi: Likewise.
4738         * doc/posix-functions/sem_unlink.texi: Likewise.
4739         * doc/posix-functions/shm_open.texi: Likewise.
4740         * doc/posix-functions/shm_unlink.texi: Likewise.
4741         * doc/posix-functions/signgam.texi: Likewise.
4742         * doc/posix-functions/sigset.texi: Likewise.
4743         * doc/posix-functions/stpcpy.texi: Likewise.
4744         * doc/posix-functions/stpncpy.texi: Likewise.
4745         * doc/posix-functions/strerror.texi: Likewise.
4746         * doc/posix-functions/strtod.texi: Likewise.
4747         * doc/posix-functions/symlinkat.texi: Likewise.
4748         * doc/posix-functions/unlinkat.texi: Likewise.
4749         * doc/posix-functions/utimensat.texi: Likewise.
4750         * doc/glibc-functions/bindresvport.texi: Likewise.
4751         * doc/glibc-functions/dn_expand.texi: Likewise.
4752         * doc/glibc-functions/exp10.texi: Likewise.
4753         * doc/glibc-functions/exp10f.texi: Likewise.
4754         * doc/glibc-functions/fgetxattr.texi: Likewise.
4755         * doc/glibc-functions/flistxattr.texi: Likewise.
4756         * doc/glibc-functions/fopencookie.texi: Likewise.
4757         * doc/glibc-functions/freeifaddrs.texi: Likewise.
4758         * doc/glibc-functions/fremovexattr.texi: Likewise.
4759         * doc/glibc-functions/fsetxattr.texi: Likewise.
4760         * doc/glibc-functions/getifaddrs.texi: Likewise.
4761         * doc/glibc-functions/getxattr.texi: Likewise.
4762         * doc/glibc-functions/lgetxattr.texi: Likewise.
4763         * doc/glibc-functions/listxattr.texi: Likewise.
4764         * doc/glibc-functions/llistxattr.texi: Likewise.
4765         * doc/glibc-functions/lremovexattr.texi: Likewise.
4766         * doc/glibc-functions/lsetxattr.texi: Likewise.
4767         * doc/glibc-functions/pow10.texi: Likewise.
4768         * doc/glibc-functions/pow10f.texi: Likewise.
4769         * doc/glibc-functions/rcmd_af.texi: Likewise.
4770         * doc/glibc-functions/removexattr.texi: Likewise.
4771         * doc/glibc-functions/res_init.texi: Likewise.
4772         * doc/glibc-functions/res_mkquery.texi: Likewise.
4773         * doc/glibc-functions/res_query.texi: Likewise.
4774         * doc/glibc-functions/res_querydomain.texi: Likewise.
4775         * doc/glibc-functions/res_send.texi: Likewise.
4776         * doc/glibc-functions/rresvport_af.texi: Likewise.
4777         * doc/glibc-functions/setxattr.texi: Likewise.
4778         * doc/glibc-functions/strcasestr.texi: Likewise.
4779
4780 2008-12-15  Bruno Haible  <bruno@clisp.org>
4781
4782         Fix compilation error on OSF/1 4.0.
4783         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
4784         <sys/time.h>, simply delegate to the system header.
4785         Reported by Daniel Richard G. <oss@teragram.com>.
4786
4787 2008-12-15  Bruno Haible  <bruno@clisp.org>
4788
4789         * doc/posix-functions/openat.texi: Mention the 'openat' module.
4790         * doc/posix-functions/fchmodat.texi: Likewise.
4791         * doc/posix-functions/fchownat.texi: Likewise.
4792         * doc/posix-functions/fdopendir.texi: Likewise.
4793         * doc/posix-functions/fstatat.texi: Likewise.
4794         * doc/posix-functions/mkdirat.texi: Likewise.
4795         * doc/posix-functions/unlinkat.texi: Likewise.
4796
4797 2008-12-14  Bruno Haible  <bruno@clisp.org>
4798
4799         Update doc for POSIX:2008.
4800         * doc/posix-functions/faccessat.texi: New file.
4801         * doc/posix-functions/fchmodat.texi: New file.
4802         * doc/posix-functions/fchownat.texi: New file.
4803         * doc/posix-functions/fdopendir.texi: New file.
4804         * doc/posix-functions/fstatat.texi: New file.
4805         * doc/posix-functions/futimens.texi: New file.
4806         * doc/posix-functions/linkat.texi: New file.
4807         * doc/posix-functions/mkdirat.texi: New file.
4808         * doc/posix-functions/mkfifoat.texi: New file.
4809         * doc/posix-functions/mknodat.texi: New file.
4810         * doc/posix-functions/open_wmemstream.texi: New file.
4811         * doc/posix-functions/openat.texi: New file.
4812         * doc/posix-functions/psiginfo.texi: New file.
4813         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
4814         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
4815         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
4816         * doc/posix-functions/readlinkat.texi: New file.
4817         * doc/posix-functions/renameat.texi: New file.
4818         * doc/posix-functions/strerror_l.texi: New file.
4819         * doc/posix-functions/symlinkat.texi: New file.
4820         * doc/posix-functions/unlinkat.texi: New file.
4821         * doc/posix-functions/utimensat.texi: New file.
4822         * doc/gnulib.texi (Function Substitutes): Add these subsections.
4823
4824 2008-12-14  Bruno Haible  <bruno@clisp.org>
4825
4826         Update doc for POSIX:2008.
4827         * doc/posix-functions/alphasort.texi: Renamed from
4828         doc/glibc-functions/alphasort.texi.
4829         * doc/posix-functions/dirfd.texi: Renamed from
4830         doc/glibc-functions/dirfd.texi.
4831         * doc/posix-functions/dprintf.texi: Renamed from
4832         doc/glibc-functions/dprintf.texi.
4833         * doc/posix-functions/duplocale.texi: Renamed from
4834         doc/glibc-functions/duplocale.texi.
4835         * doc/posix-functions/fexecve.texi: Renamed from
4836         doc/glibc-functions/fexecve.texi.
4837         * doc/posix-functions/fmemopen.texi: Renamed from
4838         doc/glibc-functions/fmemopen.texi.
4839         * doc/posix-functions/freelocale.texi: Renamed from
4840         doc/glibc-functions/freelocale.texi.
4841         * doc/posix-functions/getdate_err.texi: Renamed from
4842         doc/glibc-functions/getdate_err.texi.
4843         * doc/posix-functions/isalnum_l.texi: Renamed from
4844         doc/glibc-functions/isalnum_l.texi.
4845         * doc/posix-functions/isalpha_l.texi: Renamed from
4846         doc/glibc-functions/isalpha_l.texi.
4847         * doc/posix-functions/isblank_l.texi: Renamed from
4848         doc/glibc-functions/isblank_l.texi.
4849         * doc/posix-functions/iscntrl_l.texi: Renamed from
4850         doc/glibc-functions/iscntrl_l.texi.
4851         * doc/posix-functions/isdigit_l.texi: Renamed from
4852         doc/glibc-functions/isdigit_l.texi.
4853         * doc/posix-functions/isgraph_l.texi: Renamed from
4854         doc/glibc-functions/isgraph_l.texi.
4855         * doc/posix-functions/islower_l.texi: Renamed from
4856         doc/glibc-functions/islower_l.texi.
4857         * doc/posix-functions/isprint_l.texi: Renamed from
4858         doc/glibc-functions/isprint_l.texi.
4859         * doc/posix-functions/ispunct_l.texi: Renamed from
4860         doc/glibc-functions/ispunct_l.texi.
4861         * doc/posix-functions/isspace_l.texi: Renamed from
4862         doc/glibc-functions/isspace_l.texi.
4863         * doc/posix-functions/isupper_l.texi: Renamed from
4864         doc/glibc-functions/isupper_l.texi.
4865         * doc/posix-functions/iswalnum_l.texi: Renamed from
4866         doc/glibc-functions/iswalnum_l.texi.
4867         * doc/posix-functions/iswalpha_l.texi: Renamed from
4868         doc/glibc-functions/iswalpha_l.texi.
4869         * doc/posix-functions/iswblank_l.texi: Renamed from
4870         doc/glibc-functions/iswblank_l.texi.
4871         * doc/posix-functions/iswcntrl_l.texi: Renamed from
4872         doc/glibc-functions/iswcntrl_l.texi.
4873         * doc/posix-functions/iswctype_l.texi: Renamed from
4874         doc/glibc-functions/iswctype_l.texi.
4875         * doc/posix-functions/iswdigit_l.texi: Renamed from
4876         doc/glibc-functions/iswdigit_l.texi.
4877         * doc/posix-functions/iswgraph_l.texi: Renamed from
4878         doc/glibc-functions/iswgraph_l.texi.
4879         * doc/posix-functions/iswlower_l.texi: Renamed from
4880         doc/glibc-functions/iswlower_l.texi.
4881         * doc/posix-functions/iswprint_l.texi: Renamed from
4882         doc/glibc-functions/iswprint_l.texi.
4883         * doc/posix-functions/iswpunct_l.texi: Renamed from
4884         doc/glibc-functions/iswpunct_l.texi.
4885         * doc/posix-functions/iswspace_l.texi: Renamed from
4886         doc/glibc-functions/iswspace_l.texi.
4887         * doc/posix-functions/iswupper_l.texi: Renamed from
4888         doc/glibc-functions/iswupper_l.texi.
4889         * doc/posix-functions/iswxdigit_l.texi: Renamed from
4890         doc/glibc-functions/iswxdigit_l.texi.
4891         * doc/posix-functions/isxdigit_l.texi: Renamed from
4892         doc/glibc-functions/isxdigit_l.texi.
4893         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
4894         doc/glibc-functions/mbsnrtowcs.texi.
4895         * doc/posix-functions/mkdtemp.texi: Renamed from
4896         doc/glibc-functions/mkdtemp.texi.
4897         * doc/posix-functions/newlocale.texi: Renamed from
4898         doc/glibc-functions/newlocale.texi.
4899         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
4900         doc/glibc-functions/nl_langinfo_l.texi.
4901         * doc/posix-functions/open_memstream.texi: Renamed from
4902         doc/glibc-functions/open_memstream.texi.
4903         * doc/posix-functions/opterr.texi: Renamed from
4904         doc/glibc-functions/opterr.texi.
4905         * doc/posix-functions/optind.texi: Renamed from
4906         doc/glibc-functions/optind.texi.
4907         * doc/posix-functions/optopt.texi: Renamed from
4908         doc/glibc-functions/optopt.texi.
4909         * doc/posix-functions/psignal.texi: Renamed from
4910         doc/glibc-functions/psignal.texi.
4911         * doc/posix-functions/scandir.texi: Renamed from
4912         doc/glibc-functions/scandir.texi.
4913         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
4914         doc/glibc-functions/sched_get_priority_min.texi.
4915         * doc/posix-functions/signgam.texi: Renamed from
4916         doc/glibc-functions/signgam.texi.
4917         * doc/posix-functions/stpcpy.texi: Renamed from
4918         doc/glibc-functions/stpcpy.texi.
4919         * doc/posix-functions/stpncpy.texi: Renamed from
4920         doc/glibc-functions/stpncpy.texi.
4921         * doc/posix-functions/strcasecmp_l.texi: Renamed from
4922         doc/glibc-functions/strcasecmp_l.texi.
4923         * doc/posix-functions/strcoll_l.texi: Renamed from
4924         doc/glibc-functions/strcoll_l.texi.
4925         * doc/posix-functions/strfmon_l.texi: Renamed from
4926         doc/glibc-functions/strfmon_l.texi.
4927         * doc/posix-functions/strftime_l.texi: Renamed from
4928         doc/glibc-functions/strftime_l.texi.
4929         * doc/posix-functions/strncasecmp_l.texi: Renamed from
4930         doc/glibc-functions/strncasecmp_l.texi.
4931         * doc/posix-functions/strndup.texi: Renamed from
4932         doc/glibc-functions/strndup.texi.
4933         * doc/posix-functions/strnlen.texi: Renamed from
4934         doc/glibc-functions/strnlen.texi.
4935         * doc/posix-functions/strsignal.texi: Renamed from
4936         doc/glibc-functions/strsignal.texi.
4937         * doc/posix-functions/strxfrm_l.texi: Renamed from
4938         doc/glibc-functions/strxfrm_l.texi.
4939         * doc/posix-functions/timer_gettime.texi: Renamed from
4940         doc/glibc-functions/timer_gettime.texi.
4941         * doc/posix-functions/tolower_l.texi: Renamed from
4942         doc/glibc-functions/tolower_l.texi.
4943         * doc/posix-functions/toupper_l.texi: Renamed from
4944         doc/glibc-functions/toupper_l.texi.
4945         * doc/posix-functions/towctrans_l.texi: Renamed from
4946         doc/glibc-functions/towctrans_l.texi.
4947         * doc/posix-functions/towlower_l.texi: Renamed from
4948         doc/glibc-functions/towlower_l.texi.
4949         * doc/posix-functions/towupper_l.texi: Renamed from
4950         doc/glibc-functions/towupper_l.texi.
4951         * doc/posix-functions/uselocale.texi: Renamed from
4952         doc/glibc-functions/uselocale.texi.
4953         * doc/posix-functions/vdprintf.texi: Renamed from
4954         doc/glibc-functions/vdprintf.texi.
4955         * doc/posix-functions/wcpcpy.texi:
4956         Renamed from doc/glibc-functions/wcpcpy.texi.
4957         * doc/posix-functions/wcpncpy.texi: Renamed from
4958         doc/glibc-functions/wcpncpy.texi.
4959         * doc/posix-functions/wcscasecmp.texi: Renamed from
4960         doc/glibc-functions/wcscasecmp.texi.
4961         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
4962         doc/glibc-functions/wcscasecmp_l.texi.
4963         * doc/posix-functions/wcscoll_l.texi: Renamed from
4964         doc/glibc-functions/wcscoll_l.texi.
4965         * doc/posix-functions/wcsdup.texi: Renamed from
4966         doc/glibc-functions/wcsdup.texi.
4967         * doc/posix-functions/wcsncasecmp.texi: Renamed from
4968         doc/glibc-functions/wcsncasecmp.texi.
4969         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
4970         doc/glibc-functions/wcsncasecmp_l.texi.
4971         * doc/posix-functions/wcsnlen.texi: Renamed from
4972         doc/glibc-functions/wcsnlen.texi.
4973         * doc/posix-functions/wcsnrtombs.texi: Renamed from
4974         doc/glibc-functions/wcsnrtombs.texi.
4975         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
4976         doc/glibc-functions/wcsxfrm_l.texi.
4977         * doc/posix-functions/wctrans_l.texi: Renamed from
4978         doc/glibc-functions/wctrans_l.texi.
4979         * doc/posix-functions/wctype_l.texi: Renamed from
4980         doc/glibc-functions/wctype_l.texi.
4981         * doc/gnulib.texi (Function Substitutes): Add these subsections.
4982         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
4983         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
4984         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
4985         these subsections.
4986         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
4987         Remove sections.
4988
4989 2008-12-14  Bruno Haible  <bruno@clisp.org>
4990
4991         Update doc for POSIX:2008.
4992         * doc/posix-functions/*.texi: Update URL of POSIX specification.
4993
4994 2008-12-14  Bruno Haible  <bruno@clisp.org>
4995
4996         Update doc for POSIX:2008.
4997         * doc/pastposix-functions/bcmp.texi: Renamed from
4998         doc/posix-functions/bcmp.texi.
4999         * doc/pastposix-functions/bcopy.texi: Renamed from
5000         doc/posix-functions/bcopy.texi.
5001         * doc/pastposix-functions/bsd_signal.texi: Renamed from
5002         doc/posix-functions/bsd_signal.texi.
5003         * doc/pastposix-functions/bzero.texi: Renamed from
5004         doc/posix-functions/bzero.texi.
5005         * doc/pastposix-functions/ecvt.texi: Renamed from
5006         doc/posix-functions/ecvt.texi.
5007         * doc/pastposix-functions/fcvt.texi: Renamed from
5008         doc/posix-functions/fcvt.texi.
5009         * doc/pastposix-functions/ftime.texi: Renamed from
5010         doc/posix-functions/ftime.texi.
5011         * doc/pastposix-functions/gcvt.texi: Renamed from
5012         doc/posix-functions/gcvt.texi.
5013         * doc/pastposix-functions/getcontext.texi: Renamed from
5014         doc/posix-functions/getcontext.texi.
5015         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
5016         doc/posix-functions/gethostbyaddr.texi.
5017         * doc/pastposix-functions/gethostbyname.texi: Renamed from
5018         doc/posix-functions/gethostbyname.texi.
5019         * doc/pastposix-functions/getwd.texi: Renamed from
5020         doc/posix-functions/getwd.texi.
5021         * doc/pastposix-functions/h_errno.texi: Renamed from
5022         doc/posix-functions/h_errno.texi.
5023         * doc/pastposix-functions/index.texi: Renamed from
5024         doc/posix-functions/index.texi.
5025         * doc/pastposix-functions/makecontext.texi: Renamed from
5026         doc/posix-functions/makecontext.texi.
5027         * doc/pastposix-functions/mktemp.texi: Renamed from
5028         doc/posix-functions/mktemp.texi.
5029         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
5030         doc/posix-functions/pthread_attr_getstackaddr.texi.
5031         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
5032         doc/posix-functions/pthread_attr_setstackaddr.texi.
5033         * doc/pastposix-functions/rindex.texi: Renamed from
5034         doc/posix-functions/rindex.texi.
5035         * doc/pastposix-functions/scalb.texi: Renamed from
5036         doc/posix-functions/scalb.texi.
5037         * doc/pastposix-functions/setcontext.texi: Renamed from
5038         doc/posix-functions/setcontext.texi.
5039         * doc/pastposix-functions/swapcontext.texi: Renamed from
5040         doc/posix-functions/swapcontext.texi.
5041         * doc/pastposix-functions/ualarm.texi: Renamed from
5042         doc/posix-functions/ualarm.texi.
5043         * doc/pastposix-functions/usleep.texi: Renamed from
5044         doc/posix-functions/usleep.texi.
5045         * doc/pastposix-functions/vfork.texi: Renamed from
5046         doc/posix-functions/vfork.texi.
5047         * doc/pastposix-functions/wcswcs.texi: Renamed from
5048         doc/posix-functions/wcswcs.texi.
5049         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
5050         (Function Substitutes): Update.
5051
5052 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5053
5054         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
5055         m4/strerror.m4.
5056
5057 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5058             Bruno Haible  <bruno@clisp.org>
5059
5060         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
5061
5062 2008-12-13  Bruno Haible  <bruno@clisp.org>
5063
5064         * modules/strtoull (Depends-on): Remove unistd.
5065
5066 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5067
5068         * modules/strtoull (Depends-on): Add stdlib.
5069
5070 2008-12-11  Simon Josefsson  <simon@josefsson.org>
5071
5072         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
5073
5074 2008-12-10  Jim Meyering  <meyering@redhat.com>
5075
5076         gl_ASSERT: don't say assertions are disabled when they're not
5077         * m4/assert.m4 (gl_ASSERT): Do not make configure report
5078         "checking whether to enable assertions... no", when they are in
5079         fact enabled.  This is solely a bug in the output of configure.
5080         In spite of saying "no", NDEBUG was not defined in that case.
5081         Also, as noted by Eric Blake, leave assertions enabled upon
5082         --enable-assert=INVALID.
5083
5084 2008-12-10  Bruno Haible  <bruno@clisp.org>
5085
5086         Change MODULES.html to refer to POSIX:2008 where possible.
5087         * MODULES.html.sh (POSIX2008_URL): New variable.
5088         (posix_headers): Remove sys/timeb, ucontext.
5089         (posix2001_headers): New variable.
5090         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
5091         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
5092         index, makecontext, mktemp, pthread_attr_getstackaddr,
5093         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
5094         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
5095         (posix2001_functions): New variable.
5096         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
5097         otherwise.
5098
5099 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5100
5101         add missing include to parse-duration.c
5102         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
5103         * modules/parse-duration (Depends-on): Add xalloc.
5104
5105         fix sed script reading maint.mk
5106         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
5107         (syntax-check-rules): Use it.
5108
5109 2008-12-09  Bruno Haible  <bruno@clisp.org>
5110
5111         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
5112         MacOS X 10.4/PowerPC.
5113         Reported by Simon Josefsson.
5114
5115 2008-12-08  Jim Meyering  <meyering@redhat.com>
5116
5117         work around mingw's lack of some S_IF definitions
5118         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
5119         Reported by Simon Josefsson.
5120
5121 2008-12-08  Bruno Haible  <bruno@clisp.org>
5122
5123         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
5124         applied to variables. Needed on MacOS X 10.4/PowerPC.
5125         Reported by Simon Josefsson.
5126
5127 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
5128         and Eric Blake  <ebb9@byu.net>
5129
5130         assert: honor --enable-assert
5131         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
5132         order to honor --enable-assert, rather than treating it as a
5133         synonym for --disable-assert.
5134
5135 2008-12-08  Jim Meyering  <meyering@redhat.com>
5136
5137         * lib/posixtm.c: Remove now-useless declaration of mktime.
5138
5139         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
5140
5141 2008-12-07  Bruno Haible  <bruno@clisp.org>
5142
5143         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
5144         test_once): Mark functions as static.
5145         * tests/test-tls.c (test_tls): Likewise.
5146
5147 2008-12-07  Bruno Haible  <bruno@clisp.org>
5148
5149         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
5150         iconv_register_autodetect.
5151
5152 2008-12-07  Jim Meyering  <meyering@redhat.com>
5153
5154         posixtm.c: avoid a warning
5155         * lib/posixtm.c (posixtime): Don't initialize tm0.
5156         It's no longer needed to placate gcc4's -Wuninitialized,
5157         and the attempt to placate would elicit a new warning.
5158
5159         unicodeio.c: mark unused parameters
5160         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
5161         (fallback_failure_callback): Likewise.
5162
5163 2008-12-07  Bruno Haible  <bruno@clisp.org>
5164
5165         * gnulib-tool (func_create_testdir): When building the tests
5166         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
5167         Reported by Simon Josefsson.
5168
5169 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5170
5171         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
5172
5173 2008-12-06  Bruno Haible  <bruno@clisp.org>
5174
5175         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
5176         Suggested by Eric Blake.
5177
5178 2008-12-06  Bruno Haible  <bruno@clisp.org>
5179
5180         Fix a c-stack test failure on MacOS X.
5181         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
5182         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
5183         handler for SIGBUS as well.
5184         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
5185         install a signal handler for SIGBUS as well.
5186         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
5187
5188 2008-12-06  Bruno Haible  <bruno@clisp.org>
5189
5190         Advocacy documentation.
5191         * doc/gnulib-intro.texi (Benefits): New section.
5192         * doc/gnulib.texi: Update.
5193
5194 2008-12-06  Bruno Haible  <bruno@clisp.org>
5195
5196         Document the 'manywarnings' module.
5197         * doc/manywarnings.texi: New file.
5198         * doc/gnulib.texi: Include it.
5199
5200 2008-12-05  Eric Blake  <ebb9@byu.net>
5201
5202         tests: silence some gcc warnings
5203         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
5204         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
5205         type mismatches.
5206
5207 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5208             Bruno Haible  <bruno@clisp.org>
5209
5210         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
5211
5212 2008-11-29  Jim Meyering  <meyering@redhat.com>
5213
5214         unicodeio.c: mark unused parameters
5215         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
5216         (fallback_failure_callback): Likewise.
5217
5218         fts: fix a thinko
5219         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
5220         (set_stat_type): Return S_IF*-valued "type" directly.
5221         Prompted by James Youngman's spotting a related bug.
5222         Confirmed by further testing through find.
5223
5224         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
5225         * lib/fts.c (D_TYPE): Define.
5226         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
5227         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
5228         (s_ifmt_shift_bits): New function.
5229         (set_stat_type): New function.
5230         (fts_build): When not calling fts_stat, call set_stat_type
5231         to propagate dirent.d_type info to fts_read caller.
5232         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
5233         fts_statp->st_mode type information may be valid.
5234
5235 2008-11-28  Simon Josefsson  <simon@josefsson.org>
5236
5237         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
5238         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
5239         <sds@gnu.org>.
5240
5241 2008-11-20  Bruno Haible  <bruno@clisp.org>
5242
5243         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
5244         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
5245         INCLUDE_NEXT.
5246         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
5247         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
5248         * modules/math (Makefile.am): Substitute
5249         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
5250         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
5251
5252 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
5253             Bruno Haible  <bruno@clisp.org>
5254
5255         * lib/stdint.in.h: Define all type macros so that their expansion is
5256         a single typedef'ed token. Fixes a compilation failure in Boost which
5257         does "using ::int8_t;".
5258
5259 2008-11-18  Simon Josefsson  <simon@josefsson.org>
5260
5261         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
5262         gl_MANYWARN_ALL_GCC.
5263         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
5264         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
5265         * modules/manywarnings: New file.
5266         * MODULES.html.sh: Mention manywarnings module.
5267
5268 2008-11-18  Bruno Haible  <bruno@clisp.org>
5269
5270         * doc/gnulib-tool.texi (Unit tests): New section.
5271
5272 2008-11-18  Simon Josefsson  <simon@josefsson.org>
5273
5274         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
5275         paths like 'lib/po/foo.po'.
5276
5277 2008-11-17  Simon Josefsson  <simon@josefsson.org>
5278
5279         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
5280         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
5281
5282 2008-11-17  Simon Josefsson  <simon@josefsson.org>
5283
5284         * m4/warnings.m4: Use CPPFLAGS to really check whether the
5285         parameter works.
5286
5287 2008-11-17  Simon Josefsson  <simon@josefsson.org>
5288
5289         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
5290
5291 2008-11-17  Bruce Korb  <bkorb@gnu.org>
5292
5293         * modules/parse-duration-tests: New file.
5294         * tests/test-parse-duration.sh: New file.
5295         * tests/test-parse-duration.c: New file.
5296
5297         New module 'parse-duration'.
5298         * lib/parse-duration.h: New file.
5299         * lib/parse-duration.c: New file.
5300         * modules/parse-duration: New file.
5301
5302 2008-11-17  Bruno Haible  <bruno@clisp.org>
5303
5304         * tests/test-select-out.sh: Comment out the first pipe test.
5305         Reported by Simon Josefsson.
5306
5307 2008-11-17  Bruno Haible  <bruno@clisp.org>
5308
5309         * modules/getaddrinfo (Depends-on): Add servent, hostent.
5310         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
5311         gl_HOSTENT.
5312
5313 2008-11-17  Bruno Haible  <bruno@clisp.org>
5314
5315         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
5316         -lnetwork and -lnet. Needed for Haiku and BeOS.
5317
5318 2008-11-16  Bruno Haible  <bruno@clisp.org>
5319
5320         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
5321
5322 2008-11-16  Bruno Haible  <bruno@clisp.org>
5323
5324         Avoid test failure on Haiku.
5325         * tests/test-fsync.c: Include <errno.h>.
5326         (main): Don't require that fsync (0) fails.
5327
5328 2008-11-15  Bruno Haible  <bruno@clisp.org>
5329
5330         New module 'hostent'.
5331         * modules/hostent: New file.
5332         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
5333
5334 2008-11-15  Bruno Haible  <bruno@clisp.org>
5335
5336         New module 'servent'.
5337         * modules/servent: New file.
5338         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
5339
5340 2008-11-15  Bruno Haible  <bruno@clisp.org>
5341
5342         Avoid generating same test program with two different rules.
5343         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
5344         test-frexp to test-frexp-nolibm.
5345         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
5346         test-frexpl to test-frexpl-nolibm.
5347
5348 2008-11-15  Bruno Haible  <bruno@clisp.org>
5349
5350         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
5351         $(FREXPL_LIBM).
5352
5353 2008-11-15  Bruno Haible  <bruno@clisp.org>
5354
5355         * lib/netdb.in.h: Activate the definitions also when the system's
5356         <netdb.h> has 'struct addrinfo'.
5357         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
5358         EAI_OVERFLOW or AI_NUMERICSERV.
5359         * doc/posix-headers/netdb.texi: Document the problem.
5360
5361 2008-11-15  Bruno Haible  <bruno@clisp.org>
5362
5363         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
5364
5365         Make the 'sched' module work on platforms where <sched.h> exists but
5366         is incomplete (such as Haiku).
5367         * lib/sched.in.h; Include the system's <sched.h> if it exists.
5368         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
5369         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
5370         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
5371         HAVE_STRUCT_SCHED_PARAM.
5372         * modules/sched (Depends-on): Add include_next.
5373         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
5374         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
5375         * doc/posix-headers/sched.texi: Document the issue.
5376
5377 2008-11-13  Jim Meyering  <meyering@redhat.com>
5378
5379         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
5380         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
5381         test would fail due to the difference in the Report bugs to ...
5382         line.  The expected address is empty, "<>", while the actual
5383         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
5384
5385 2008-11-12  Bruno Haible  <bruno@clisp.org>
5386
5387         lstat: don't compile lstat.c on systems lacking lstat
5388         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
5389         which don't have lstat; this is handled by lib/sys_stat.in.h already.
5390         Reported by Daniel P. Berrange via Jim Meyering.
5391
5392 2008-11-12  Jim Meyering  <meyering@redhat.com>
5393
5394         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
5395
5396 2008-11-12  Simon Josefsson  <simon@josefsson.org>
5397
5398         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
5399         instead.
5400
5401 2008-11-12  Bruno Haible  <bruno@clisp.org>
5402
5403         * lib/unicodeio.c: Include unistr.h.
5404         (utf8_wctomb): Remove function.
5405         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
5406
5407 2008-11-12  Simon Josefsson  <simon@josefsson.org>
5408
5409         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
5410         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
5411         <bruno@clisp.org>.
5412         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
5413
5414 2008-11-12  Simon Josefsson  <simon@josefsson.org>
5415
5416         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
5417         * doc/gnulib.texi: Add section for warnings.
5418
5419 2008-11-11  Bruno Haible  <bruno@clisp.org>
5420
5421         * lib/sockets.h: Add a comment.
5422
5423 2008-11-11  Karl Berry  <karl@gnu.org>
5424
5425         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
5426
5427 2008-11-11  Eric Blake  <ebb9@byu.net>
5428
5429         fdl.texi: avoid git symlinks
5430         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
5431
5432 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
5433
5434         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
5435
5436 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
5437
5438         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
5439         (gl_WARN_ADD): Substitute $2 if literal.
5440
5441 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
5442
5443         * m4/warning.m4: Remove.
5444
5445 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
5446
5447         * m4/warnings.m4: Almost complete rewrite. :-)
5448
5449 2008-11-10  Simon Josefsson  <simon@josefsson.org>
5450
5451         * modules/warnings: New module.
5452         * m4/warnings.m4: New file.
5453         * MODULES.html.sh: Mention warnings module.
5454         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
5455         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5456
5457 2008-11-10  Eric Blake  <ebb9@byu.net>
5458
5459         fdl.texi: make a symlink to the latest version
5460         * doc/standards.texi: Revert today's earlier change.
5461         * doc/fdl-1.2.texi: Rename from old fdl.texi...
5462         * doc/fdl.texi: ...and replace this with a symlink to the newer
5463         fdl-1.3.texi.
5464
5465 2008-11-10  Bruno Haible  <bruno@clisp.org>
5466
5467         * tests/test-select-fd.c (main): Accept the result file name as fourth
5468         argument.
5469         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
5470         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
5471
5472 2008-11-10  Bruno Haible  <bruno@clisp.org>
5473
5474         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
5475         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
5476         as autoconf-substituted macros.
5477         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
5478         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
5479         gl_NETDB_H_DEFAULTS. Set these variables.
5480         * modules/netdb (Makefile.am): Substitute these variables.
5481
5482 2008-11-10  Eric Blake  <ebb9@byu.net>
5483
5484         standards.texi: include correct file for FDL 1.3
5485         * doc/standards.texi (GNU Free Documentation License): Change
5486         include file to pull in FDL 1.3, not 1.2.
5487
5488         fdl.texi: revert accidental change to license
5489         * doc/fdl.texi: This is FDL 1.2, not 1.3.
5490
5491 2008-11-10  Bruno Haible  <bruno@clisp.org>
5492
5493         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
5494         cross-compiling guesses also when the native compile gives no result.
5495
5496 2008-11-10  Bruno Haible  <bruno@clisp.org>
5497
5498         * lib/spawni.c (__spawni): Force variable into the stack.
5499
5500 2008-11-10  Bruno Haible  <bruno@clisp.org>
5501
5502         Add support for Haiku.
5503         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
5504         glibc and BeOS, but also on Haiku.
5505         * lib/fpurge.c (fpurge): Likewise.
5506         * lib/freadable.c (freadable): Likewise.
5507         * lib/freadahead.c (freadahead): Likewise.
5508         * lib/freading.c (freading): Likewise.
5509         * lib/freadptr.c (freadptr): Likewise.
5510         * lib/freadseek.c (freadptrinc): Likewise.
5511         * lib/fseeko.c (rpl_fseeko): Likewise.
5512         * lib/fseterr.c (fseterr): Likewise.
5513         * lib/fwritable.c (fwritable): Likewise.
5514         * lib/fwriting.c (fwriting): Likewise.
5515         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
5516
5517 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
5518
5519         * lib/config.charset: Treat Haiku like BeOS.
5520
5521 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
5522
5523         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
5524         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
5525
5526 2008-11-08  Bruno Haible  <bruno@clisp.org>
5527
5528         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
5529         AC_CACHE_CHECK.
5530
5531 2008-11-08  Bruno Haible  <bruno@clisp.org>
5532
5533         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
5534
5535 2008-11-08  Bruno Haible  <bruno@clisp.org>
5536
5537         * tests/test-select-fd.c: New file.
5538         * tests/test-select-in.sh: New file.
5539         * tests/test-select-out.sh: New file.
5540         * tests/test-select-stdin.c: New file.
5541         * modules/select-tests (Files): Add the new files.
5542         (Depends-on): Add gettimeofday.
5543         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
5544         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
5545         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
5546
5547 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
5548             Bruno Haible  <bruno@clisp.org>
5549
5550         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
5551
5552 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
5553
5554         * build-aux/pmccabe2html: Added support for C++ source files.
5555
5556 2008-11-05  Ben Pfaff  <blp@gnu.org>
5557
5558         Fix lib/close.c build on Windows.
5559         * modules/close (Files): Add lib/w32sock.h.
5560
5561 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
5562
5563         Accept Bison's NEWS format.
5564         * build-aux/announce-gen (print_news_deltas): Tweak
5565         $re_prefix.
5566
5567 2008-11-04  Bruno Haible  <bruno@clisp.org>
5568
5569         * modules/random_r (Maintainer): Add glibc.
5570
5571 2008-11-04  Simon Josefsson  <simon@josefsson.org>
5572
5573         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
5574         by karl@freefriends.org (Karl Berry).
5575         * doc/alloca.texi: Likewise.
5576         * doc/c-ctype.texi: Likewise.
5577         * doc/c-strcase.texi: Likewise.
5578         * doc/c-strcaseeq.texi: Likewise.
5579         * doc/c-strcasestr.texi: Likewise.
5580         * doc/c-strstr.texi: Likewise.
5581         * doc/c-strtod.texi: Likewise.
5582         * doc/c-strtold.texi: Likewise.
5583         * doc/ctime.texi: Likewise.
5584         * doc/error.texi: Likewise.
5585         * doc/fdl.texi: Likewise.
5586         * doc/gcd.texi: Likewise.
5587         * doc/getdate.texi: Likewise.
5588         * doc/gnulib-intro.texi: Likewise.
5589         * doc/gnulib-tool.texi: Likewise.
5590         * doc/gnulib.texi: Likewise.
5591         * doc/inet_ntoa.texi: Likewise.
5592         * doc/maintain.texi: Likewise.
5593         * doc/make-stds.texi: Likewise.
5594         * doc/quote.texi: Likewise.
5595         * doc/regexprops-generic.texi: Likewise.
5596         * doc/standards.texi: Likewise.
5597         * doc/verify.texi: Likewise.
5598         * doc/visibility.texi: Likewise.
5599         * doc/gnulib.texi (GNU Free Documentation License): Include
5600         fdl-1.3.texi instead of fdl.texi.
5601
5602 2008-11-04  Simon Josefsson  <simon@josefsson.org>
5603
5604         * doc/fdl-1.3.texi: New file, from
5605         <http://www.gnu.org/licenses/fdl-1.3.texi>.
5606         * modules/fdl-1.3: Add.
5607         * MODULES.html.sh: Add fdl-1.3.
5608
5609 2008-11-03  Bruno Haible  <bruno@clisp.org>
5610
5611         Make determination of absolute name of header file work with AIX xlc.
5612         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
5613         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
5614         preprocessing.
5615         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
5616         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
5617
5618 2008-11-03  Simon Josefsson  <simon@josefsson.org>
5619
5620         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
5621         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
5622         <ludo@gnu.org>.
5623
5624 2008-11-02  Bruno Haible  <bruno@clisp.org>
5625
5626         Mark 'strpbrk' obsolete.
5627         * modules/strpbrk (Status, Notice): New sections.
5628         * modules/strtok_r (Depends-on): Add strpbrk.
5629
5630 2008-11-02  Bruno Haible  <bruno@clisp.org>
5631
5632         Mark 'strdup' obsolete.
5633         * modules/strdup (Status, Notice): New sections.
5634         * modules/findprog (Depends-on): Add strdup.
5635         * modules/getaddrinfo (Depends-on): Likewise.
5636         * modules/localename (Depends-on): Likewise.
5637         * modules/relocatable-lib (Depends-on): Likewise.
5638         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
5639         * modules/relocatable-prog (Depends-on): Likewise.
5640         * modules/trim (Depends-on): Likewise.
5641         * modules/unictype/gen-ctype (Depends-on): Likewise.
5642         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
5643
5644 2008-11-02  Bruno Haible  <bruno@clisp.org>
5645
5646         Mark 'strcspn' obsolete.
5647         * modules/strcspn (Status, Notice): New sections.
5648
5649 2008-11-02  Bruno Haible  <bruno@clisp.org>
5650
5651         Mark 'rmdir' obsolete.
5652         * modules/rmdir (Status, Notice): New sections.
5653         * modules/clean-temp (Depends-on): Add rmdir.
5654         * modules/openat (Depends-on): Likewise.
5655
5656 2008-11-02  Bruno Haible  <bruno@clisp.org>
5657
5658         Mark 'raise' obsolete.
5659         * modules/raise (Status, Notice): New sections.
5660         (Include): Specify <signal.h>.
5661         * modules/stdio (Depends-on): Add raise.
5662         * modules/write (Depends-on): Likewise.
5663
5664 2008-11-02  Bruno Haible  <bruno@clisp.org>
5665
5666         Mark 'memset' obsolete.
5667         * modules/memset (Status, Notice): New sections.
5668
5669 2008-11-02  Bruno Haible  <bruno@clisp.org>
5670
5671         Mark 'memmove' obsolete.
5672         * modules/memmove (Status, Notice): New sections.
5673         * modules/argp (Depends-on): Add memmove.
5674         * modules/argz (Depends-on): Likewise.
5675         * modules/canonicalize (Depends-on): Likewise.
5676         * modules/canonicalize-lgpl (Depends-on): Likewise.
5677         * modules/fts (Depends-on): Likewise.
5678         * modules/getcwd (Depends-on): Likewise.
5679         * modules/human (Depends-on): Likewise.
5680         * modules/regex (Depends-on): Likewise.
5681         * modules/striconveh (Depends-on): Likewise.
5682         * modules/trim (Depends-on): Likewise.
5683         * modules/unistr/u8-move (Depends-on): Likewise.
5684         * modules/unistr/u16-move (Depends-on): Likewise.
5685         * modules/unistr/u32-move (Depends-on): Likewise.
5686
5687 2008-11-02  Bruno Haible  <bruno@clisp.org>
5688
5689         Mark 'memcpy' obsolete.
5690         * modules/memcpy (Status, Notice): New sections.
5691
5692 2008-11-02  Bruno Haible  <bruno@clisp.org>
5693
5694         Mark 'memcmp' obsolete.
5695         * modules/memcmp (Status, Notice): New sections.
5696         * modules/argmatch (Depends-on): Add memchr.
5697         * modules/backupfile (Depends-on): Likewise.
5698         * modules/c-strcasestr (Depends-on): Likewise.
5699         * modules/crypto/des (Depends-on): Likewise.
5700         * modules/csharpcomp (Depends-on): Likewise.
5701         * modules/fnmatch (Depends-on): Likewise.
5702         * modules/git-merge-changelog (Depends-on): Likewise.
5703         * modules/isnand (Depends-on): Likewise.
5704         * modules/isnand-nolibm (Depends-on): Likewise.
5705         * modules/isnanf (Depends-on): Likewise.
5706         * modules/isnanf-nolibm (Depends-on): Likewise.
5707         * modules/isnanl (Depends-on): Likewise.
5708         * modules/isnanl-nolibm (Depends-on): Likewise.
5709         * modules/mbchar (Depends-on): Likewise.
5710         * modules/memcoll (Depends-on): Likewise.
5711         * modules/quotearg (Depends-on): Likewise.
5712         * modules/regex (Depends-on): Likewise.
5713         * modules/relocatable-prog (Depends-on): Likewise.
5714         * modules/same (Depends-on): Likewise.
5715         * modules/signbit (Depends-on): Likewise.
5716         * modules/strcasestr-simple (Depends-on): Likewise.
5717         * modules/unictype/gen-ctype (Depends-on): Likewise.
5718         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
5719         * modules/uniname/uniname (Depends-on): Likewise.
5720         * modules/unistr/u8-cmp (Depends-on): Likewise.
5721
5722 2008-11-02  Bruno Haible  <bruno@clisp.org>
5723
5724         Mark 'memchr' obsolete.
5725         * modules/memchr (Status, Notice): New sections.
5726         * modules/argp (Depends-on): Add memchr.
5727         * modules/base64 (Depends-on): Likewise.
5728         * modules/c-strcasestr (Depends-on): Likewise.
5729         * modules/chdir-long (Depends-on): Likewise.
5730         * modules/fnmatch (Depends-on): Likewise.
5731         * modules/getsubopt (Depends-on): Likewise.
5732         * modules/git-merge-changelog (Depends-on): Likewise.
5733         * modules/glob (Depends-on): Likewise.
5734         * modules/strcasestr-simple (Depends-on): Likewise.
5735         * modules/strnlen (Depends-on): Likewise.
5736
5737 2008-11-02  Bruno Haible  <bruno@clisp.org>
5738
5739         Mark 'atexit' obsolete.
5740         * modules/atexit (Status, Notice): New sections.
5741         * modules/chdir-long (Depends-on): Add atexit.
5742         * modules/wait-process (Depends-on): Likewise.
5743
5744 2008-11-02  Bruno Haible  <bruno@clisp.org>
5745
5746         * gnulib-tool: New option --with-obsolete.
5747         (func_usage): Document it.
5748         (func_modules_transitive_closure): Drop obsolete dependencies if
5749         incobsolete is not true.
5750         (func_import): Read and save the incobsolete variable to the cache.
5751
5752 2008-11-02  Bruno Haible  <bruno@clisp.org>
5753
5754         * modules/TEMPLATE-EXTENDED: New field 'Status'.
5755         * gnulib-tool: New option --extract-status.
5756         (func_usage): Document it.
5757         (sed_extract_prog): Recognize it.
5758         (func_get_status): New function.
5759
5760 2008-10-30  Simon Josefsson  <simon@josefsson.org>
5761
5762         * modules/sockets (License): Change from LGPL to LGPLv2+.
5763
5764 2008-10-28  Simon Josefsson  <simon@josefsson.org>
5765
5766         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
5767
5768 2008-10-28  Simon Josefsson  <simon@josefsson.org>
5769
5770         * MODULES.html.sh (Support for systems lacking POSIX:2001):
5771         Mention times and sys_times.
5772         * modules/sys_times, modules/sys_times-tests: New modules.
5773         * modules/times, modules/times-tests: Likewise
5774         * m4/sys_times_h.m4: New file.
5775         * lib/sys_times.in.h: Likewise
5776         * lib/times.c: Likewise.
5777         * tests/test-sys_times.c: Likewise.
5778         * tests/test-times.c: Likewise.
5779         * doc/posix-headers/sys_times.texi: Update.
5780         * doc/posix-functions/times.texi: Update.
5781
5782 2008-10-28  Jim Meyering  <meyering@redhat.com>
5783
5784         * modules/tempname (Depends-on): Add lstat.
5785
5786         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
5787
5788 2008-10-28  Simon Josefsson  <simon@josefsson.org>
5789
5790         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
5791         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
5792         using idiom used elsewhere in gnulib.
5793
5794 2008-10-27  Jim Meyering  <meyering@redhat.com>
5795
5796         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
5797
5798 2008-10-27  Simon Josefsson  <simon@josefsson.org>
5799
5800         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
5801         TESTS_ENVIRONMENT, for shell scripts that needs to call built
5802         programs.
5803         * tests/test-argp-2.sh: Use $EXEEXT when needed.
5804
5805 2008-10-27  Simon Josefsson  <simon@josefsson.org>
5806
5807         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
5808
5809 2008-10-27  Bruno Haible  <bruno@clisp.org>
5810
5811         * tests/test-lstat.c: Include <stdio.h>.
5812
5813 2008-10-27  Simon Josefsson  <simon@josefsson.org>
5814
5815         * modules/lstat-tests: New module.
5816         * tests/test-lstat.c: New file.
5817
5818 2008-10-26  Jim Meyering  <meyering@redhat.com>
5819
5820         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
5821
5822 2008-10-26  Simon Josefsson  <simon@josefsson.org>
5823             Bruno Haible  <bruno@clisp.org>
5824
5825         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
5826         * modules/configmake (Include): Add a note that the include must come
5827         after all system headers.
5828         * lib/javaversion.c: Include configmake.h after all other includes.
5829
5830 2008-10-26  Bruno Haible  <bruno@clisp.org>
5831
5832         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
5833         HAVE_STRUCT_RANDOM_DATA to 1.
5834         (gl_STDLIB_H): Simplify.
5835
5836 2008-10-26  Simon Josefsson  <simon@josefsson.org>
5837
5838         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
5839         substitute HAVE_STRUCT_RANDOM_DATA.
5840         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
5841         random_data.
5842         * modules/stdlib (Makefile.am): Substitute
5843         HAVE_STRUCT_RANDOM_DATA.
5844
5845 2008-10-26  Simon Josefsson  <simon@josefsson.org>
5846
5847         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
5848         * doc/gnulib-intro.texi (Copyright): Likewise.
5849
5850 2008-10-26  Simon Josefsson  <simon@josefsson.org>
5851
5852         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
5853         findings.
5854
5855 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
5856             Bruno Haible  <bruno@clisp.org>
5857
5858         * lib/unistd.in.h: Include <winsock2.h>.
5859         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
5860         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
5861         Provide dummy declarations.
5862         (gethostname): Override.
5863         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
5864         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
5865         gl_PREREQ_SYS_H_WINSOCK2.
5866         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
5867         * doc/posix-functions/gethostname.texi: More details.
5868
5869 2008-10-25  Bruno Haible  <bruno@clisp.org>
5870
5871         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
5872         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
5873         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
5874
5875         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
5876         here ...
5877         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
5878         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
5879         gl_UNISTD_H_DEFAULTS.
5880
5881 2008-10-25  Eric Blake  <ebb9@byu.net>
5882
5883         signbit: avoid spurious compiler failure
5884         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
5885         declarations inside function.
5886
5887 2008-10-24  Simon Josefsson  <simon@josefsson.org>
5888             Bruno Haible  <bruno@clisp.org>
5889
5890         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
5891         * modules/random_r (Depends-on): Add stdint.
5892
5893 2008-10-24  Bruno Haible  <bruno@clisp.org>
5894
5895         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
5896         Eggert.
5897         * modules/strerror (License): Likewise.
5898
5899 2008-10-24  Jim Meyering  <meyering@redhat.com>
5900
5901         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
5902         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
5903
5904 2008-10-24  Eric Blake  <ebb9@byu.net>
5905
5906         getgroups: fix compilation when getgroups is available
5907         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
5908         but with <config.h> override of getgroups disabled.
5909
5910 2008-10-24  Simon Josefsson  <simon@josefsson.org>
5911
5912         * doc/gnulib.texi (Header files): Add note about C++ problems.
5913         Explained by Bruno Haible <bruno@clisp.org>.
5914
5915 2008-10-23  Bruno Haible  <bruno@clisp.org>
5916
5917         Define a dummy SA_NODEFER macro on Interix.
5918         * lib/signal.in.h (SA_NODEFER): Define fallback.
5919         Reported by Aleksey Cheusov <cheusov@tut.by> via
5920         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
5921
5922 2008-10-23  Bruno Haible  <bruno@clisp.org>
5923
5924         * modules/freadahead (License): Change to LGPLv2+.
5925         Suggested by Simon Josefsson.
5926
5927 2008-10-23  Jim Meyering  <meyering@redhat.com>
5928
5929         random_r: new module
5930         * modules/random_r: New file.
5931         * m4/random_r.m4: New file.
5932         * lib/random_r.c: New file, from glibc.
5933         * modules/random_r-tests: New file.
5934         * tests/test-random_r.c: New file.
5935         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
5936          Declare.
5937         (RAND_MAX): Define.
5938         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
5939         * modules/stdlib: Substitute them, too.
5940         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
5941         * doc/glibc-functions/initstate_r.texi: Mention the new module.
5942         * doc/glibc-functions/random_r.texi: Likewise.
5943         * doc/glibc-functions/setstate_r.texi: Likewise.
5944         * doc/glibc-functions/srandom_r.texi: Likewise.
5945         * config/srclist.txt: Mention it.
5946
5947 2008-10-23  David Lutterkort  <lutter@redhat.com>
5948
5949         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
5950         link requirement
5951
5952 2008-10-23  Jim Meyering  <meyering@redhat.com>
5953
5954         selinux-h: mark parameters of stub functions as intentionally unused
5955         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
5956         * lib/se-context.in.h: Likewise.
5957
5958 2008-10-22  Simon Josefsson  <simon@josefsson.org>
5959
5960         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
5961
5962 2008-10-22  Simon Josefsson  <simon@josefsson.org>
5963
5964         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
5965
5966 2008-10-22  Eric Blake  <ebb9@byu.net>
5967
5968         glthread/thread: avoid compiler warning
5969         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
5970         Add unreachable abort to silence compiler.
5971
5972 2008-10-22  Eric Blake  <ebb9@byu.net>
5973
5974         netdb: also supply struct addrinfo for cygwin 1.5.x
5975         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
5976         older cygwin.
5977         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
5978         cygwin.
5979         * doc/posix-headers/netdb.texi (netdb.h): Document this.
5980
5981 2008-10-22  Bruno Haible  <bruno@clisp.org>
5982
5983         * users.txt: Update entry about pspp.
5984
5985 2008-10-21  Bruno Haible  <bruno@clisp.org>
5986
5987         Simplification.
5988         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
5989         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
5990
5991         Simplification.
5992         * lib/ioctl.c (ioctl): Don't undefine.
5993         * lib/socket.c (socket): Don't undefine.
5994
5995         Remove unused module indicator macros.
5996         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
5997         GNULIB_$1 as a C macro.
5998
5999         * doc/posix-functions/close.texi: Undo last change.
6000         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
6001         Windows platforms.
6002
6003 2008-10-21  Bruno Haible  <bruno@clisp.org>
6004
6005         Add gethostname() declaration to <unistd.h>.
6006         * lib/unistd.in.h (gethostname): New declaration.
6007         * lib/gethostname.c: Include <unistd.h>.
6008         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
6009         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
6010         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
6011         and HAVE_GETHOSTNAME.
6012         * modules/gethostname (Depends-on): Add unistd.
6013         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
6014         (Include): Specify <unistd.h>.
6015         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
6016         HAVE_GETHOSTNAME.
6017         * tests/test-gethostname.c: Include <unistd.h> first.
6018
6019 2008-10-21  Bruno Haible  <bruno@clisp.org>
6020
6021         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
6022         * modules/select-tests (Depends-on): Likewise.
6023         Reported by Simon Josefsson.
6024
6025 2008-10-21  Simon Josefsson  <simon@josefsson.org>
6026
6027         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
6028         * lib/accept.c: New file, based on winsock.c.
6029         * lib/bind.c: New file, based on winsock.c.
6030         * lib/connect.c: New file, based on winsock.c.
6031         * lib/getpeername.c: New file, based on winsock.c.
6032         * lib/getsockname.c: New file, based on winsock.c.
6033         * lib/getsockopt.c: New file, based on winsock.c.
6034         * lib/ioctl.c: New file, based on winsock.c.
6035         * lib/listen.c: New file, based on winsock.c.
6036         * lib/recv.c: New file, based on winsock.c.
6037         * lib/recvfrom.c: New file, based on winsock.c.
6038         * lib/send.c: New file, based on winsock.c.
6039         * lib/sendto.c: New file, based on winsock.c.
6040         * lib/setsockopt.c: New file, based on winsock.c.
6041         * lib/shutdown.c: New file, based on winsock.c.
6042         * lib/socket.c: New file, based on winsock.c.
6043         * lib/w32sock.h: New file, based on winsock.c.
6044         * lib/winsock.c: Remove file.
6045         * modules/accept: Likewise.
6046         * modules/bind: Likewise.
6047         * modules/connect: Likewise.
6048         * modules/getpeername: Likewise.
6049         * modules/getsockname: Likewise.
6050         * modules/getsockopt: Likewise.
6051         * modules/ioctl: Likewise.
6052         * modules/listen: Likewise.
6053         * modules/recv: Likewise.
6054         * modules/recvfrom: Likewise.
6055         * modules/send: Likewise.
6056         * modules/sendto: Likewise.
6057         * modules/setsockopt: Likewise.
6058         * modules/shutdown: Likewise.
6059         * modules/socket: Use socket.c instead of winsock.c.
6060         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
6061         * doc/posix-functions/accept.texi: Doc fix.
6062         * doc/posix-functions/bind.texi: Doc fix.
6063         * doc/posix-functions/close.texi: Doc fix.
6064         * doc/posix-functions/connect.texi: Doc fix.
6065         * doc/posix-functions/getpeername.texi: Doc fix.
6066         * doc/posix-functions/getsockname.texi: Doc fix.
6067         * doc/posix-functions/getsockopt.texi: Doc fix.
6068         * doc/posix-functions/ioctl.texi: Doc fix.
6069         * doc/posix-functions/listen.texi: Doc fix.
6070         * doc/posix-functions/recv.texi: Doc fix.
6071         * doc/posix-functions/recvfrom.texi: Doc fix.
6072         * doc/posix-functions/send.texi: Doc fix.
6073         * doc/posix-functions/sendto.texi: Doc fix.
6074         * doc/posix-functions/setsockopt.texi: Doc fix.
6075         * doc/posix-functions/shutdown.texi: Doc fix.
6076         * doc/posix-functions/socket.texi: Doc fix.
6077
6078 2008-10-20  Bruno Haible  <bruno@clisp.org>
6079
6080         Take into account the role of SIGABRT_COMPAT on Windows 2008.
6081         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
6082         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
6083         as an alias for SIGABRT.
6084         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
6085         (sigaction): Map it to SIGABRT.
6086         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
6087
6088 2008-10-20  Bruno Haible  <bruno@clisp.org>
6089
6090         * lib/fts.c: Don't include lstat.h.
6091         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
6092
6093         Move the lstat() declaration to <sys/stat.h>.
6094         * lib/lstat.h: Remove file.
6095         * lib/sys_stat.in.h: Add special invocation convention.
6096         (lstat): New declaration.
6097         * lib/lstat.c (orig_lstat): New function.
6098         (rpl_lstat): Use orig_lstat instead of lstat.
6099         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
6100         AC_C_INLINE. Set REPLACE_LSTAT.
6101         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
6102         and REPLACE_LSTAT.
6103         * modules/lstat (Files): Remove lib/lstat.h.
6104         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
6105         (Include): Specify <sys/stat.h> instead of lstat.h.
6106         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
6107         REPLACE_LSTAT.
6108         * NEWS: Mention the change.
6109
6110 2008-10-20  Bruno Haible  <bruno@clisp.org>
6111
6112         * modules/posix_spawn-tests: New file.
6113         * tests/test-posix_spawn3.c: New file.
6114
6115 2008-10-20  Bruno Haible  <bruno@clisp.org>
6116
6117         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
6118         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
6119         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
6120         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
6121         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
6122
6123 2008-10-20  Bruno Haible  <bruno@clisp.org>
6124
6125         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
6126         of posix_spawn on AIX 5.3.
6127
6128 2008-10-20  Bruno Haible  <bruno@clisp.org>
6129
6130         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
6131
6132 2008-10-20  Bruno Haible  <bruno@clisp.org>
6133
6134         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
6135         of AC_LANG_PROGRAM.
6136
6137 2008-10-20  Simon Josefsson  <simon@josefsson.org>
6138
6139         * lib/netdb.in.h: Don't define GNU specific constants until they
6140         are supported or needed.  Reported by Bruno Haible
6141         <bruno@clisp.org>.
6142
6143 2008-10-20  Simon Josefsson  <simon@josefsson.org>
6144
6145         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
6146
6147 2008-10-20  Simon Josefsson  <simon@josefsson.org>
6148
6149         * lib/getaddrinfo.h: Remove file.
6150         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
6151         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
6152         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
6153         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
6154         * modules/netdb: Substitute GNULIB_GETADDRINFO.
6155         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
6156         * tests/test-getaddrinfo.c: Likewise.
6157         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
6158         * NEWS: Mention change.
6159
6160 2008-10-19  Bruno Haible  <bruno@clisp.org>
6161
6162         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
6163
6164 2008-10-19  Bruno Haible  <bruno@clisp.org>
6165
6166         * lib/wait-process.c: Include simply <sys/wait.h>.
6167         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
6168         WIFSTOPPED): Remove fallback definitions.
6169         * modules/wait-process (Depends-on): Add sys_wait.
6170
6171         New module 'sys_wait'.
6172         * modules/sys_wait: New file.
6173         * lib/sys_wait.in.h: New file, partially copied from
6174         lib/wait-process.c.
6175         * m4/sys_wait_h.m4: New file.
6176         * doc/posix-headers/sys_wait.texi: Mention the new module.
6177
6178 2008-10-19  Bruno Haible  <bruno@clisp.org>
6179
6180         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
6181
6182 2008-10-19  Bruno Haible  <bruno@clisp.org>
6183
6184         Assume that waitpid() fills an 'int' status, not a 'union wait'.
6185         * lib/wait-process.c (WAIT_T): Remove type.
6186         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
6187         (wait_subprocess): Update.
6188
6189 2008-10-19  Bruno Haible  <bruno@clisp.org>
6190
6191         New module 'atoll'.
6192         * modules/atoll: New file.
6193         * lib/stdlib.in.h (atoll): New declaration.
6194         * lib/atoll.c: New file, from glibc with modifications.
6195         * m4/atoll.m4: New file.
6196         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
6197         HAVE_ATOLL.
6198         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
6199         * doc/posix-functions/atoll.texi: Mention the new module.
6200
6201 2008-10-19  Bruno Haible  <bruno@clisp.org>
6202
6203         Add strtoull() declaration to <stdlib.h>.
6204         * lib/stdlib.in.h (strtoull): New declaration.
6205         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
6206         Set HAVE_STRTOULL.
6207         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
6208         HAVE_STRTOULL.
6209         * modules/strtoull (Depends-on): Add stdlib.
6210         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
6211         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
6212         HAVE_STRTOULL.
6213
6214 2008-10-19  Bruno Haible  <bruno@clisp.org>
6215
6216         Add strtoll() declaration to <stdlib.h>.
6217         * lib/stdlib.in.h (strtoll): New declaration.
6218         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
6219         Set HAVE_STRTOLL.
6220         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
6221         HAVE_STRTOLL.
6222         * modules/strtoll (Depends-on): Add stdlib.
6223         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
6224         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
6225
6226 2008-10-19  Bruno Haible  <bruno@clisp.org>
6227
6228         * modules/bcopy (Depends-on): Add strings.
6229         (Include): Specify <strings.h>.
6230
6231 2008-10-19  Bruno Haible  <bruno@clisp.org>
6232
6233         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
6234
6235 2008-10-19  Bruno Haible  <bruno@clisp.org>
6236
6237         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
6238         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
6239         mingw.
6240
6241 2008-10-19  Bruno Haible  <bruno@clisp.org>
6242
6243         * lib/atanl.c: Don't include isnanl.h.
6244         * lib/cosl.c: Likewise.
6245         * lib/ldexpl.c: Likewise.
6246         * lib/logl.c: Likewise.
6247         * lib/sinl.c: Likewise.
6248         * lib/sqrtl.c: Likewise.
6249         * lib/tanl.c: Likewise.
6250
6251         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
6252         * lib/isnanf.h: Remove file.
6253         * lib/isnand.h: Remove file.
6254         * lib/isnanl.h: Remove file.
6255         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
6256         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
6257         macros.
6258         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
6259         HAVE_ISNANF, don't define it as a C macro.
6260         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
6261         HAVE_ISNAND, don't define it as a C macro.
6262         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
6263         HAVE_ISNANL, don't define it as a C macro.
6264         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
6265         HAVE_ISNAN[FDL].
6266         * modules/isnanf (Files): Remove lib/isnanf.h.
6267         (Depends-on): Add math.
6268         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
6269         (Include): Specify <math.h> instead of isnanf.h.
6270         * modules/isnand (Files): Remove lib/isnand.h.
6271         (Depends-on): Add math.
6272         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
6273         (Include): Specify <math.h> instead of isnand.h.
6274         * modules/isnanl (Files): Remove lib/isnanl.h.
6275         (Depends-on): Add math.
6276         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
6277         (Include): Specify <math.h> instead of isnanl.h.
6278         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
6279         HAVE_ISNAN[FDL].
6280         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
6281         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
6282         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
6283         * NEWS: Mention the change.
6284
6285 2008-10-18  Bruno Haible  <bruno@clisp.org>
6286
6287         Add getusershell(), setusershell(), endusershell() declarations to
6288         <unistd.h>.
6289         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
6290         declarations.
6291         * lib/getusershell.c: Include unistd.h.
6292         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
6293         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
6294         HAVE_GETUSERSHELL.
6295         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
6296         and HAVE_GETUSERSHELL.
6297         * modules/getusershell (Depends-on): Add unistd, extensions.
6298         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
6299         (Include): Specify <unistd.h>.
6300         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
6301         HAVE_GETUSERSHELL.
6302
6303 2008-10-18  Bruno Haible  <bruno@clisp.org>
6304
6305         Add a getloadavg() declaration to <stdlib.h>.
6306         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
6307         getloadavg declaration.
6308         (getloadavg): New declaration.
6309         * lib/getloadavg.c: Include <stdlib.h> first.
6310         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
6311         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
6312         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
6313         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
6314         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
6315         * modules/getloadavg (Depends-on): Add stdlib, extensions.
6316         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
6317         (Include): Specify <stdlib.h>.
6318         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
6319         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
6320
6321 2008-10-18  Bruno Haible  <bruno@clisp.org>
6322
6323         * lib/dirchownmod.c: Don't include lchmod.h.
6324
6325         Move the lchmod() declaration to <sys/stat.h>.
6326         * lib/lchmod.h: Remove file.
6327         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
6328         (lchmod): New declaration, moved here from lib/lchown.h.
6329         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
6330         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
6331         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
6332         and HAVE_LCHMOD.
6333         * modules/lchmod (Files): Remove lib/lchmod.h.
6334         (Depends-on): Add sys_stat, extensions.
6335         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
6336         (Include): Specify <sys/stat.h> instead of lchmod.h.
6337         * modules/sys_stat (Depends-on): Add link-warning.
6338         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
6339         definition of GL_LINK_WARNING.
6340         * NEWS: Mention the change.
6341
6342 2008-10-18  Bruno Haible  <bruno@clisp.org>
6343
6344         * lib/fchdir.c: Don't include dirfd.h.
6345         * lib/fts.c: Likewise.
6346         * lib/getcwd.c: Likewise.
6347         * lib/glob.c: Likewise.
6348
6349         Move the dirfd() declaration to <dirent.h>.
6350         * lib/dirfd.h: Remove file.
6351         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
6352         (dirfd): New declaration.
6353         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
6354         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
6355         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
6356         HAVE_DECL_DIRFD.
6357         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
6358         HAVE_DECL_DIRFD.
6359         * modules/dirfd (Files): Remove lib/dirfd.h.
6360         (Depends-on): Add dirent, extensions.
6361         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
6362         (Include): Specify <dirent.h> instead of dirfd.h.
6363         * modules/dirent (Depends-on): Add link-warning.
6364         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
6365         definition of GL_LINK_WARNING.
6366         * NEWS: Mention the change.
6367
6368 2008-10-18  Bruno Haible  <bruno@clisp.org>
6369
6370         Move the euidaccess() declaration to <unistd.h>.
6371         * lib/euidaccess.h: Remove file.
6372         * lib/unistd.in.h (euidaccess): New declaration.
6373         * lib/euidaccess.c: Don't include euidaccess.h.
6374         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
6375         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
6376         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
6377         and HAVE_EUIDACCESS.
6378         * modules/euidaccess (Files): Remove lib/euidaccess.h.
6379         (Depends-on): Add unistd.
6380         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
6381         (Include): Specify <unistd.h> instead of euidaccess.h.
6382         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
6383         HAVE_EUIDACCESS.
6384         * NEWS: Mention the change.
6385
6386 2008-10-18  Bruno Haible  <bruno@clisp.org>
6387
6388         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
6389
6390         Move the getdomainname() declaration to <unistd.h>.
6391         * lib/getdomainname.h: Remove file.
6392         * lib/unistd.in.h (getdomainname): New declaration.
6393         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
6394         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
6395         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
6396         HAVE_GETDOMAINNAME.
6397         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6398         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
6399         * modules/getdomainname (Files): Remove lib/getdomainname.h.
6400         (Depends-on): Add unistd, extensions.
6401         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
6402         (Includes): Specify <unistd.h> instead of getdomainname.h.
6403         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
6404         HAVE_GETDOMAINNAME.
6405         * NEWS: Mention the change.
6406
6407 2008-10-18  Bruno Haible  <bruno@clisp.org>
6408
6409         * modules/dirent: New file.
6410         * m4/dirent_h.m4: New file.
6411         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
6412         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
6413         * modules/fchdir (Files): Remove lib/dirent.in.h.
6414         (Depends-on): Add dirent.
6415         (Makefile.am): Move rules to modules/dirent.
6416         * doc/posix-headers/dirent.texi: Mention the new module.
6417
6418 2008-10-18  Bruno Haible  <bruno@clisp.org>
6419
6420         Avoid -Wunused-parameter warnings in public gnulib header files.
6421         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
6422         macro.
6423         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
6424
6425 2008-10-18  Bruno Haible  <bruno@clisp.org>
6426
6427         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
6428         * doc/glibc-functions/error.texi: Mention the module 'error'.
6429         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
6430         * doc/glibc-functions/getdomainname.texi: Mention the module
6431         'getdomainname'.
6432         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
6433         * doc/glibc-functions/getpagesize.texi: Mention the module
6434         'getpagesize'.
6435         * doc/glibc-functions/getusershell.texi: Mention the module
6436         'getusershell'.
6437         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
6438         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
6439         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
6440         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
6441         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
6442         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
6443         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
6444         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
6445         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
6446         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
6447         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
6448         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
6449         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
6450         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
6451
6452 2008-10-17  Bruno Haible  <bruno@clisp.org>
6453
6454         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
6455         HP-UX and IRIX, use -0.0L.
6456         * tests/test-ceill.c (minus_zero): Likewise.
6457         * tests/test-floorl.c (minus_zero): Likewise.
6458         * tests/test-frexpl.c (minus_zero): Likewise.
6459         * tests/test-isnan.c (minus_zerol): Likewise.
6460         * tests/test-isnanl.h (minus_zero): Likewise.
6461         * tests/test-ldexpl.c (minus_zero): Likewise.
6462         * tests/test-roundl.c (minus_zero): Likewise.
6463         * tests/test-signbit.c (minus_zerol): Likewise.
6464         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
6465         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
6466         * tests/test-truncl.c (minus_zero): Likewise.
6467         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
6468         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
6469         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
6470         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
6471
6472 2008-10-17  Bruno Haible  <bruno@clisp.org>
6473
6474         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
6475         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
6476         that it gets activated only for gcc >= 3.0.
6477         * lib/dirent.in.h: Likewise.
6478         * lib/errno.in.h: Likewise.
6479         * lib/fcntl.in.h: Likewise.
6480         * lib/float.in.h: Likewise.
6481         * lib/iconv.in.h: Likewise.
6482         * lib/inttypes.in.h: Likewise.
6483         * lib/locale.in.h: Likewise.
6484         * lib/math.in.h: Likewise.
6485         * lib/netdb.in.h: Likewise.
6486         * lib/netinet_in.in.h: Likewise.
6487         * lib/search.in.h: Likewise.
6488         * lib/signal.in.h: Likewise.
6489         * lib/spawn.in.h: Likewise.
6490         * lib/stdarg.in.h: Likewise.
6491         * lib/stdint.in.h: Likewise.
6492         * lib/stdio.in.h: Likewise.
6493         * lib/stdlib.in.h: Likewise.
6494         * lib/string.in.h: Likewise.
6495         * lib/strings.in.h: Likewise.
6496         * lib/sys_file.in.h: Likewise.
6497         * lib/sys_ioctl.in.h: Likewise.
6498         * lib/sys_select.in.h: Likewise.
6499         * lib/sys_socket.in.h: Likewise.
6500         * lib/sys_stat.in.h: Likewise.
6501         * lib/sys_time.in.h: Likewise.
6502         * lib/sysexits.in.h: Likewise.
6503         * lib/time.in.h: Likewise.
6504         * lib/unistd.in.h: Likewise.
6505         * lib/wchar.in.h: Likewise.
6506         * lib/wctype.in.h: Likewise.
6507         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6508
6509 2008-10-17  Jim Meyering  <meyering@redhat.com>
6510
6511         ignore-value: don't depend on inline module
6512         * modules/ignore-value (Depends-on): Remove 'inline'.
6513         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
6514         Suggestion from Bruno Haible.
6515
6516 2008-10-17  Bruno Haible  <bruno@clisp.org>
6517
6518         New implementation of condition variables for Win32.
6519         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
6520         (gl_linked_waitqueue_t): New type.
6521         (gl_cond_t): Use it.
6522         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
6523         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
6524         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
6525         (glthread_cond_init_func, glthread_cond_wait_func,
6526         glthread_cond_timedwait_func, glthread_cond_signal_func,
6527         glthread_cond_broadcast_func, glthread_cond_destroy_func):
6528         Reimplemented on the basis of gl_linked_waitqueue_t.
6529         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
6530         gl_waitqueue_t.
6531         (gl_rwlock_t): Update.
6532         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
6533
6534 2008-10-17  Simon Josefsson  <simon@josefsson.org>
6535
6536         * modules/recvfrom (Depends-on): Add dependency on getpeername.
6537         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
6538
6539 2008-10-17  Jim Meyering  <meyering@redhat.com>
6540
6541         ignore-value: new module
6542         * modules/ignore-value: New file.
6543         * lib/ignore-value.h: New file.
6544         * MODULES.html.sh (Compiler warning management): New section,
6545         just for this module.  More to come.
6546
6547 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
6548
6549         open-safer.c: avoid 'signed and unsigned in conditional...' warning
6550         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
6551         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
6552
6553 2008-10-16  Jim Meyering  <meyering@redhat.com>
6554
6555         openat-die.c: avoid 'no previous prototype' warning
6556         * lib/openat-die.c: Include "openat.h".
6557         Reported by Reuben Thomas <rrt@sc3d.org>.
6558
6559 2008-10-16  Simon Josefsson  <simon@josefsson.org>
6560
6561         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
6562         * lib/netdb.in.h: Fix typo.
6563         Reported by Bruno Haible  <bruno@clisp.org>
6564
6565         * lib/netdb.in.h: Include sys/socket.h for platforms without
6566         netdb.h, to get structures like hostent on MinGW.
6567         * modules/netdb (Depends-on): Add sys_socket.
6568
6569 2008-10-15  Simon Josefsson  <simon@josefsson.org>
6570
6571         * modules/netdb, modules/netdb-tests: New file.
6572         * m4/netdb_h.m4: New file.
6573         * lib/netdb.in.h: Add, currently just an empty file pending
6574         definitions.
6575         * tests/test-netdb.c: New file.
6576         * doc/posix-headers/netdb.texi: Mention that we replace it if
6577         needed.
6578         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
6579         netdb.
6580
6581 2008-10-15  Simon Josefsson  <simon@josefsson.org>
6582
6583         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
6584         with code.
6585
6586 2008-10-13  Bruno Haible  <bruno@clisp.org>
6587
6588         * lib/glthread/cond.c (glthread_cond_wait_func,
6589         glthread_cond_timedwait_func): Add a comment.
6590
6591 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
6592
6593         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
6594         * tests/test-select.c: Likewise,
6595
6596 2008-10-13  Bruno Haible  <bruno@clisp.org>
6597
6598         * lib/glthread/cond.c (glthread_cond_wait_func,
6599         glthread_cond_timedwait_func): Fix variable name.
6600         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
6601
6602 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
6603
6604         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
6605         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
6606         struct sockaddr.sa_len.
6607         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
6608
6609 2008-10-13  Simon Josefsson  <simon@josefsson.org>
6610
6611         * build-aux/pmccabe2html: Add css and css_url parameters.
6612
6613 2008-10-12  Bruno Haible  <bruno@clisp.org>
6614
6615         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
6616         calling aclx_get.
6617         Reported by Rainer Tammer <tammer@tammer.net>.
6618
6619 2008-10-12  Bruno Haible  <bruno@clisp.org>
6620
6621         Use msvcrt aware primitives for creation/termination of Win32 threads.
6622         * lib/glthread/thread.c: Include <process.h>.
6623         (glthread_create_func): Use _beginthreadex instead of CreateThread.
6624         (wrapper_func): Update signature.
6625         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
6626
6627 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
6628             Bruno Haible  <bruno@clisp.org>
6629
6630         Provide a Win32 implementation of the 'cond' module.
6631         * lib/glthread/cond.h [USE_WIN32]: New implementation.
6632         * lib/glthread/cond.c (glthread_cond_init_func,
6633         glthread_cond_wait_func, glthread_cond_timedwait_func,
6634         glthread_cond_signal_func, glthread_cond_broadcast_func,
6635         glthread_cond_destroy_func) [USE_WIN32]: New functions.
6636         * modules/cond (Dependencies): Add gettimeofday.
6637
6638 2008-10-11  Bruno Haible  <bruno@clisp.org>
6639
6640         Make sleep work on older versions of mingw.
6641         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
6642         only whether it exists.
6643         * doc/posix-functions/sleep.texi: Mention the problem with older
6644         versions of mingw.
6645
6646 2008-10-11  Bruno Haible  <bruno@clisp.org>
6647
6648         New module 'shutdown'.
6649         * modules/shutdown: New file.
6650         * lib/sys_socket.in.h (shutdown): New declaration.
6651         * lib/winsock.c (shutdown): New function.
6652         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
6653         GNULIB_SHUTDOWN.
6654         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
6655         * doc/posix-functions/shutdown.texi: Document the new module.
6656
6657 2008-10-11  Jim Meyering  <meyering@redhat.com>
6658
6659         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
6660
6661 2008-10-11  Bruno Haible  <bruno@clisp.org>
6662
6663         New module 'fclose'.
6664         * modules/fclose: New file.
6665         * lib/stdio.in.h (fclose): New declaration.
6666         * lib/fclose.c: New file.
6667         * m4/fclose.m4: New file.
6668         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
6669         REPLACE_FCLOSE.
6670         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
6671         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
6672         REPLACE_FCLOSE.
6673         * modules/close (Depends-on): fclose.
6674         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
6675
6676 2008-10-11  Bruno Haible  <bruno@clisp.org>
6677
6678         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
6679         set errno and don't call _close.
6680
6681 2008-10-10  Bruno Haible  <bruno@clisp.org>
6682
6683         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
6684         ACL, not afterwards. Fixes test failure on Cygwin.
6685
6686 2008-10-09  Ben Pfaff  <blp@gnu.org>
6687
6688         * build-aux/announce-gen: Fix gnulib version related part of usage
6689         message.  Die with a useful error message if no tarballs are
6690         found.
6691
6692 2008-10-10  Jim Meyering  <meyering@redhat.com>
6693
6694         bootstrap: use git's --depth=N option only if it's supported
6695         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
6696         recognize the --depth option.  Reported by Pádraig Brady.
6697
6698 2008-10-09  Bruno Haible  <bruno@clisp.org>
6699
6700         New module 'ioctl'.
6701         * modules/ioctl: New file.
6702         * lib/sys_socket.in.h (ioctl): Remove declaration.
6703         * lib/winsock.c: Include <sys/ioctl.h>.
6704         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
6705         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
6706         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
6707         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
6708         * doc/posix-functions/ioctl.texi: Mention the new module.
6709
6710 2008-10-09  Bruno Haible  <bruno@clisp.org>
6711
6712         New module 'sys_ioctl'.
6713         * lib/sys_ioctl.in.h: New file.
6714         * m4/sys_ioctl_h.m4: New file.
6715         * modules/sys_ioctl: New file.
6716         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
6717
6718 2008-10-09  Bruno Haible  <bruno@clisp.org>
6719
6720         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
6721         * lib/winsock.c: Include <stdarg.h>.
6722         (rpl_ioctl): Change to second argument 'int' and then varargs.
6723
6724 2008-10-09  Bruno Haible  <bruno@clisp.org>
6725
6726         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
6727         when the sys_socket module is present and the system has <winsock2.h>.
6728
6729 2008-10-09  Bruno Haible  <bruno@clisp.org>
6730
6731         * doc/posix-functions/close.texi: Mention module 'close' instead of
6732         module 'sys_socket'.
6733
6734 2008-10-09  Bruno Haible  <bruno@clisp.org>
6735
6736         * doc/glibc-headers/sys_ioctl.texi: New file.
6737         * doc/gnulib.texi: Include it.
6738
6739 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
6740             Bruno Haible  <bruno@clisp.org>
6741
6742         Combine the two replacements of 'close'.
6743         * lib/sys_socket.in.h (close): Define to a reminder to include
6744         <unistd.h>.
6745         (_gl_close_fd_maybe_socket): New declaration.
6746         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
6747         * lib/winsock.c (close): Remove undefinition.
6748         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
6749         needed for the gnulib module 'close'.
6750         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
6751         define to an error symbol or to a warning, if suitable.
6752         * lib/close.c: Include <sys/socket.h>.
6753         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
6754         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
6755         UNISTD_H_HAVE_WINSOCK2_H.
6756         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
6757         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6758         UNISTD_H_HAVE_WINSOCK2_H.
6759         * modules/sys_socket (Files): Add m4/unistd_h.m4.
6760         (configure.ac): Set a module indicator.
6761         (Makefile.am): Substitute GNULIB_CLOSE.
6762         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
6763         * modules/poll-tests (Depends-on): Add close.
6764         * modules/select-tests (Depends-on): Likewise.
6765
6766 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
6767             Bruno Haible  <bruno@clisp.org>
6768
6769         New module 'close'.
6770         * modules/close: New file.
6771         * lib/unistd.in.h (close): Move declaration out of the
6772         FCHDIR_REPLACEMENT scope.
6773         (_gl_unregister_fd): New declaration.
6774         * lib/close.c: New file.
6775         * lib/fchdir.c (rpl_close): Remove function.
6776         * m4/close.m4: New file.
6777         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
6778         close.
6779         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
6780         REPLACE_CLOSE.
6781         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
6782         REPLACE_CLOSE.
6783         * modules/fchdir (Depends-on): Add close.
6784
6785 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
6786             Bruno Haible  <bruno@clisp.org>
6787
6788         * lib/fcntl.in.h (open): Simplify conditionals.
6789         (_gl_register_fd): New declaration.
6790         * lib/fchdir.c (rpl_open): Remove function.
6791         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
6792         also.
6793         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
6794         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
6795         open.
6796
6797 2008-10-09  Jim Meyering  <meyering@redhat.com>
6798
6799         GNUmakefile: use the more name-space-friendly "_version"
6800         * top/GNUmakefile (_dummy): Update.
6801         (_version): Rename from "version".
6802
6803 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
6804             Bruno Haible  <bruno@clisp.org>
6805
6806         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
6807         rpl_close.
6808         (_gl_register_fd): New function, extracted from rpl_open.
6809         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
6810         (rpl_open, rpl_opendir): Use _gl_register_fd.
6811
6812 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
6813
6814         Fix organization of 'open' replacement.
6815         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
6816         (gl_FUNC_OPEN): Use it.
6817         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
6818
6819 2008-10-08  Bruno Haible  <bruno@clisp.org>
6820
6821         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
6822
6823 2008-10-08  Simon Josefsson  <simon@josefsson.org>
6824
6825         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
6826         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
6827         listen).
6828
6829 2008-10-08  Eric Blake  <ebb9@byu.net>
6830
6831         GNUmakefile: add 'make version' target
6832         * top/GNUmakefile (_curr-ver): Split version update rules...
6833         (version): ...into a target.
6834
6835 2008-10-07  Bruno Haible  <bruno@clisp.org>
6836
6837         Use a more portable replacement expression for -0.0L.
6838         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
6839         instead of -0.0L. Fix m4 quotation.
6840
6841         * tests/test-signbit.c: Include <float.h>.
6842         (minus_zero): New variable.
6843         (test_signbitl): Use minus_zero instead of -zero.
6844         * modules/signbit-tests (Depends-on): Add float.
6845
6846         * tests/test-ceill.c: Include <float.h>.
6847         (zero): Remove variable.
6848         (minus_zero): New variable.
6849         (main): Use minus_zero instead of -zero.
6850         * modules/ceill-tests (Depends-on): Add float.
6851
6852         * tests/test-floorl.c: Include <float.h>.
6853         (zero): Remove variable.
6854         (minus_zero): New variable.
6855         (main): Use minus_zero instead of -zero.
6856         * modules/floorl-tests (Depends-on): Add float.
6857
6858         * tests/test-roundl.c: Include <float.h>.
6859         (zero): Remove variable.
6860         (minus_zero): New variable.
6861         (main): Use minus_zero instead of -zero.
6862         * modules/roundl-tests (Depends-on): Add float.
6863
6864         * tests/test-truncl.c: Include <float.h>.
6865         (zero): Remove variable.
6866         (minus_zero): New variable.
6867         (main): Use minus_zero instead of -zero.
6868         * modules/truncl-tests (Depends-on): Add float.
6869
6870         * tests/test-frexpl.c (zero): Remove variable.
6871         (minus_zero): New variable.
6872         (main): Use minus_zero instead of -zero.
6873         * modules/frexpl-tests (Depends-on): Add float.
6874
6875         * tests/test-isnan.c (zerol): Remove variable.
6876         (minus_zerol): New variable.
6877         (test_long_double): Use minus_zerol instead of -zerol.
6878         * modules/isnan-tests (Depends-on): Add float.
6879
6880         * tests/test-isnanl.h (zero): Remove variable.
6881         (minus_zero): New variable.
6882         (main): Use minus_zero instead of -zero.
6883         * modules/isnanl-nolibm-tests (Depends-on): Add float.
6884         * modules/isnanl-tests (Depends-on): Add float.
6885
6886         * tests/test-ldexpl.c (zero): Remove variable.
6887         (minus_zero): New variable.
6888         (main): Use minus_zero instead of -zero.
6889         * modules/ldexpl-tests (Depends-on): Add float.
6890
6891         * tests/test-snprintf-posix.h (zerol): Remove variable.
6892         (minus_zerol): New variable.
6893         (test_function): Use minus_zerol instead of -zerol.
6894         * modules/snprintf-posix-tests (Depends-on): Add float.
6895         * modules/vsnprintf-posix-tests (Depends-on): Add float.
6896
6897         * tests/test-sprintf-posix.h (zerol): Remove variable.
6898         (minus_zerol): New variable.
6899         (test_function): Use minus_zerol instead of -zerol.
6900         * modules/sprintf-posix-tests (Depends-on): Add float.
6901         * modules/vsprintf-posix-tests (Depends-on): Add float.
6902
6903         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
6904         (minus_zerol): New variable.
6905         (test_function): Use minus_zerol instead of -zerol.
6906         * modules/vasnprintf-posix-tests (Depends-on): Add float.
6907
6908         * tests/test-vasprintf-posix.c (zerol): Remove variable.
6909         (minus_zerol): New variable.
6910         (test_function): Use minus_zerol instead of -zerol.
6911         * modules/vasprintf-posix-tests (Depends-on): Add float.
6912
6913 2008-10-07  Simon Josefsson  <simon@josefsson.org>
6914
6915         * MODULES.html.sh (Support for building documentation): Mention
6916         pmccabe2html.  Sort entries.
6917
6918         Add pmccabe2html module, from gnupdf.
6919         * build-aux/pmccabe.css: New file.
6920         * build-aux/pmccabe2html: New file.
6921         * m4/pmccabe2html.m4: New file.
6922         * modules/pmccabe2html: New file.
6923
6924 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
6925
6926         flock: new module
6927         * MODULES.html.sh: Add to list of modules.
6928         * lib/flock.c: flock implementation for Windows and Unix systems
6929         which have fcntl.
6930         * doc/glibc-functions/flock.texi: Update documentation.
6931         * lib/sys_file.in.h: <sys/file.h> header file.
6932         * m4/flock.m4: M4 macros.
6933         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
6934         * modules/flock: flock module.
6935         * modules/flock-tests: flock tests module.
6936         * modules/sys_file: sys/file.h module.
6937         * tests/test-flock.c: test suite for flock.
6938
6939 2008-10-06  Jim Meyering  <meyering@redhat.com>
6940
6941         bootstrap: check for LT_INIT more portably still ;-)
6942         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
6943         Spotted by Bruno Haible.
6944
6945 2008-10-06  Eric Blake  <ebb9@byu.net>
6946
6947         test-signbit: avoid tripping Irix cc bug on -0.0L
6948         * tests/test-signbit.c (minus_zerol): Delete, and replace with
6949         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
6950         entire testsuite consistent and avoids an Irix 6.2 bug.
6951
6952 2008-10-05  Bruno Haible  <bruno@clisp.org>
6953             Jim Meyering  <jim@meyering.net>
6954
6955         Add an option for ignoring EPIPE during close_stdout.
6956         * lib/closeout.h: Include <stdbool.h>.
6957         (close_stdout_set_ignore_EPIPE): New declaration.
6958         * lib/closeout.c: Include <stdbool.h>.
6959         (ignore_EPIPE): New variable.
6960         (close_stdout_set_ignore_EPIPE): New function.
6961         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
6962         * lib/close-stream.c (close_stream): Mention the possible EPIPE
6963         failure.
6964         * modules/closeout (Depends-on): Add stdbool.
6965
6966 2008-10-05  Bruno Haible  <bruno@clisp.org>
6967
6968         * modules/accept: New file.
6969         * modules/bind: New file.
6970         * modules/connect: New file.
6971         * modules/getpeername: New file.
6972         * modules/getsockname: New file.
6973         * modules/getsockopt: New file.
6974         * modules/listen: New file.
6975         * modules/recv: New file.
6976         * modules/recvfrom: New file.
6977         * modules/send: New file.
6978         * modules/sendto: New file.
6979         * modules/setsockopt: New file.
6980         * modules/socket: New file.
6981         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
6982         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
6983         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
6984         the particular module is requested. Add a link warning when the
6985         particular module is not requested.
6986         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
6987         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
6988         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
6989         the particular module is requested.
6990         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
6991         gl_SYS_SOCKET_H_DEFAULTS): New macros.
6992         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
6993         * modules/sys_socket (Depends-on): Add link-warning.
6994         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
6995         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
6996         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
6997         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
6998         GL_LINK_WARNING.
6999         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
7000         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
7001         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
7002         * doc/posix-functions/getpeername.texi: Mention the new module
7003         'getpeername'.
7004         * doc/posix-functions/getsockname.texi: Mention the new module
7005         'getsockname'.
7006         * doc/posix-functions/getsockopt.texi: Mention the new module
7007         'getsockopt'.
7008         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
7009         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
7010         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
7011         * doc/posix-functions/send.texi: Mention the new module 'send'.
7012         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
7013         * doc/posix-functions/setsockopt.texi: Mention the new module
7014         'setsockopt'.
7015         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
7016         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
7017         listen, connect, accept.
7018         * modules/select-tests (Depends-on): Likewise.
7019
7020 2008-10-05  Bruno Haible  <bruno@clisp.org>
7021
7022         * lib/winsock.c (strerror): Remove unused #undef.
7023         (rpl_close): Remove unused local variable.
7024
7025         * modules/sys_socket (Depends-on); Add errno.
7026
7027 2008-10-05  Bruno Haible  <bruno@clisp.org>
7028
7029         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
7030         (select): Add a link warning when the 'select' module is not used.
7031         * modules/sys_select (Depends-on): Add link-warning.
7032         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
7033         Suggested by Paolo Bonzini.
7034
7035 2008-10-05  Jim Meyering  <meyering@redhat.com>
7036
7037         bootstrap: check for LT_INIT more portably
7038         * build-aux/bootstrap: Avoid using grep -E, since it's not
7039         portable enough.  Suggestion from Bruno Haible.
7040
7041 2008-10-05  Bruno Haible  <bruno@clisp.org>
7042
7043         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
7044         as being fixed by gnulib.
7045
7046 2008-10-05  Bruno Haible  <bruno@clisp.org>
7047
7048         * modules/select-tests: New file, mostly copied from
7049         modules/sys_select-tests.
7050         * tests/test-select.c: New file, mostly copied from
7051         tests/test-sys_select.c.
7052         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
7053         * modules/sys_select-tests (Depends-on): Remove all dependencies.
7054         (Makefile.am): Remove test_sys_select_LDADD.
7055
7056         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
7057         to an undefined symbol, for an error message.
7058         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
7059         (gl_SYS_SELECT_H_DEFAULTS): New macro.
7060         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
7061         winsock-select.c here.
7062         * modules/sys_select (Files): Remove lib/winsock-select.c.
7063         (Depends-on): Remove alloca.
7064         (Makefile.am): Substitute GNULIB_SELECT.
7065         * modules/select: New file.
7066         * doc/posix-functions/select.texi: Update.
7067
7068 2008-10-05  Bruno Haible  <bruno@clisp.org>
7069
7070         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
7071         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
7072         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
7073         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
7074         getdtablesize.
7075         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
7076         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
7077
7078 2008-10-05  Bruno Haible  <bruno@clisp.org>
7079
7080         * modules/getdtablesize-tests: New file.
7081         * tests/test-getdtablesize.c: New file.
7082
7083         New module 'getdtablesize'.
7084         * lib/unistd.in.h (getdtablesize): New declaration.
7085         * lib/getdtablesize.c: New file.
7086         * m4/getdtablesize.m4: New file.
7087         * modules/getdtablesize: New file.
7088         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
7089         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
7090         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
7091         HAVE_GETDTABLESIZE.
7092         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
7093
7094 2008-10-05  Bruno Haible  <bruno@clisp.org>
7095
7096         * modules/sched (Makefile.am): Fix typo.
7097         Reported by Simon Josefsson.
7098
7099 2008-10-05  Jim Meyering  <meyering@redhat.com>
7100
7101         bootstrap: check for LT_INIT, too
7102         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
7103         are deprecated.  Suggestion from Ralf Wildenhues.
7104
7105 2008-10-05  Bruno Haible  <bruno@clisp.org>
7106
7107         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
7108         overriding them by ours.
7109         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
7110
7111 2008-10-05  Jim Meyering  <meyering@redhat.com>
7112
7113         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
7114         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
7115         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
7116
7117 2008-10-04  Bruno Haible  <bruno@clisp.org>
7118
7119         * modules/dup2 (License): Change to LGPLv2+.
7120         * modules/sleep (License): Likewise.
7121         * modules/perror (License): Likewise.
7122         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
7123         Blake.
7124         * modules/signal (License): Likewise.
7125         * modules/sigprocmask (License): Likewise.
7126         * modules/raise (License): Change to LGPLv2+, with approval by Jim
7127         Meyering.
7128
7129 2008-10-04  Bruno Haible  <bruno@clisp.org>
7130
7131         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
7132         Reported by Rainer Tammer <tammer@tammer.net>.
7133
7134 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
7135             Bruno Haible  <bruno@clisp.org>
7136
7137         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
7138         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
7139         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
7140
7141 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
7142
7143         filevercmp: new module
7144         * lib/filevercmp.h: New function filevercmp comparing version strings.
7145         * lib/filevercmp.c: Implementation of filevercmp function.
7146         * modules/filevercmp: Module metadata.
7147         * tests/test-filevercmp.c: Unit test for new module.
7148         * modules/filevercmp-tests: Unit test metadata.
7149         * MODULES.html.sh: Add filevercmp module.
7150
7151 2008-10-03  Bruno Haible  <bruno@clisp.org>
7152
7153         * lib/c-ctype.h: Add comment.
7154         Reported by Jim Meyering.
7155
7156 2008-10-02  Bruno Haible  <bruno@clisp.org>
7157
7158         * modules/posix_spawn-internal (Depends-on): Add 'open'.
7159
7160 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
7161
7162         * build-aux/bootstrap: Allow renaming bootstrap, and change the
7163         name of bootstrap.conf accordingly.
7164
7165 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
7166
7167         * build-aux/bootstrap: Install git-merge-changelog configuration
7168         items into .gitconfig if needed.
7169
7170 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
7171
7172         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
7173         git repository, and initialize/update it accordingly.
7174
7175 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
7176
7177         * modules/fsync-tests: New file.
7178         * tests/test-fsync.c: New file.
7179
7180         New module 'fsync'.
7181         * lib/fsync.c: New file.
7182         * m4/fsync.m4: New file.
7183         * modules/fsync: New file.
7184         * lib/unistd.in.h (fsync): New declaration.
7185         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
7186         GNULIB_FSYNC and HAVE_FSYNC.
7187         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
7188         * MODULES.html.sh (posix_functions): Add fsync.
7189         * doc/posix-functions/fsync.texi: Mention the new module.
7190
7191 2008-10-02  Jim Meyering  <meyering@redhat.com>
7192
7193         fts.c: sync with similar code from coreutils' remove.c
7194         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
7195         Guard also with "#if defined __linux__", since for now at least,
7196         this code is Linux-kernel-specific.
7197
7198 2008-10-02  Jim Meyering  <meyering@redhat.com>
7199
7200         fts: bug fixes
7201         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
7202         Include <sys/vfs.h>, not <sys/statfs.h>.
7203
7204         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
7205         Include <sys/vfs.h>, not <sys/statfs.h>.
7206
7207 2008-10-01  Bruno Haible  <bruno@clisp.org>
7208
7209         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
7210         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
7211         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
7212         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
7213         * doc/posix-functions/posix_spawnp.texi: Likewise.
7214         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
7215         whether posix_spawn actually works.
7216         * m4/pipe.m4 (gl_PIPE): Likewise.
7217         * modules/execute (Files): Add m4/posix_spawn.m4.
7218         * modules/pipe (Files): Add m4/posix_spawn.m4.
7219         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
7220
7221 2008-10-01  Jim Meyering  <meyering@redhat.com>
7222
7223         remove trailing spaces
7224         * NEWS: Likewise.
7225         * lib/poll.c (poll): Likewise.
7226         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
7227         * lib/winsock.c (rpl_close): Likewise.
7228         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
7229         * modules/yield: Likewise.
7230         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
7231         * tests/test-sys_select.c (connect_to_socket): Likewise.
7232
7233         fts.c: adjust a new interface to be more generally useful
7234         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
7235         (fts_build): Adjust caller.
7236
7237 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7238
7239         * modules/cond-tests: New file.
7240         * tests/test-cond.c: New file.
7241
7242 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7243             Bruno Haible  <bruno@clisp.org>
7244
7245         * modules/cond (Dependencies): Add errno, time.
7246         * lib/glthread/cond.h: Include <time.h>.
7247         (gl_cond_define, gl_cond_define_initialized): Use the same definition
7248         across platforms.
7249
7250 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7251             Bruno Haible  <bruno@clisp.org>
7252
7253         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
7254
7255 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7256             Bruno Haible  <bruno@clisp.org>
7257
7258         * modules/tls-tests (Depends-on): Add thread, yield.
7259         (configure.ac): Remove all checks.
7260         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
7261         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
7262         gl_thread_self): Remove definitions. Include glthread/thread.h and
7263         glthread/yield.h instead.
7264         (test_tls): Pass an additional NULL argument to gl_thread_join.
7265
7266 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7267             Bruno Haible  <bruno@clisp.org>
7268
7269         * modules/lock-tests (Depends-on): Add thread, yield.
7270         (configure.ac): Remove all checks.
7271         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
7272         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
7273         gl_thread_self): Remove definitions. Include glthread/thread.h and
7274         glthread/yield.h instead.
7275         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
7276         additional NULL argument to gl_thread_join.
7277
7278 2008-09-30  Bruno Haible  <bruno@clisp.org>
7279
7280         Fix the Win32 implementation of the 'thread' module.
7281         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
7282         pointer type.
7283         (gl_thread_self): Invoke gl_thread_self_func.
7284         (gl_thread_self_func): New declaration.
7285         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
7286         (do_init_self_key, init_self_key): New functions.
7287         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
7288         Remove some fields.
7289         (running_threads, running_lock): Remove variables.
7290         (get_current_thread_handle): New function.
7291         (gl_thread_self_func, wrapper_func, glthread_create_func,
7292         glthread_join_func, gl_thread_exit_func): Largely rewritten and
7293         simplified.
7294
7295 2008-09-30  Bruno Haible  <bruno@clisp.org>
7296
7297         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
7298         files.
7299
7300 2008-09-30  Jim Meyering  <meyering@redhat.com>
7301
7302         fts.m4: correct the test for statfs.f_type
7303         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
7304         when checking for statfs.f_type.
7305
7306 2008-09-15  Simon Josefsson  <simon@josefsson.org>
7307
7308         tests: avoid some compiler warnings
7309         * tests/test-memchr.c (main): Pass NULL indirectly.
7310         * tests/test-getdate.c (main): Remove unused variable 'ret'.
7311
7312 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
7313
7314         getdate.y: disallow countable dayshifts like "4 yesterday ago"
7315         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
7316         exactly specified dayshifts.
7317         (dayshift): New rule.
7318         (rel): Add dayshift.
7319         (relative_time_table) [tomorrow, yesterday, today, now]:
7320         Use tDAY_SHIFT in place of tDAY_UNIT.
7321         * tests/test-getdate.c: Add tests for now-disallowed countable
7322         dayshifts, e.g., "4 yesterday ago".
7323
7324 2008-09-29  Bruno Haible  <bruno@clisp.org>
7325
7326         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
7327         * tests/test-posix_spawn1.in.sh: Renamed from
7328         tests/test-posix_spawn.in.sh.
7329         * tests/test-posix_spawn2.c: New file.
7330         * tests/test-posix_spawn2.in.sh: New file.
7331         * modules/posix_spawnp-tests (Files): Update.
7332         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
7333
7334 2008-09-29  Bruno Haible  <bruno@clisp.org>
7335
7336         Propagate effects of putenv/setenv/unsetenv to child processes.
7337         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
7338         * lib/pipe.c (create_pipe): Likewise.
7339
7340 2008-09-29  Bruno Haible  <bruno@clisp.org>
7341
7342         Enable use of shell scripts as executables in mingw.
7343         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
7344         run the program as a shell script.
7345         * lib/pipe.c (create_pipe): Likewise.
7346         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
7347         resulting array.
7348
7349 2008-09-29  Eric Blake  <ebb9@byu.net>
7350
7351         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
7352
7353 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
7354
7355         * doc/posix-functions/accept.texi: Update mingw problems.
7356         * doc/posix-functions/bind.texi: Update mingw problems.
7357         * doc/posix-functions/close.texi: Update mingw problems.
7358         * doc/posix-functions/connect.texi: Update mingw problems.
7359         * doc/posix-functions/getpeername.texi: Update mingw problems.
7360         * doc/posix-functions/getsockname.texi: Update mingw problems.
7361         * doc/posix-functions/getsockopt.texi: Update mingw problems.
7362         * doc/posix-functions/ioctl.texi: Update mingw problems.
7363         * doc/posix-functions/listen.texi: Update mingw problems.
7364         * doc/posix-functions/recv.texi: Update mingw problems.
7365         * doc/posix-functions/recvfrom.texi: Update mingw problems.
7366         * doc/posix-functions/select.texi: Update mingw problems.
7367         * doc/posix-functions/send.texi: Update mingw problems.
7368         * doc/posix-functions/sendto.texi: Update mingw problems.
7369         * doc/posix-functions/setsockopt.texi: Update mingw problems.
7370         * doc/posix-functions/socket.texi: Update mingw problems.
7371
7372 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
7373             Bruno Haible  <bruno@clisp.org>
7374
7375         * lib/sys_select.in.h: Include sys/time.h.
7376         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
7377         * modules/sys_select: Depend on sys_time.
7378         * tests/test-sys_select.c: Test that sys/select.h defines struct
7379         timeval fully.
7380
7381 2008-09-29  Bruno Haible  <bruno@clisp.org>
7382
7383         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
7384         * lib/sys_select.in.h: Likewise.
7385
7386 2008-09-29  Bruno Haible  <bruno@clisp.org>
7387
7388         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
7389
7390 2008-09-29  Bruno Haible  <bruno@clisp.org>
7391
7392         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
7393         Set LIBSOCKET instead of augmenting LIBS.
7394         * modules/sockets (Link): New section.
7395         * modules/sockets-tests (test_sockets_LDADD): New variable.
7396         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
7397         * modules/poll-tests (test_poll_LDADD): New variable.
7398         * NEWS: Document the change.
7399
7400 2008-09-29  Bruno Haible  <bruno@clisp.org>
7401
7402         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
7403         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
7404         ARPA_INET_H directly.
7405         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
7406
7407 2008-09-28  Bruno Haible  <bruno@clisp.org>
7408
7409         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
7410         from gl_HEADER_SYS_SOCKET.
7411         (gl_HEADER_SYS_SOCKET): Invoke it.
7412         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
7413
7414 2008-09-28  Bruno Haible  <bruno@clisp.org>
7415
7416         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
7417         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
7418         Needed on OSF/1 4.0.
7419
7420 2008-09-28  Bruno Haible  <bruno@clisp.org>
7421
7422         Override open more carefully.
7423         * lib/open.c (orig_open): New function.
7424         (rpl_open): Use orig_open instead of open.
7425         * lib/fcntl.in.h: Add special invocation convention.
7426         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
7427         (gl_FUNC_OPEN): Invoke it.
7428
7429         Override freopen more carefully.
7430         * lib/freopen.c (orig_freopen): New function.
7431         (rpl_freopen): Use orig_freopen instead of freopen.
7432         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
7433         (gl_FUNC_FREOPEN): Invoke it.
7434
7435         Override fopen more carefully.
7436         * lib/fopen.c (orig_fopen): New function.
7437         (rpl_fopen): Use orig_fopen instead of fopen.
7438         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
7439         (gl_FUNC_FOPEN): Invoke it.
7440         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
7441
7442 2008-09-28  Bruno Haible  <bruno@clisp.org>
7443
7444         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
7445         SIGPIPE.
7446
7447 2008-09-28  Bruno Haible  <bruno@clisp.org>
7448
7449         * tests/test-sigaction.c (handler, main): Disable the check whether
7450         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
7451         glibc systems with LinuxThreads.
7452
7453 2008-09-28  Bruno Haible  <bruno@clisp.org>
7454
7455         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
7456
7457         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
7458         with AIX xlc.
7459         * lib/fcntl.in.h (open): Likewise.
7460         Reported by Rainer Tammer <tammer@tammer.net>.
7461
7462 2008-09-28  Bruno Haible  <bruno@clisp.org>
7463
7464         * modules/posix_spawnp-tests: New file.
7465         * tests/test-posix_spawn.c: New file.
7466         * tests/test-posix_spawn.in.sh: New file.
7467
7468         New module 'posix_spawnp'.
7469         * modules/posix_spawnp: New file.
7470         * lib/spawnp.c: New file, from GNU libc with modifications.
7471         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
7472
7473         New module 'posix_spawn'.
7474         * modules/posix_spawn: New file.
7475         * lib/spawn.c: New file, from GNU libc with modifications.
7476         * doc/posix-functions/posix_spawn.texi: Mention the new module.
7477
7478         New module 'posix_spawnattr_destroy'.
7479         * modules/posix_spawnattr_destroy: New file.
7480         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
7481         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
7482         module.
7483
7484         New module 'posix_spawnattr_setsigmask'.
7485         * modules/posix_spawnattr_setsigmask: New file.
7486         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
7487         modifications.
7488         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
7489         new module.
7490
7491         New module 'posix_spawnattr_getsigmask'.
7492         * modules/posix_spawnattr_getsigmask: New file.
7493         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
7494         modifications.
7495         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
7496         new module.
7497
7498         New module 'posix_spawnattr_setsigdefault'.
7499         * modules/posix_spawnattr_setsigdefault: New file.
7500         * lib/spawnattr_setdefault.c: New file, from GNU libc with
7501         modifications.
7502         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
7503         new module.
7504
7505         New module 'posix_spawnattr_getsigdefault'.
7506         * modules/posix_spawnattr_getsigdefault: New file.
7507         * lib/spawnattr_getdefault.c: New file, from GNU libc with
7508         modifications.
7509         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
7510         new module.
7511
7512         New module 'posix_spawnattr_setschedpolicy'.
7513         * modules/posix_spawnattr_setschedpolicy: New file.
7514         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
7515         modifications.
7516         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
7517         new module.
7518
7519         New module 'posix_spawnattr_getschedpolicy'.
7520         * modules/posix_spawnattr_getschedpolicy: New file.
7521         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
7522         modifications.
7523         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
7524         new module.
7525
7526         New module 'posix_spawnattr_setschedparam'.
7527         * modules/posix_spawnattr_setschedparam: New file.
7528         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
7529         modifications.
7530         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
7531         new module.
7532
7533         New module 'posix_spawnattr_getschedparam'.
7534         * modules/posix_spawnattr_getschedparam: New file.
7535         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
7536         modifications.
7537         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
7538         new module.
7539
7540         New module 'posix_spawnattr_setpgroup'.
7541         * modules/posix_spawnattr_setpgroup: New file.
7542         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
7543         modifications.
7544         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
7545         module.
7546
7547         New module 'posix_spawnattr_getpgroup'.
7548         * modules/posix_spawnattr_getpgroup: New file.
7549         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
7550         modifications.
7551         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
7552         module.
7553
7554         New module 'posix_spawnattr_setflags'.
7555         * modules/posix_spawnattr_setflags: New file.
7556         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
7557         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
7558         module.
7559
7560         New module 'posix_spawnattr_getflags'.
7561         * modules/posix_spawnattr_getflags: New file.
7562         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
7563         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
7564         module.
7565
7566         New module 'posix_spawnattr_init'.
7567         * modules/posix_spawnattr_init: New file.
7568         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
7569         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
7570         module.
7571
7572         New module 'posix_spawn_file_actions_destroy'.
7573         * modules/posix_spawn_file_actions_destroy: New file.
7574         * lib/spawn_faction_destroy.c: New file, from GNU libc with
7575         modifications.
7576         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
7577         the new module.
7578
7579         New module 'posix_spawn_file_actions_addopen'.
7580         * modules/posix_spawn_file_actions_addopen: New file.
7581         * lib/spawn_faction_addopen.c: New file, from GNU libc with
7582         modifications.
7583         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
7584         the new module.
7585
7586         New module 'posix_spawn_file_actions_adddup2'.
7587         * modules/posix_spawn_file_actions_adddup2: New file.
7588         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
7589         modifications.
7590         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
7591         the new module.
7592
7593         New module 'posix_spawn_file_actions_addclose'.
7594         * modules/posix_spawn_file_actions_addclose: New file.
7595         * lib/spawn_faction_addclose.c: New file, from GNU libc with
7596         modifications.
7597         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
7598         the new module.
7599
7600         New module 'posix_spawn_file_actions_init'.
7601         * modules/posix_spawn_file_actions_init: New file.
7602         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
7603         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
7604         new module.
7605
7606         New module 'posix_spawn-internal'.
7607         * modules/posix_spawn-internal: New file.
7608         * lib/spawn_int.h: New file, from GNU libc with modifications.
7609         * lib/spawni.c: New file, from GNU libc with modifications.
7610         * m4/posix_spawn.m4: New file.
7611
7612         New module 'spawn'.
7613         * modules/spawn: New file.
7614         * lib/spawn.in.h: New file, from GNU libc with modifications.
7615         * m4/spawn_h.m4: New file.
7616         * doc/posix-headers/spawn.texi: Mention the new module.
7617
7618 2008-09-28  Bruno Haible  <bruno@clisp.org>
7619
7620         * modules/sched-tests: New file.
7621         * tests/test-sched.c: New file.
7622
7623         New module 'sched'.
7624         * modules/sched: New file.
7625         * lib/sched.in.h: New file.
7626         * m4/sched_h.m4: New file.
7627         * doc/posix-headers/sched.texi: Mention the new module.
7628
7629 2008-09-27  Eric Blake  <ebb9@byu.net>
7630
7631         Fix previous patch, and tweak references to $0.
7632         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
7633         (func_version, func_gnulib_dir): Don't call this program
7634         gnulib-tool.
7635         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
7636         with using $0 in function.
7637         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
7638         (func_fatal_error): Reuse the name the user invoked us with.
7639
7640 2008-09-27  Bruno Haible  <bruno@clisp.org>
7641
7642         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
7643         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
7644         (gl_ICONV_H): Not here.
7645         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
7646         instead of assigning ICONV_H directly.
7647
7648         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
7649         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
7650         WCHAR_H directly.
7651
7652 2008-09-27  Bruno Haible  <bruno@clisp.org>
7653
7654         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
7655         * modules/arpa_inet (Depends-on): Add link-warning.
7656         (Makefile.am): Insert the definition of GL_LINK-WARNING.
7657         * modules/unistd (Makefile.am): Likewise.
7658
7659 2008-09-26  Bruno Haible  <bruno@clisp.org>
7660
7661         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
7662         variables.
7663         (func_version): Essentially copied from gnulib-tool.
7664         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
7665         func_readlink): Copied from gnulib-tool.
7666
7667 2008-09-26  Bruno Haible  <bruno@clisp.org>
7668
7669         * gnulib-tool (func_version): Change directory to $gnulib_dir before
7670         invoking git-version-gen.
7671
7672 2008-09-26  Bruno Haible  <bruno@clisp.org>
7673
7674         * posix-modules: Update to directory names changed on 2008-01-19.
7675         Remove commas in output before splitting into words. No more need to
7676         avoid 'ftruncate' since 2007-02-19.
7677
7678 2008-09-26  Bruno Haible  <bruno@clisp.org>
7679
7680         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
7681
7682 2008-09-26  Bruno Haible  <bruno@clisp.org>
7683
7684         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
7685         * modules/fwriteerror (Depends-on): Add errno.
7686
7687 2008-09-26  Bruno Haible  <bruno@clisp.org>
7688
7689         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
7690         * tests/test-vc-list-files-cvs.sh: Likewise.
7691
7692 2008-09-26  Bruno Haible  <bruno@clisp.org>
7693
7694         * doc/posix-headers/sys_resource.texi: Reorder items.
7695
7696 2008-09-26  Jim Meyering  <meyering@redhat.com>
7697
7698         fts: tweak inode comparison function
7699         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
7700         inode numbers, as documented.
7701
7702         fts: sort dirent entries on inode number before traversing
7703         This avoids a quadratic, seek-related performance penalty when
7704         operating on a directory containing many entries (measurable at 10k;
7705         3.5 hours at 2 million entries with a cold cache) on certain types
7706         of file systems, including ext3 and ext4, but not tmpfs.
7707         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
7708         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
7709         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
7710         (fs_handles_readdir_ordered_dirents_efficiently): New function.
7711         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
7712         (fts_build): Set the stat.st_ino member from D_INO.
7713         If it is likely to be useful, sort dirent entries on inode number.
7714
7715         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
7716         and the struct statfs.f_type member.
7717         * modules/fts (Depends-on): Add d-ino.
7718
7719 2008-09-26  Bruno Haible  <bruno@clisp.org>
7720
7721         * modules/sigpipe-die (Depends-on): Add sigpipe.
7722
7723         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
7724         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
7725         and GNULIB_STDIO_H_SIGPIPE are set.
7726         * lib/stdio-write.c: New file.
7727         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
7728         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
7729         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
7730         REPLACE_STDIO_WRITE_FUNCS.
7731         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
7732         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
7733         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
7734         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
7735         * modules/stdio (Files): Add lib/stdio-write.c.
7736         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
7737         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
7738         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
7739         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
7740         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
7741         REPLACE_FPRINTF_POSIX.
7742         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
7743         REPLACE_PRINTF_POSIX.
7744         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
7745         REPLACE_VFPRINTF_POSIX.
7746         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
7747         REPLACE_VPRINTF_POSIX.
7748         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
7749         SIGPIPE issue.
7750         * doc/posix-functions/fputc.texi: Likewise.
7751         * doc/posix-functions/fputs.texi: Likewise.
7752         * doc/posix-functions/fwrite.texi: Likewise.
7753         * doc/posix-functions/printf.texi: Likewise.
7754         * doc/posix-functions/putc.texi: Likewise.
7755         * doc/posix-functions/putchar.texi: Likewise.
7756         * doc/posix-functions/puts.texi: Likewise.
7757         * doc/posix-functions/vfprintf.texi: Likewise.
7758         * doc/posix-functions/vprintf.texi: Likewise.
7759
7760         * modules/safe-write (Depends-on): Add write.
7761
7762         * modules/sigpipe-tests: New file.
7763         * tests/test-sigpipe.c: New file.
7764         * tests/test-sigpipe.sh: New file.
7765
7766         * modules/write: New file.
7767         * lib/unistd.in.h: Include <sys/types.h>.
7768         (write): New declaration.
7769         * lib/write.c: New file.
7770         * m4/write.m4: New file.
7771         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
7772         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
7773         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
7774         GNULIB_WRITE, REPLACE_WRITE.
7775         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
7776         and the SIGPIPE issue.
7777
7778         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
7779         (raise): New declaration.
7780         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
7781         (ext_signal): New function.
7782         (rpl_raise): New function.
7783         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
7784         GNULIB_SIGNAL_H_SIGPIPE.
7785         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
7786         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
7787
7788         * modules/sigpipe: New file.
7789         * m4/sigpipe.m4: New file.
7790
7791 2008-09-25  Derek Price  <derek@ximbiot.com>
7792             Bruno Haible  <bruno@clisp.org>
7793
7794         * gnulib-tool (func_import): Report all license incompatibilities, not
7795         just the first one.
7796
7797 2008-09-25  Bruno Haible  <bruno@clisp.org>
7798
7799         * gnulib-tool (func_import): When computing the edits, consider not
7800         only the Makefile.ams that exist but also those that will be generated.
7801
7802 2008-09-25  Simon Josefsson  <simon@josefsson.org>
7803
7804         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
7805         fixes gnulib-tool --test warning about duplicate dependency.
7806
7807 2008-09-25  Bruno Haible  <bruno@clisp.org>
7808
7809         * gnulib-tool: Don't ask the user to perform edits in the generated
7810         Makefile.ams.
7811         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
7812         apply to the Makefile.am being generated.
7813         (func_emit_tests_Makefile_am): Execute edits that apply to the
7814         Makefile.am being generated.
7815         (func_import): Setup list of Makefile.am edits before emitting the
7816         Makefile.ams, not at the end.
7817         (func_create_testdir): Update.
7818         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
7819
7820 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7821
7822         * gnulib-tool (func_import): Store the --tests-base option in the
7823         comment in gnulib-cache.m4.
7824
7825 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
7826
7827         * NEWS: Document increased portability that sys_select now provides.
7828
7829         * lib/sys_select.in.h: Install select wrapper.
7830         * lib/sys_socket.in.h: Use more descriptive name when there is no
7831         select wrapper.
7832         * lib/winsock-select.c: New.
7833         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
7834         Require gl_HEADER_SYS_SOCKET.
7835         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
7836         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
7837         * tests/test-sys_select.c: Add functional tests.
7838
7839 2008-09-24  Eric Blake  <ebb9@byu.net>
7840
7841         open, fopen: close fd leak in last patch
7842         * lib/open.c (rpl_open): Close fd before returning error.
7843         * lib/fopen.c (rpl_fopen): Close fd before returning error.
7844         * doc/posix-functions/open.texi (open): Document that Irix also
7845         has the bug.
7846         * doc/posix-functions/fopen.texi (fopen): Likewise.
7847         Reported by Paolo Bonzini.
7848
7849 2008-09-24  Bruno Haible  <bruno@clisp.org>
7850
7851         Ensure that a filename ending in a slash cannot be used to access a
7852         non-directory.
7853         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
7854         to check whether it's really a directory.
7855         * lib/fopen.c: Include fcntl.h, unistd.h.
7856         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
7857         and fdopen().
7858         * modules/fopen (Depends-on): Add unistd.
7859         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
7860         * tests/test-fopen.c (main): Likewise.
7861         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
7862         * doc/posix-functions/fopen.texi: Likewise.
7863         Reported by Eric Blake.
7864
7865 2008-09-23  Eric Blake  <ebb9@byu.net>
7866
7867         c-stack: avoid compiler optimizations when provoking overflow
7868         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
7869         recursion harder to optimize, to ensure a stack overflow occurs.
7870         * tests/test-c-stack.c (recurse): Likewise.
7871         Borrowed from libsigsegv.
7872
7873         c-stack: work around Irix sigaltstack bug
7874         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
7875         whether sigaltstack uses wrong end of stack_t (copied in part from
7876         libsigsegv).
7877         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
7878         Irix bug, without requiring an over-allocation.
7879         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
7880         bug.
7881
7882         fopen: document mingw bug on directories
7883         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
7884         not allowing a stream visiting a directory, even though reading
7885         from such a stream is not portable.
7886
7887 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
7888
7889         * lib/poll.c: Rewrite.
7890         * modules/poll: Depend on alloca.
7891
7892 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
7893
7894         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
7895         instead define prototypes for a full set of wrappers.  Ensure
7896         that Cygwin does not use the compatibility code, which is only
7897         for MinGW.
7898         * lib/winsock.c: New.
7899         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
7900         * modules/sys_socket: Add lib/winsock.c.
7901
7902         * modules/poll-tests: Add errno and perror.
7903         * tests/test-poll.c: Use ioctl, not ioctlsocket.
7904
7905 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
7906
7907         * tests/test-poll.c: Downgrade minimum needed Winsock version.
7908
7909 2008-09-23  Bruno Haible  <bruno@clisp.org>
7910
7911         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
7912         * doc/glibc-functions/*: Likewise.
7913
7914 2008-09-23  Simon Josefsson  <simon@josefsson.org>
7915
7916         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
7917         success.
7918
7919 2008-09-22  Eric Blake  <ebb9@byu.net>
7920             Bruno Haible  <bruno@clisp.org>
7921
7922         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
7923         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
7924         supply %A but mishandle pseudo-NaN.
7925         Reported by Simon Josefsson.
7926
7927 2008-09-21  Bruno Haible  <bruno@clisp.org>
7928
7929         * tests/test-lock.c (main): Tweak skip message.
7930         * tests/test-tls.c (main): Likewise.
7931
7932 2008-09-21  Bruno Haible  <bruno@clisp.org>
7933
7934         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
7935         whether 'struct sigaction' has sa_sigaction here...
7936         (gl_PREREQ_SIG_HANDLER_H): ... not here.
7937         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
7938
7939 2008-09-21  Bruno Haible  <bruno@clisp.org>
7940
7941         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
7942         section.
7943         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
7944         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
7945         the new section.
7946         (Support for obsolete systems lacking POSIX:2001): New section.
7947         (String handling <string.h>): Move strdup to the new section.
7948         Suggested by Simon Josefsson and Paolo Bonzini.
7949
7950 2008-09-21  Bruno Haible  <bruno@clisp.org>
7951
7952         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
7953         exponents in %e and %g results on 'long double'. Needed for mingw's
7954         improved *printf functions.
7955         * tests/test-vasprintf-posix.c (test_function): Likewise.
7956         * tests/test-snprintf-posix.h (test_function): Likewise.
7957         * tests/test-sprintf-posix.h (test_function): Likewise.
7958         Reported by Eric Blake.
7959
7960 2008-09-21  Bruno Haible  <bruno@clisp.org>
7961
7962         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
7963         * tests/test-sprintf-posix.h (test_function): Likewise.
7964
7965 2008-09-21  Bruno Haible  <bruno@clisp.org>
7966
7967         * modules/getpass (Depends-on): Add strdup-posix.
7968
7969         New module 'strdup-posix'.
7970         * modules/strdup-posix: New file.
7971         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
7972         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
7973         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
7974         REPLACE_STRDUP.
7975         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
7976         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
7977         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
7978         strdup-posix.
7979
7980         * modules/strdup (Depends-on): Remove malloc-posix.
7981
7982 2008-09-20  Bruno Haible  <bruno@clisp.org>
7983
7984         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
7985         Wildenhues.
7986
7987 2008-09-20  Bruno Haible  <bruno@clisp.org>
7988
7989         Ensure that wint_t gets defined on IRIX 5.3.
7990         * lib/wchar.in.h (wint_t): Define if not defined by the system.
7991         * lib/wctype.in.h (wint_t): Likewise.
7992         (__wctype_wint_t): Remove type.
7993         (isw*): Use wint_t instead of __wctype_wint_t.
7994         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
7995         * modules/wchar (Files): Add m4/wint_t.m4.
7996         (Makefile.am): Substitute HAVE_WINT_T.
7997         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
7998         * tests/test-wctype.c: Check that wint_t is defined.
7999         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
8000         * doc/posix-headers/wctype.texi: Likewise.
8001         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8002
8003 2008-09-18  Bruno Haible  <bruno@clisp.org>
8004
8005         * gnulib-tool (func_exit): Update comment.
8006
8007 2008-09-18  Simon Josefsson  <simon@josefsson.org>
8008
8009         * modules/getaddrinfo (Depends-on): Remove strdup, this module
8010         assumes strdup exists and does not depend on strdup to return
8011         ENOMEM on out of memory conditions.
8012
8013 2008-09-18  Bruno Haible  <bruno@clisp.org>
8014
8015         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
8016         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
8017         digits for the exponent.
8018
8019 2008-09-18  Jim Meyering  <meyering@redhat.com>
8020             Bruno Haible  <bruno@clisp.org>
8021
8022         * lib/vasnprintf.c (decimal_point_char): Define also if
8023         NEED_PRINTF_INFINITE_LONG_DOUBLE.
8024
8025 2008-09-16  Bruno Haible  <bruno@clisp.org>
8026         and Eric Blake  <ebb9@byu.net>
8027
8028         vasnprintf: support Irix 5.3
8029         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
8030         that mishandle long double infinity.
8031         Reported by Tom G. Christensen.
8032
8033 2008-09-16  Bruno Haible  <bruno@clisp.org>
8034
8035         * doc/glibc-functions/scandir.texi: Mention the function is missing on
8036         Solaris 9.
8037         * doc/glibc-functions/alphasort.texi: Likewise.
8038         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
8039
8040 2008-09-16  Jim Meyering  <meyering@redhat.com>
8041
8042         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
8043         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
8044         a umask modification leak out of a subshell.  Otherwise, the
8045         opensolaris /bin/sh would be accepted and thus cause unwarranted
8046         failures in the coreutils test suite.
8047
8048 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
8049
8050         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
8051         to succeed.
8052
8053 2008-09-16  Jim Meyering  <meyering@redhat.com>
8054
8055         avoid spurious test failure when library is built without ACL support
8056         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
8057         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
8058         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
8059         * tests/test-copy-acl.sh: Likewise.
8060
8061 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8062
8063         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
8064         based on character occurrence counts.
8065
8066 2008-09-15  Eric Blake  <ebb9@byu.net>
8067
8068         tests: avoid some compiler warnings
8069         * tests/test-memchr.c (main): Pass NULL indirectly.
8070         * tests/test-closein.c (main): Avoid unused variable.
8071
8072 2008-09-15  Bruno Haible  <bruno@clisp.org>
8073
8074         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
8075         are missing on OpenBSD 4.0 individually.
8076         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
8077
8078 2008-09-15  Bruno Haible  <bruno@clisp.org>
8079
8080         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
8081         * doc/posix-functions/strerror.texi: Mention also Cygwin.
8082         * doc/posix-functions/perror.texi: Likewise.
8083         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
8084         is missing.
8085         Reported by Eric Blake.
8086
8087         * lib/errno.in.h: Use replacement values >= 2000.
8088         Reported by Eric Blake.
8089
8090 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8091
8092         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
8093         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
8094         limit.
8095         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
8096         compareseq was aborted.
8097
8098 2008-09-14  Bruno Haible  <bruno@clisp.org>
8099
8100         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
8101         yvec_edit_count.
8102         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
8103         (fstrcmp_bounded): Simplify result computation accordingly.
8104
8105 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8106
8107         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
8108         (fstrcmp): Define in terms of fstrcmp_bounded.
8109         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
8110         lower_bound argument.
8111         Return quickly if the result is certainly < lower_bound.
8112         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
8113
8114 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8115
8116         * lib/diffseq.h (EARLY_ABORT): New macro.
8117         (compareseq): Change return type to bool. Return true when EARLY_ABORT
8118         evaluates to true.
8119
8120 2008-09-14  Bruno Haible  <bruno@clisp.org>
8121
8122         * modules/perror-tests: New file.
8123         * tests/test-perror.sh: New file.
8124         * tests/test-perror.c: New file.
8125
8126         New module 'perror'.
8127         * lib/stdio.in.h (perror): New declaration.
8128         * lib/perror.c: New file.
8129         * m4/perror.m4: New file.
8130         * modules/perror: New file.
8131         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
8132         * doc/posix-functions/perror.texi: Mention the perror module.
8133         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
8134         REPLACE_PERROR.
8135         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
8136         REPLACE_PERROR.
8137
8138 2008-09-14  Bruno Haible  <bruno@clisp.org>
8139
8140         * modules/stdio (Makefile.am): Reorder to match the order in
8141         lib/stdio.in.h.
8142         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
8143
8144 2008-09-13  Bruno Haible  <bruno@clisp.org>
8145
8146         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
8147
8148 2008-09-13  Bruno Haible  <bruno@clisp.org>
8149
8150         Extend strerror to cover the added errno values.
8151         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
8152         (rpl_strerror): Provide error messages for the added errno values and
8153         for the WSA* values.
8154         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
8155         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
8156         strerror.
8157         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
8158         * modules/strerror (Depends-on): Add errno.
8159         * doc/posix-functions/strerror.texi: Document the change.
8160         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
8161         and EOVERFLOW.
8162
8163 2008-09-13  Bruno Haible  <bruno@clisp.org>
8164
8165         * modules/EOVERFLOW: Remove file.
8166         * m4/eoverflow.m4: Remove file.
8167         * modules/EOVERFLOW-tests: Remove file.
8168         * tests/test-EOVERFLOW.c: Remove file.
8169         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
8170         * modules/ftell (Depends-on): Likewise.
8171         * modules/getdelim (Depends-on): Likewise.
8172         * modules/getugroups (Depends-on): Likewise.
8173         * modules/poll (Depends-on): Likewise.
8174         * modules/snprintf (Depends-on): Likewise.
8175         * modules/sprintf-posix (Depends-on): Likewise.
8176         * modules/vasnprintf (Depends-on): Likewise.
8177         * modules/vasprintf (Depends-on): Likewise.
8178         * modules/vfprintf-posix (Depends-on): Likewise.
8179         * modules/vsnprintf (Depends-on): Likewise.
8180         * modules/vsprintf-posix (Depends-on): Likewise.
8181         * modules/xvasprintf (Depends-on): Likewise.
8182         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
8183         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
8184         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
8185         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
8186         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
8187         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
8188         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
8189         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
8190         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
8191         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
8192         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
8193         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
8194         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
8195         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
8196         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
8197         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
8198         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
8199         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
8200         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
8201         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
8202         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
8203         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
8204         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
8205         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
8206         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
8207         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
8208         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
8209         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
8210         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
8211         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
8212         * MODULES.html.sh: Remove EOVERFLOW.
8213         * NEWS: Mention the change.
8214
8215 2008-09-13  Bruno Haible  <bruno@clisp.org>
8216
8217         * modules/errno-tests: New file.
8218         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
8219
8220         * lib/errno.in.h: New file.
8221         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
8222         * modules/errno: New file.
8223         * doc/posix-headers/errno.texi: Update documentation.
8224         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
8225
8226 2008-09-13  Bruno Haible  <bruno@clisp.org>
8227
8228         * tests/test-poll.c: Use #if for native Windows, rather than testing
8229         __MSVCRT__.
8230
8231 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8232             Bruno Haible  <bruno@clisp.org>
8233
8234         * lib/glob.c: Don't include <pwd.h> on native Windows.
8235         (WINDOWS32): New macro.
8236         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
8237
8238 2008-09-13  Bruno Haible  <bruno@clisp.org>
8239
8240         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
8241         (ETIMEDOUT): Remove macro.
8242         (glthread_cond_timedwait_multithreaded): New declaration.
8243         (glthread_cond_timedwait): Use it.
8244         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
8245         (glthread_cond_timedwait_multithreaded): New function.
8246
8247 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
8248
8249         * modules/poll-tests: Do not check for io.h.
8250         * tests/test-poll.c: Check for __MSVCRT__ instead.
8251
8252 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
8253
8254         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
8255         * modules/poll-tests: Add inet_pton, stdbool, sockets.
8256         * tests/test-poll.c: Use them.  Use _pipe on Windows.
8257
8258 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
8259
8260         * modules/poll-tests: New.
8261         * tests/test-poll.c: New.
8262
8263 2008-09-12  Eric Blake  <ebb9@byu.net>
8264
8265         frexp: test for NetBSD failure on -0.0
8266         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
8267         not all, bugs from NetBSD 3.0 have been fixed.
8268         * doc/posix-functions/frexp.texi (frexp): Document bug.
8269         Reported by Thomas Klausner.
8270
8271         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
8272         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
8273         literal -0.0.
8274         Reported by Jonathan C. Patschke <jp@centtech.com>.
8275
8276 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8277
8278         * lib/glthread/cond.h: Use dummy implementation also if
8279         USE_WIN32_THREADS.
8280
8281 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8282
8283         * modules/fnmatch-posix (License): Change to LGPLv2+.
8284         * modules/fnmatch-gnu (License): Likewise.
8285
8286 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8287
8288         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
8289
8290 2008-09-11  Jim Meyering  <meyering@redhat.com>
8291
8292         * users.txt: Add gtk-vnc.
8293
8294 2008-09-08  Simon Josefsson  <simon@josefsson.org>
8295
8296         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
8297         rotate amounts.
8298
8299         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
8300         required for 16-bit and 8-bit rotates.
8301         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
8302         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
8303         UINT8_MAX instead of hard-coded constants.
8304         Suggested by Paul Eggert.
8305
8306 2008-09-07  Bruno Haible  <bruno@clisp.org>
8307
8308         * tests/test-striconveh.c (main): Check behaviour when converting from
8309         UTF-7.
8310
8311         Make striconveh work better with stateful encodings.
8312         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
8313         that iconv does not increment the inptr when returning -1/EINVAL.
8314
8315 2008-09-07  Bruno Haible  <bruno@clisp.org>
8316
8317         * build-aux/config.rpath: Update according to libtool-2.2.6.
8318         * build-aux/config.libpath: Likewise.
8319
8320 2008-09-06  Bruno Haible  <bruno@clisp.org>
8321
8322         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
8323         * lib/freadptr.c (freadptr): Likewise.
8324         * lib/freadseek.c (freadptrinc): Likewise.
8325         Reported by Simon Josefsson.
8326
8327 2008-09-06  Bruno Haible  <bruno@clisp.org>
8328
8329         * modules/freadptr (License): Change to LGPLv2+.
8330         * modules/freadseek (License): Likewise.
8331         Suggested by Eric Blake.
8332
8333         * modules/memchr2 (License): Change to LGPLv2+.
8334         Approved by Eric Blake.
8335
8336 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8337             Bruno Haible  <bruno@clisp.org>
8338
8339         Make gnulib-tool work with native 'sed' on AIX.
8340         * gnulib-tool (sed_noop): New variable.
8341         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
8342         func_add_or_update, func_create_testdir): Use it to initialize sed
8343         script variables.
8344         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
8345
8346 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
8347             Bruno Haible  <bruno@clisp.org>
8348
8349         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
8350         also works after #include directives.
8351
8352 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
8353
8354         getdate.y: reject an out-of-range timezone value
8355         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
8356         the range [-24...+24].  When specified with only one or two digits,
8357         * tests/test-getdate.c: Tests for the fix.
8358         * doc/getdate.texi: Document this change.
8359
8360 2008-09-03  Bruno Haible  <bruno@clisp.org>
8361
8362         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
8363
8364 2008-09-02  Simon Josefsson  <simon@josefsson.org>
8365
8366         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
8367         <bruce.korb@gmail.com> with ideas from Ben Pfaff
8368         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
8369         Blake <ebb9@byu.net>.
8370
8371         * tests/test-bitrotate.c: Add more test vectors.
8372
8373 2008-09-02  Eric Blake  <ebb9@byu.net>
8374
8375         vasnprintf-posix: handle large precision via %.*d
8376         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
8377         when handling it ourselves.
8378         * tests/test-vasnprintf-posix.c (test_function): Add test.
8379         * tests/test-snprintf-posix.h (test_function): Likewise.
8380         * tests/test-sprintf-posix.h (test_function): Likewise.
8381         * tests/test-vasprintf-posix.c (test_function): Likewise.
8382         Reported by Alain Guibert.
8383
8384 2008-09-01  Eric Blake  <ebb9@byu.net>
8385
8386         c-stack: make configure-time check more robust
8387         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
8388         successful sigaction call.
8389         Reported by Tom G. Christensen.
8390
8391 2008-09-01  Bruno Haible  <bruno@clisp.org>
8392
8393         New module 'findprog-lgpl'.
8394         * modules/findprog-lgpl: New file.
8395         * lib/findprog-lgpl.c: New file.
8396         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
8397         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
8398         to decide whether to use strdup or xstrdup, concatenated_filename or
8399         xconcatenated_filename.
8400
8401 2008-09-01  Bruno Haible  <bruno@clisp.org>
8402
8403         Split module 'concat-filename' into 'concat-filename' (LGPL) and
8404         'xconcat-filename' (GPL).
8405         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
8406         (License): Change to LGPLv2+.
8407         * modules/xconcat-filename: New file.
8408         * lib/concat-filename.h (concatenated_filename): Change specification.
8409         (xconcatenated_filename): New declaration.
8410         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
8411         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
8412         memory situations.
8413         * lib/xconcat-filename.c: New file.
8414         * NEWS: Mention the change.
8415         * lib/findprog.c: Include concat-filename.h, not filename.h.
8416         (find_in_path): Use xconcatenated_filename instead of
8417         concatenated_filename.
8418         * lib/javacomp.c: Include concat-filename.h, not filename.h.
8419         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
8420         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
8421         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
8422         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
8423         instead of concatenated_filename.
8424         * lib/javaexec.c: Include concat-filename.h, not filename.h.
8425         (execute_java_class): Use xconcatenated_filename instead of
8426         concatenated_filename.
8427         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
8428         * modules/javacomp (Depends-on): Likewise.
8429         * modules/javaexec (Depends-on): Likewise.
8430
8431 2008-09-01  Bruno Haible  <bruno@clisp.org>
8432
8433         Split module 'filename' into 'filename' and 'concat-filename'.
8434         * modules/filename: Keep only lib/filename.h.
8435         (License): Change to LGPLv2+.
8436         * modules/concat-filename: New file, extracted from modules/filename.
8437         * lib/filename.h (concatenated_filename): Remove declaration.
8438         * lib/concat-filename.h: New file, extracted from lib/filename.h.
8439         * lib/concat-filename.c: Include concat-filename.h.
8440         * NEWS: Mention the change.
8441
8442 2008-09-01  Simon Josefsson  <simon@josefsson.org>
8443
8444         * lib/bitrotate.h (rotl8, rotr8): Add.
8445
8446         * modules/bitrotate (configure.ac): Need
8447         AC_REQUIRE([AC_C_INLINE]).
8448         (Description): Mention stdint.h.  Reported by Bruno Haible
8449         <bruno@clisp.org>.
8450
8451         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
8452         Paolo Bonzini <bonzini@gnu.org>.
8453
8454 2008-08-31  Bruno Haible  <bruno@clisp.org>
8455
8456         Assume Solaris specific bi-arch conventions on Solaris systems.
8457         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
8458         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
8459         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
8460         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
8461         like acl_libdirstem.
8462         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
8463         acl_libdirstem.
8464         * NEWS: Mention the change.
8465         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
8466
8467 2008-08-31  Jim Meyering  <meyering@redhat.com>
8468
8469         * lib/strftime.h: Add comments describing the two added arguments.
8470
8471         remove duplicate #include directives
8472         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
8473         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
8474
8475 2008-08-31  Bruno Haible  <bruno@clisp.org>
8476
8477         New module 'sigpipe-die'.
8478         * modules/sigpipe-die: New file.
8479         * lib/sigpipe-die.h: New file.
8480         * lib/sigpipe-die.c: New file.
8481         * MODULES.html.sh (Signal handling): Add sigpipe-die.
8482
8483 2008-08-31  Bruno Haible  <bruno@clisp.org>
8484
8485         Don't override previously installed signal handlers.
8486         * lib/fatal-signal.c (saved_sigactions): New variable.
8487         (uninstall_handlers): Reset the signal to the saved handler, not
8488         to SIG_DFL (except when ignored).
8489         (install_handlers): Save the previous handlers.
8490
8491 2008-08-30  Bruno Haible  <bruno@clisp.org>
8492
8493         * gnulib-tool (func_reset_sigpipe): New function.
8494         (func_get_automake_snippet, func_modules_transitive_closure,
8495         func_import): Invoke it before a join command that reads from stdin,
8496         to avoid "echo: write error: Broken pipe" error messages on stderr.
8497         Reported by Sam Steingold <sds@gnu.org>.
8498
8499 2008-08-30  Bruno Haible  <bruno@clisp.org>
8500
8501         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
8502         Code copied from m4/open.m4.
8503         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
8504         access and the filename ends in a slash. Code copied from lib/open.c.
8505         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
8506         * tests/test-fopen.c (main): Check against bug with trailing slash.
8507
8508 2008-08-29  Bruno Haible  <bruno@clisp.org>
8509
8510         Avoid some "gcc -pedantic" warnings.
8511         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
8512         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
8513         * lib/dirent.in.h: Likewise.
8514         * lib/fcntl.in.h: Likewise.
8515         * lib/float.in.h: Likewise.
8516         * lib/iconv.in.h: Likewise.
8517         * lib/inttypes.in.h: Likewise.
8518         * lib/locale.in.h: Likewise.
8519         * lib/math.in.h: Likewise.
8520         * lib/netinet_in.in.h: Likewise.
8521         * lib/search.in.h: Likewise.
8522         * lib/signal.in.h: Likewise.
8523         * lib/stdarg.in.h: Likewise.
8524         * lib/stdint.in.h: Likewise.
8525         * lib/stdio.in.h: Likewise.
8526         * lib/stdlib.in.h: Likewise.
8527         * lib/string.in.h: Likewise.
8528         * lib/strings.in.h: Likewise.
8529         * lib/sys_select.in.h: Likewise.
8530         * lib/sys_socket.in.h: Likewise.
8531         * lib/sys_stat.in.h: Likewise.
8532         * lib/sys_time.in.h: Likewise.
8533         * lib/sysexits.in.h: Likewise.
8534         * lib/time.in.h: Likewise.
8535         * lib/unistd.in.h: Likewise.
8536         * lib/wchar.in.h: Likewise.
8537         * lib/wctype.in.h: Likewise.
8538         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
8539         * modules/fchdir (Makefile.am): Likewise.
8540         * modules/fcntl (Makefile.am): Likewise.
8541         * modules/float (Makefile.am): Likewise.
8542         * modules/iconv_open (Makefile.am): Likewise.
8543         * modules/inttypes (Makefile.am): Likewise.
8544         * modules/locale (Makefile.am): Likewise.
8545         * modules/math (Makefile.am): Likewise.
8546         * modules/netinet_in (Makefile.am): Likewise.
8547         * modules/search (Makefile.am): Likewise.
8548         * modules/signal (Makefile.am): Likewise.
8549         * modules/stdarg (Makefile.am): Likewise.
8550         * modules/stdint (Makefile.am): Likewise.
8551         * modules/stdio (Makefile.am): Likewise.
8552         * modules/stdlib (Makefile.am): Likewise.
8553         * modules/string (Makefile.am): Likewise.
8554         * modules/strings (Makefile.am): Likewise.
8555         * modules/sys_select (Makefile.am): Likewise.
8556         * modules/sys_socket (Makefile.am): Likewise.
8557         * modules/sys_stat (Makefile.am): Likewise.
8558         * modules/sys_time (Makefile.am): Likewise.
8559         * modules/sysexits (Makefile.am): Likewise.
8560         * modules/time (Makefile.am): Likewise.
8561         * modules/unistd (Makefile.am): Likewise.
8562         * modules/wchar (Makefile.am): Likewise.
8563         * modules/wctype (Makefile.am): Likewise.
8564         Reported by Reuben Thomas <rrt@sc3d.org>.
8565
8566 2008-08-29  Bruno Haible  <bruno@clisp.org>
8567
8568         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
8569         any more.
8570
8571 2008-08-29  Simon Josefsson  <simon@josefsson.org>
8572
8573         * MODULES.html.sh (Misc): Add bitrotate.
8574
8575         * modules/bitrotate: New file.
8576
8577         * lib/bitrotate.h: New file.
8578
8579         * modules/bitrotate-tests: New file.
8580
8581         * tests/test-bitrotate.c: New file.
8582
8583         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
8584         on the bitrotate module.
8585
8586         * lib/arctwo.c: Use new bitrotate module.
8587
8588 2008-08-29  Jim Meyering  <meyering@redhat.com>
8589
8590         bootstrap: merge changes from coreutils
8591         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
8592         of copied files.  Remove a kludge, now that this is fixed.
8593         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
8594         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
8595         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
8596
8597 2008-08-29  Bruno Haible  <bruno@clisp.org>
8598
8599         * MODULES.html.sh: Remove --cvs-urls option.
8600
8601 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
8602
8603         maint.mk: adjust to file name change
8604         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
8605
8606 2008-08-28  Jim Meyering  <meyering@redhat.com>
8607
8608         * modules/getndelim2 (License): Relicense to LGPLv2+.
8609         Approved by Richard Stallman for the version of 1995, and by
8610         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
8611
8612 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
8613
8614         * lib/getdelim.c (flockfile, funlockfile): Make all of them
8615         dummy if one is not available.  Do not touch them if
8616         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
8617         (getc_maybe_unlocked): New.
8618         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
8619
8620 2008-08-26  Eric Blake  <ebb9@byu.net>
8621
8622         doc/INSTALL: resync from autoconf
8623         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
8624         (INSTALL_PRELUDE): Delete; this is done more efficiently by
8625         moving...
8626         * install.texi [!autoconf]: ...here.  Resync from autoconf.
8627         * INSTALL: Regenerate.
8628         * INSTALL.ISO: New file.
8629         * INSTALL.UTF-8: Likewise.
8630
8631 2008-08-26  Jim Meyering  <meyering@redhat.com>
8632
8633         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
8634         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
8635         these definitions conditional, so that they may be overridden, too.
8636
8637 2008-08-26  Bruno Haible  <bruno@clisp.org>
8638
8639         Generate INSTALL file variants with prettier quotes.
8640         * doc/Makefile (INSTALL_PRELUDE): New macro.
8641         (INSTALL): Use it.
8642         (INSTALL.ISO, INSTALL.UTF-8): New rules.
8643
8644 2008-08-26  Bruno Haible  <bruno@clisp.org>
8645
8646         Run makeinfo in an English locale.
8647         * doc/Makefile (MAKEINFO): New variable.
8648
8649 2008-08-26  Bruno Haible  <bruno@clisp.org>
8650
8651         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
8652         Suggested by Eric Blake.
8653
8654 2008-08-25  Bruno Haible  <bruno@clisp.org>
8655
8656         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
8657
8658 2008-08-25  Eric Blake  <ebb9@byu.net>
8659
8660         c-stack: test that stack overflow can be caught
8661         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
8662         that platform allows handling stack overflow; at least OS/2 EMX
8663         has sigaltstack, but crashes before transferring control to
8664         handler on stack overflow.
8665         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
8666         check for HAVE_STACK_OVERFLOW_HANDLING.
8667         Reported by Elbert Pol.
8668
8669 2008-08-25  Bruno Haible  <bruno@clisp.org>
8670
8671         * doc/posix-functions/strftime.texi: Fix description of strftime
8672         module.
8673
8674 2008-08-24  Bruno Haible  <bruno@clisp.org>
8675
8676         * tests/uniwidth/test-uc_width2.c: New file.
8677         * tests/uniwidth/test-uc_width2.sh: New file.
8678         * modules/uniwidth/width-tests (Files): Add the new files.
8679         (TESTS): Add uniwidth/test-uc_width2.sh.
8680         (TESTS_ENVIRONMENT): New variable.
8681         (check_PROGRAMS): Add test-uc_width2.
8682         (test_uc_width2_SOURCES): New variable.
8683
8684         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
8685         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
8686         not 0x00AB.
8687         Reported by Alexander V. Lukyanov <lav@netis.ru>.
8688
8689 2008-08-22  Eric Blake  <ebb9@byu.net>
8690
8691         test-lock, test-tls: mention why a test is skipped
8692         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
8693         skipped.
8694         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
8695
8696         count-one-bits: relax license
8697         * modules/count-one-bits (License): Relicense to LGPLv2+.
8698         Suggested by Ludovic Courtès, approved by Ben Pfaff.
8699
8700 2008-08-22  Andreas Schwab  <schwab@suse.de>
8701
8702         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
8703         Remove spurious space in assignment.
8704
8705 2008-08-21  Simon Josefsson  <simon@josefsson.org>
8706
8707         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
8708         Paul Eggert <eggert@CS.UCLA.EDU>.
8709
8710 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
8711
8712         * modules/gettext: Add m4/threadlib.m4.
8713
8714 2008-08-19  Eric Blake  <ebb9@byu.net>
8715
8716         test-c-stack: fix compilation failure on FreeBSD 5.0
8717         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
8718         headers before <sys/resource.h>.
8719         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
8720         the bug.
8721         Reported by Nelson H. F. Beebe.
8722
8723         strverscmp: migrate from "strverscmp.h" to <string.h>
8724         * modules/string (Makefile.am): Add new hooks.
8725         * modules/strverscmp (Files): Remove strverscmp.h.
8726         (Depends-on): Add string.
8727         (configure.ac): Add indicator.
8728         (Include): Mention new header.
8729         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
8730         defaults.
8731         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
8732         results.
8733         * lib/strverscmp.h: Delete.
8734         * lib/string.in.h (strverscmp): Provide declaration, when needed.
8735         * tests/test-strverscmp.c (includes): Adjust client.
8736         * lib/check-version.c (includes): Likewise.
8737         * NEWS: Document the change.
8738
8739         strverscmp: add unit test
8740         * modules/strverscmp-tests: New file.
8741         * tests/test-strverscmp.c: Likewise.
8742
8743 2008-08-19  Simon Josefsson  <simon@josefsson.org>
8744
8745         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
8746         regarding Windows crypto stuff, from Mono.
8747
8748 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
8749
8750         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
8751         if present, for intel RND.  Return error on failures.
8752
8753 2008-08-18  Ben Pfaff  <blp@gnu.org>
8754
8755         gitlog-to-changelog: give better diagnostic for failed pipe-open
8756         * build-aux/gitlog-to-changelog: Improve error message: suggest
8757         that the version of Git may be too old.
8758
8759 2008-08-18  Simon Josefsson  <simon@josefsson.org>
8760
8761         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
8762         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
8763
8764 2008-08-18  Bruno Haible  <bruno@clisp.org>
8765
8766         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
8767         pthread_in_use().
8768
8769 2008-08-18  Bruno Haible  <bruno@clisp.org>
8770
8771         * lib/glthread/threadlib.c: Include <pthread.h>.
8772
8773 2008-08-18  Bruno Haible  <bruno@clisp.org>
8774
8775         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
8776         glthread_recursive_lock_* macros.
8777         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
8778         Fix syntax error.
8779
8780 2008-08-18  Bruno Haible  <bruno@clisp.org>
8781
8782         * lib/glthread/thread.c: Avoid forcing a context switch right after
8783         thread creation.
8784
8785 2008-08-17  Bruno Haible  <bruno@clisp.org>
8786
8787         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
8788         * lib/glthread/thread.h: Provide Win32 specific implementation.
8789         * modules/thread (Files): Add lib/glthread/thread.c.
8790         (Depends-on): Add lock.
8791         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
8792
8793 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8794
8795         New module 'yield'.
8796         * modules/yield: New file.
8797         * lib/glthread/yield.h: New file.
8798         * m4/yield.m4: New file.
8799         * MODULES.html.sh (Multithreading): Add yield.
8800
8801 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8802
8803         New module 'thread'.
8804         * modules/thread: New file.
8805         * lib/glthread/thread.h: New file.
8806         * m4/thread.m4: New file.
8807         * MODULES.html.sh (Multithreading): Add thread.
8808
8809 2008-08-17  Bruno Haible  <bruno@clisp.org>
8810
8811         * lib/glthread/lock.h: Include <stdlib.h> always.
8812         * lib/glthread/tls.h: Likewise.
8813         * lib/glthread/cond.h: Likewise.
8814
8815 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8816
8817         New module 'cond'.
8818         * modules/cond: New file.
8819         * lib/glthread/cond.h: New file.
8820         * lib/glthread/cond.c: New file.
8821         * m4/cond.m4: New file.
8822         * MODULES.html.sh (Multithreading): Add cond.
8823
8824 2008-08-16  Eric Blake  <ebb9@byu.net>
8825
8826         c-stack: fix regression on Irix 5.3 from 2008-06-21
8827         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
8828         sa_sigaction...
8829         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
8830         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
8831         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
8832         * modules/signal (Makefile.am): Use the value.
8833         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
8834         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
8835         * doc/posix-headers/signal.texi (signal.h): Document this
8836         portability issue.
8837         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
8838         Reported by Tom G. Christensen.
8839
8840 2008-08-17  Bruno Haible  <bruno@clisp.org>
8841
8842         New module 'threadlib'.
8843         * modules/threadlib: New file.
8844         * lib/glthread/threadlib.c: New file, extracted from
8845         lib/glthread/lock.c.
8846         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
8847         functions.
8848         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
8849         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
8850         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
8851         macros.
8852         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
8853         (gl_DISABLE_THREADS): Remove macro.
8854         * modules/lock (Files): Remove build-aux/config.rpath.
8855         (Depends-on): Remove havelib. Add threadlib.
8856         (configure.ac-early): Remove section.
8857         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
8858         * modules/tls (Depends-on): Remove lock. Add threadlib.
8859         (Link): New section, copied from threadlib.
8860         * MODULES.html.sh (Multithreading): Add threadlib.
8861
8862 2008-08-14  Bruno Haible  <bruno@clisp.org>
8863
8864         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
8865         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
8866         glthread_rwlock_unlock, glthread_rwlock_destroy,
8867         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
8868         glthread_recursive_lock_destroy): Define as macros always.
8869         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
8870         glthread_lock_lock.
8871         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
8872         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
8873         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
8874         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
8875         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
8876         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
8877         (glthread_recursive_lock_lock_func): Renamed from
8878         glthread_recursive_lock_lock.
8879         (glthread_recursive_lock_unlock_func): Renamed from
8880         glthread_recursive_lock_unlock.
8881         (glthread_recursive_lock_destroy_func): Renamed from
8882         glthread_recursive_lock_destroy.
8883
8884 2008-08-14  Bruno Haible  <bruno@clisp.org>
8885
8886         * lib/glthread/lock.h: Renamed from lib/lock.h.
8887         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
8888         * lib/glthread/tls.h: Renamed from lib/tls.h.
8889         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
8890         * lib/fstrcmp.c: Update includes.
8891         * lib/strsignal.c: Update includes.
8892         * modules/lock (Files, Makefile.am): Update.
8893         (Include): Change to "glthread/lock.h".
8894         * modules/tls (Files, Makefile.am): Update.
8895         (Include): Change to "glthread/tls.h".
8896         * tests/test-lock.c: Update includes.
8897         * tests/test-tls.c: Update includes.
8898         * NEWS: Mention the renamed header files.
8899
8900 2008-08-11  Jim Meyering  <meyering@redhat.com>
8901
8902         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
8903
8904 2008-08-11  Eric Blake  <ebb9@byu.net>
8905
8906         test-c-stack: avoid C99-ism
8907         * tests/test-c-stack.c (main): Fix whitespace, move declaration
8908         before statement.
8909         Reported by Alain Guibert.
8910
8911 2008-08-10  Jim Meyering  <meyering@redhat.com>
8912
8913         ensure that return value of uinttostr et al are not ignored
8914         * lib/inttostr.h (__GNUC_PREREQ): Define.
8915         (__attribute_warn_unused_result__): Define.
8916         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
8917
8918 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
8919
8920         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
8921         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
8922
8923 2008-08-07  Jim Meyering  <meyering@redhat.com>
8924
8925         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
8926
8927         * modules/mkstemp (License): Relicense under LGPLv2+.
8928         * modules/tempname (License): Likewise.
8929
8930 2008-08-06  Bruno Haible  <bruno@clisp.org>
8931
8932         * lib/poll.c (poll): Further micro-optimization.
8933
8934 2008-08-06  Jim Meyering  <meyering@redhat.com>
8935
8936         inet_pton.c: use locale-independent tolower
8937         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
8938         (inet_pton6): Use c_tolower rather than tolower.
8939         * modules/inet_pton (Depends-on): Add c-ctype.
8940
8941 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
8942
8943         * lib/poll.c (poll): Avoid division when timeout is 0, cache
8944         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
8945
8946 2008-08-06  Jim Meyering  <meyering@redhat.com>
8947
8948         * modules/inet_pton (License): Relicense under LGPLv2+.
8949
8950 2008-08-03  Bruno Haible  <bruno@clisp.org>
8951
8952         Additional non-aborting API for lock and tls.
8953         * lib/lock.h: Include <errno.h>.
8954         (glthread_lock_init): New macro/function.
8955         (gl_lock_init): Define as wrapper around glthread_lock_init.
8956         (glthread_lock_lock): New macro/function.
8957         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
8958         (glthread_lock_unlock): New macro/function.
8959         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
8960         (glthread_lock_destroy): New macro/function.
8961         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
8962         (glthread_rwlock_init): New macro/function.
8963         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
8964         (glthread_rwlock_rdlock): New macro/function.
8965         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
8966         (glthread_rwlock_wrlock): New macro/function.
8967         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
8968         (glthread_rwlock_unlock): New macro/function.
8969         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
8970         (glthread_rwlock_destroy): New macro/function.
8971         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
8972         (glthread_recursive_lock_init): New macro/function.
8973         (gl_recursive_lock_init): Define as wrapper around
8974         glthread_recursive_lock_init.
8975         (glthread_recursive_lock_lock): New macro/function.
8976         (gl_recursive_lock_lock): Define as wrapper around
8977         glthread_recursive_lock_lock.
8978         (glthread_recursive_lock_unlock): New macro/function.
8979         (gl_recursive_lock_unlock): Define as wrapper around
8980         glthread_recursive_lock_unlock.
8981         (glthread_recursive_lock_destroy): New macro/function.
8982         (gl_recursive_lock_destroy): Define as wrapper around
8983         glthread_recursive_lock_destroy.
8984         (glthread_once): New macro/function.
8985         (gl_once): Define as wrapper around glthread_once.
8986         Update function declarations.
8987         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
8988         glthread_rwlock_init. Return error code.
8989         (glthread_rwlock_rdlock_multithreaded): Renamed from
8990         glthread_rwlock_rdlock. Return error code.
8991         (glthread_rwlock_wrlock_multithreaded): Renamed from
8992         glthread_rwlock_wrlock. Return error code.
8993         (glthread_rwlock_unlock_multithreaded): Renamed from
8994         glthread_rwlock_unlock. Return error code.
8995         (glthread_rwlock_destroy_multithreaded): Renamed from
8996         glthread_rwlock_destroy. Return error code.
8997         (glthread_recursive_lock_init_multithreaded): Renamed from
8998         glthread_recursive_lock_init. Return error code.
8999         (glthread_recursive_lock_lock_multithreaded): Renamed from
9000         glthread_recursive_lock_lock. Return error code.
9001         (glthread_recursive_lock_unlock_multithreaded): Renamed from
9002         glthread_recursive_lock_unlock. Return error code.
9003         (glthread_recursive_lock_destroy_multithreaded): Renamed from
9004         glthread_recursive_lock_destroy. Return error code.
9005         (glthread_once_call): Make static.
9006         (glthread_once_multithreaded): Renamed from glthread_once.
9007         * lib/tls.h: Include <errno.h>.
9008         (glthread_tls_key_init): New macro/function.
9009         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
9010         (glthread_tls_set): New macro/function.
9011         (gl_tls_set): Define as wrapper around glthread_tls_set.
9012         (glthread_tls_key_destroy): New macro/function.
9013         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
9014         Update function declarations.
9015         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
9016         glthread_tls_get.
9017         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
9018
9019 2008-08-04  Eric Blake  <ebb9@byu.net>
9020
9021         gnumakefile: use space, not TAB, outside of targets
9022         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
9023
9024 2008-08-02  Jim Meyering  <meyering@redhat.com>
9025
9026         getdate.y: avoid locale-dependent date parsing failure
9027         In Turkish locales, getdate would fail to recognize keywords
9028         containing a lowercase "i".  The solution is not to rely on
9029         locale-sensitive case-conversion.
9030         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
9031         (lookup_word): Use c_toupper in place of toupper.
9032         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
9033         Reported by Vefa Bicakci <bicave@superonline.com> in
9034         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
9035         * modules/getdate (Depends-on): Add c-ctype.
9036
9037 2008-08-02  Bruno Haible  <bruno@clisp.org>
9038
9039         * gnulib-tool (func_import): When updating or creating a .gitignore
9040         file, prepend each added line with a slash, and ignore leading slashes
9041         from the existing lines.
9042         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
9043
9044 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9045
9046         Portability fix for GNU make 3.79.1.
9047         * top/GNUmakefile: Avoid 'else COND', which older GNU make
9048         versions do not understand.
9049
9050 2008-08-01  Bruno Haible  <bruno@clisp.org>
9051
9052         Work around bug of HP-UX 10.20 cc with -0.0 literal.
9053         * tests/test-isnanf.h (zero): New variable.
9054         (main): Avoid literal -0.0f.
9055         * tests/test-isnand.h (zero): New variable.
9056         (main): Avoid literal -0.0.
9057         * tests/test-isnanl.h (zero): New variable.
9058         (main): Avoid literal -0.0L.
9059         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
9060         (test_float, test_double, test_long_double): Avoid literals -0.0f,
9061         -0.0, -0.0L.
9062         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
9063         (test_signbitd): Avoid literal -0.0.
9064         (test_signbitl): Avoid literal -0.0L.
9065         * tests/test-ceilf1.c (zero): New variable.
9066         (main): Avoid literal -0.0f.
9067         * tests/test-ceill.c (zero): New variable.
9068         (main): Avoid literal -0.0L.
9069         * tests/test-floorf1.c (zero): New variable.
9070         (main): Avoid literal -0.0f.
9071         * tests/test-floorl.c (zero): New variable.
9072         (main): Avoid literal -0.0L.
9073         * tests/test-roundf1.c (zero): New variable.
9074         (main): Avoid literal -0.0f.
9075         * tests/test-round1.c (zero): New variable.
9076         (main): Avoid literal -0.0.
9077         * tests/test-roundl.c (zero): New variable.
9078         (main): Avoid literal -0.0L.
9079         * tests/test-truncf1.c (zero): New variable.
9080         (main): Avoid literal -0.0f.
9081         * tests/test-trunc1.c (zero): New variable.
9082         (main): Avoid literal -0.0.
9083         * tests/test-truncl.c (zero): New variable.
9084         (main): Avoid literal -0.0L.
9085         * tests/test-frexp.c (zero): New variable.
9086         (main): Avoid literal -0.0.
9087         * tests/test-frexpl.c (zero): New variable.
9088         (main): Avoid literal -0.0L.
9089         * tests/test-ldexpl.c (zero): New variable.
9090         (main): Avoid literal -0.0L.
9091         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
9092         (zerod, zerol): New variables.
9093         (test_function): Avoid literals -0.0, -0.0L.
9094         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
9095         (zerod, zerol): New variables.
9096         (test_function): Avoid literals -0.0, -0.0L.
9097         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
9098         (zerod, zerol): New variables.
9099         (test_function): Avoid literals -0.0, -0.0L.
9100         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
9101         (zerod, zerol): New variables.
9102         (test_function): Avoid literals -0.0, -0.0L.
9103         * tests/test-strtod.c (zero): New variable.
9104         (main): Avoid literal -0.0.
9105         Reported by Jonathan C. Patschke <jp@centtech.com>.
9106
9107 2008-07-31  Jim Meyering  <meyering@redhat.com>
9108
9109         sha256.h: correct definition of SHA224_DIGEST_SIZE
9110         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
9111         Reported by Paulie Pena IV <paulie4@gmail.com>.
9112         Define as 224 / 8, rather than as a literal.
9113         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
9114         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
9115         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
9116
9117 2008-07-31  Bruno Haible  <bruno@clisp.org>
9118
9119         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
9120         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
9121         Reported by Jonathan Patschke <jp@centtech.com>.
9122
9123 2008-07-31  Bruno Haible  <bruno@clisp.org>
9124
9125         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
9126         Reported by Paolo Bonzini <bonzini@gnu.org>.
9127
9128 2008-07-30  Eric Blake  <ebb9@byu.net>
9129
9130         test-strtod: allow compilation without -lm
9131         * tests/test-strtod.c (main): Avoid link dependence on fabs.
9132         Reported by Dennis Clarke <blastwave@gmail.com>.
9133
9134 2008-07-28  Jim Meyering  <meyering@redhat.com>
9135
9136         bootstrap: work also when there are no .po files in po/
9137         * build-aux/bootstrap (update_po_files): Complete the change
9138         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
9139
9140 2008-07-27  Jim Meyering  <meyering@redhat.com>
9141
9142         * users.txt: Add zile.
9143
9144 2008-07-26  Ben Pfaff  <blp@gnu.org>
9145
9146         Add missing dependencies on new m4/exponent[fdl].m4 files.
9147         * modules/isnanf-nolibm: Add m4/exponentf.m4.
9148         * modules/isnand-nolibm: Add m4/exponentd.m4.
9149         * modules/isnanl-nolibm: Add m4/exponentl.m4.
9150         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
9151         m4/isnan[fdl].m4, because the macros actually used moved.
9152         Reported by Jim Meyering.
9153
9154 2008-07-14  Ben Pfaff  <blp@gnu.org>
9155
9156         Add isinf module.
9157         * lib/isinf.c: New file.
9158         * lib/math.in.h: Define isinf macro if we have decided to replace
9159         it.
9160         * m4/isinf.m4: New file.
9161         * m4/math_h.m4: Initialize and substitute variables for isinf
9162         module.
9163         * modules/isinf: New file.
9164         * modules/isinf-tests: New file.
9165         * modules/math: Add substitutions for new module.
9166         * tests/test-isinf.c: New file.
9167         * doc/posix-functions/isinf.texi: Mention new module.
9168         * MODULES.html.sh: Mention new module.
9169
9170 2008-07-14  Ben Pfaff  <blp@gnu.org>
9171
9172         Factor out some macros for use by additional modules.
9173         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
9174         exponentf.m4.
9175         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
9176         exponentd.m4.
9177         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
9178         file exponentl.m4.
9179         * m4/exponentf.m4: New file.
9180         * m4/exponentd.m4: New file.
9181         * m4/exponentl.m4: New file.
9182         * modules/isnanf: Use new file m4/exponentf.m4.
9183         * modules/isnand: Use new file m4/exponentd.m4.
9184         * modules/isnanl: Use new file m4/exponentl.m4.
9185
9186 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
9187
9188         mktime.c: normalize tp->tm_isdst value to -1/0/1.
9189         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
9190         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
9191         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
9192
9193         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
9194         readlink on platforms without PATH_MAX.
9195
9196 2008-07-21  Eric Blake  <ebb9@byu.net>
9197
9198         Warn, not fail, on stale version.
9199         * top/GNUmakefile (_curr-ver): Tone down previous patch.
9200
9201         Don't allow installation with stale devel version number.
9202         * top/GNUmakefile (_is-install-target): New macro.
9203         (_curr-ver): Forbid installation with stale version number.
9204
9205 2008-07-20  Bruno Haible  <bruno@clisp.org>
9206
9207         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
9208         TESTS_ENVIRONMENT.
9209         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
9210
9211 2008-07-20  Bruno Haible  <bruno@clisp.org>
9212
9213         * lib/c-stack.h (c_stack_action): Add documentation.
9214         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
9215
9216 2008-07-20  Bruno Haible  <bruno@clisp.org>
9217
9218         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
9219         * modules/readlink (License): Likewise.
9220
9221 2008-07-17  Eric Blake  <ebb9@byu.net>
9222
9223         * modules/c-stack (Link): Fix typo.
9224
9225         Make c-stack use libsigsegv, when available.
9226         * modules/c-stack (Depends-on): Add libsigsegv.
9227         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
9228         needed.
9229         * lib/c-stack.c (SIGSTKSZ): Define fallback.
9230         (segv_handler, overflow_handler, c_stack_action)
9231         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
9232         implementation when libsigsegv is available, but only when using
9233         the library is necessary.
9234         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
9235         comment, explaining why XSI check fails on Linux.
9236         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
9237         * tests/test-c-stack2.sh: Tweak skip message.
9238         * NEWS: Document new link-time requirements.
9239
9240 2008-07-16  Eric Blake  <ebb9@byu.net>
9241
9242         c-stack: Expose false positives when not using libsigsegv.
9243         * modules/c-stack-tests (Files): Expand test.
9244         * tests/test-c-stack.c (main): Add means to conditionally trigger
9245         non-overflow SIGSEGV.
9246         * tests/test-c-stack2.sh: New file.
9247
9248 2008-07-14  Bruno Haible  <bruno@clisp.org>
9249
9250         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
9251         Reported by Eric Blake.
9252
9253 2008-07-14  Sam Steingold  <sds@gnu.org>
9254             Bruno Haible  <bruno@clisp.org>
9255
9256         New module libsigsegv.
9257         * modules/libsigsegv: New file.
9258         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
9259         modifications.
9260         * MODULES.html.sh (Signal handling): New section.
9261
9262 2008-07-14  Bruno Haible  <bruno@clisp.org>
9263
9264         * modules/unictype/ctype-* (Description): Add the word "function".
9265         Improves the resulting doc in MODULES.html.
9266
9267 2008-07-12  Ben Pfaff  <blp@gnu.org>
9268
9269         Add longlong module.
9270         * modules/longlong: New file.
9271
9272 2008-07-12  Bruno Haible  <bruno@clisp.org>
9273
9274         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
9275         to empty.
9276
9277 2008-07-10  Ben Pfaff  <blp@gnu.org>
9278
9279         Add isnan module.
9280         * doc/posix-functions/isnan.texi: Mention new module.
9281         * lib/math.in.h: Define isnan macro if we have decided to replace
9282         it.
9283         * m4/isnan.m4: New file.
9284         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
9285         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
9286         also.
9287         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
9288         redundancy.
9289         * m4/math_h.m4: Initialize and substitute variables for isnan
9290         module.
9291         * modules/isnan: New file.
9292         * modules/isnan-tests: New file.
9293         * modules/math: Add substitutions for new module.
9294         * tests/test-isnan.c: New file.
9295         * MODULES.html.sh: Mention new module.
9296
9297 2008-07-10  Ben Pfaff  <blp@gnu.org>
9298
9299         Add isnanf module.
9300         * lib/isnanf.m4: New file.
9301         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
9302         (gl_HAVE_ISNANF_IN_LIBM): New macro.
9303         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
9304         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
9305         * modules/isnanf: New file.
9306         * modules/isnanf-tests: New file.
9307         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
9308         files.
9309         * tests/test-isnanf-nolibm.c: factored most of its contents into
9310         new file tests/test-isnanf.h.
9311         * tests/test-isnanf.h: New file.
9312         * tests/test-isnanf.c: New file.
9313         * MODULES.html.sh: Mention new module.
9314         * doc/glibc-functions/isnanf.texi: Mention new module.
9315
9316 2008-07-10  Ben Pfaff  <blp@gnu.org>
9317
9318         Add isnand module.
9319         * lib/isnand.h: New file.
9320         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
9321         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
9322         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
9323         functionality also.
9324         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
9325         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
9326         (gl_HAVE_ISNAND_IN_LIBM): New macro.
9327         * modules/isnand: New file.
9328         * modules/isnand-tests: New file.
9329         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
9330         files.
9331         * tests/test-isnand-nolibm.c: factored most of its contents into
9332         new file tests/test-isnand.h.
9333         * tests/test-isnand.h: New file.
9334         * tests/test-isnand.c: New file.
9335         * MODULES.html.sh: Mention new module.
9336
9337 2008-07-10  Ben Pfaff  <blp@gnu.org>
9338
9339         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
9340         * lib/isnand.h: Rename lib/isnand-nolibm.h.
9341         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
9342         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
9343         * modules/isnanf-nolibm: Update references to renamed files.
9344         * modules/isnand-nolibm: Likewise.
9345         * modules/isnanf-nolibm-tests: Likewise.
9346         * modules/isnand-nolibm-tests: Likewise.
9347         * lib/frexp.c: Likewise.
9348         * lib/isfinite.c: Likewise.
9349         * lib/signbitd.c: Likewise.
9350         * lib/signbitf.c: Likewise.
9351         * lib/vasnprintf.c: Likewise.
9352         * tests/test-ceilf1.c: Likewise.
9353         * tests/test-ceilf2.c: Likewise.
9354         * tests/test-floorf1.c: Likewise.
9355         * tests/test-floorf2.c: Likewise.
9356         * tests/test-frexp.c: Likewise.
9357         * tests/test-round1.c: Likewise.
9358         * tests/test-round2.c: Likewise.
9359         * tests/test-roundf1.c: Likewise.
9360         * tests/test-strtod.c: Likewise.
9361         * tests/test-trunc1.c: Likewise.
9362         * tests/test-trunc2.c: Likewise.
9363         * tests/test-truncf1.c: Likewise.
9364         * tests/test-truncf2.c: Likewise.
9365         * NEWS: Mention the renamed header files.
9366
9367 2008-07-11  Jim Meyering  <meyering@redhat.com>
9368
9369         vc-list-files: make the last-resort awk code more portable
9370         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
9371         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
9372         does not support it.
9373
9374 2008-07-10  Eric Blake  <ebb9@byu.net>
9375
9376         Work with tar's bootstrap.
9377         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
9378         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
9379         an m4 comment.
9380
9381 2008-07-09  Jim Meyering  <meyering@redhat.com>
9382
9383         posix-shell.m4: fix typo that made this test malfunction
9384         * m4/posix-shell.m4: Remove capitalization in variable name.
9385
9386 2008-07-08  Bruno Haible  <bruno@clisp.org>
9387
9388         * m4/onceonly.m4: Update comments.
9389         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9390
9391 2008-07-04  Jim Meyering  <meyering@redhat.com>
9392
9393         * users.txt: Add vc-dwim.
9394         (bison, coreutils): Use the gitweb URL.
9395
9396 2008-07-03  Jim Meyering  <meyering@redhat.com>
9397
9398         * users.txt: Add libffcall.  From Sam Steingold.
9399
9400 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
9401
9402         getdate.y: do not ignore TZ with relative day, month or year offset
9403         * lib/getdate.y (get_date): Move the tz-handling block to follow the
9404         relative-date-handling, since otherwise, the latter would clobber the
9405         sole output (an updated Start value) of the tz-handling block.
9406         * tests/test-getdate.c: Tests for the fix
9407
9408 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9409
9410         Recognize 'foo_LIBRARIES += libgnu.a'.
9411         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
9412         makefile snippet has already specified an installation location,
9413         also using '+='.
9414
9415 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
9416
9417         getdate.y: factor out common actions
9418         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
9419         Use them in place of open-coded actions.
9420
9421 2008-07-01  Simon Josefsson  <simon@josefsson.org>
9422
9423         Add self-test for getdate module.
9424         * modules/getdate-tests: New file.
9425         * tests/test-getdate.c: New file.
9426
9427 2008-06-29  Bruno Haible  <bruno@clisp.org>
9428
9429         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
9430         .gitignore.
9431         Reported by Sylvain Beucler <beuc@beuc.net>.
9432
9433 2008-06-29  Bruno Haible  <bruno@clisp.org>
9434
9435         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
9436         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
9437
9438 2008-06-29  Bruno Haible  <bruno@clisp.org>
9439
9440         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
9441         EXTRA_DIST.
9442         Reported by Sylvain Beucler <beuc@beuc.net>.
9443
9444 2008-06-26  Jim Meyering  <meyering@redhat.com>
9445
9446         make several modules depend on the "open" module
9447         This provides slightly increased consistency when opening-for-write
9448         the name of a non-directory spelled with a trailing slash.
9449         * modules/chdir-safer: Likewise.
9450         * modules/chown: Likewise.
9451         * modules/clean-temp: Likewise.
9452         * modules/copy-file: Likewise.
9453         * modules/fchdir: Likewise.
9454         * modules/fcntl-safer: Likewise.
9455         * modules/pipe: Likewise.
9456         * modules/utime: Likewise.
9457         Prompted by Eric Blake and Bruno Haible.
9458
9459 2008-06-24  Andreas Schwab  <schwab@suse.de>
9460
9461         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
9462         literals can be used as initializers for global variables.
9463
9464 2008-06-23  Eric Blake  <ebb9@byu.net>
9465
9466         Make gnulib-cache.m4 easier to diff.
9467         * gnulib-tool (func_import): Allow newlines when reading cached
9468         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
9469
9470 2008-06-23  Bruno Haible  <bruno@clisp.org>
9471
9472         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
9473         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
9474         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
9475         m4/signalblocking.m4.
9476         (gl_PREREQ_SIGACTION): Don't invoke it.
9477         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
9478         gl_PREREQ_SIG_HANDLER_H.
9479         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
9480         Don't check for sigaction here.
9481
9482 2008-06-23  Bruno Haible  <bruno@clisp.org>
9483
9484         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
9485         (install_handlers): Don't set the SA_RESETHAND flag.
9486
9487 2008-06-23  Bruno Haible  <bruno@clisp.org>
9488
9489         * m4/sigaction.m4: Comment fixes.
9490         * lib/signal.in.h: Likewise.
9491
9492 2008-06-23  Eric Blake  <ebb9@byu.net>
9493
9494         Fix typo.
9495         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
9496
9497         Avoid SA_ namespace.
9498         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
9499         Reported by Ralf Wildenhues.
9500
9501         Avoid test failure due to SA_RESTORER.
9502         * tests/test-sigaction.c (SA_MASK): New macro.
9503         (main): Avoid failing due to extension flags being set.
9504         Reported by Jim Meyering.
9505
9506         Revert use of sig-handler.h in sigprocmask.c.
9507         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
9508         it requires the existence of struct sigaction.
9509         * lib/sigprocmask.c (handler_t): Restore typedef.
9510         (rpl_signal, old_handlers): Use local type.
9511
9512 2008-06-22  Bruno Haible  <bruno@clisp.org>
9513
9514         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
9515         conditionally.
9516         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
9517
9518 2008-06-22  Bruno Haible  <bruno@clisp.org>
9519
9520         * doc/posix-functions/siginterrupt.texi: Move note.
9521
9522         * lib/signal.in.h (SA_RESTART): New macro.
9523         * lib/sigaction.c: Update comment.
9524
9525         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
9526
9527         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
9528         (gl_PREREQ_SIGPROCMASK): Invoke it.
9529         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
9530
9531         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
9532
9533         * lib/sigprocmask.c: Update a comment.
9534
9535 2008-06-21  Eric Blake  <ebb9@byu.net>
9536
9537         Use sigaction module rather than signal().
9538         * modules/c-stack (Depends-on): Add sigaction.
9539         * modules/fatal-signal (Depends-on): Likewise.
9540         * modules/nanosleep (Depends-on): Likewise.
9541         * modules/sigprocmask (Files): Add sig-handler.h.
9542         * modules/sigaction (Files): Likewise.
9543         * lib/sig-handler.h (get_handler): New file, suggested by Paul
9544         Eggert.
9545         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
9546         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
9547         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
9548         (init_fatal_signals): Likewise.
9549         * lib/nanosleep.c (rpl_nanosleep): Likewise.
9550         (siginterrupt): Delete fallback.
9551         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
9552         instead.
9553         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
9554         siginterrupt.
9555
9556         New module sigaction, for mingw.
9557         * modules/sigaction: New module...
9558         * modules/sigaction-tests: ...and its test.
9559         * m4/sigaction.m4: New file.
9560         * lib/sigaction.c: Likewise.
9561         * tests/test-sigaction.c: Likewise.
9562         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
9563         * modules/signal (Makefile.am): Likewise.
9564         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
9565         needed.
9566         * doc/posix-headers/signal.texi (signal.h): Mention provided
9567         types.
9568         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
9569         that sigaction is preferable.
9570         * doc/posix-functions/sigaction.texi (sigaction): Mention new
9571         module.
9572         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9573         sigaction.
9574
9575         Improve robustness of sigprocmask by overriding signal.
9576         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
9577         is in use.
9578         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
9579         (SIGKILL, SIGSTOP): Provide fallbacks.
9580         (rpl_signal): Implement.
9581         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
9582         signal can be called inside handlers.
9583
9584         Fix nanosleep module on mingw.
9585         * modules/nanosleep (Depends-on): Add sys_select.
9586         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
9587
9588         Fix licensing of sigprocmask.
9589         * modules/raise (License): Relicense as LGPL.
9590
9591 2008-06-21  Bruno Haible  <bruno@clisp.org>
9592
9593         * lib/propername.c (proper_name_utf8): Don't use the transliterated
9594         result if it contains question marks.
9595         Reported by Michael Geng <linux@michaelgeng.de>.
9596
9597 2008-06-19  Bruno Haible  <bruno@clisp.org>
9598
9599         Fix CVS-ism.
9600         * doc/gnulib.texi: Include updated-stamp.texi.
9601         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
9602         (updated-stamp.texi): New rule.
9603         (gnulib.info): Depend on it.
9604         * doc/.gitignore: Add updated-stamp.texi.
9605         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
9606
9607 2008-06-19  Bruno Haible  <bruno@clisp.org>
9608
9609         * doc/Makefile (gnulib.info): Update and simplify dependencies.
9610         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
9611
9612 2008-06-19  Eric Blake  <ebb9@byu.net>
9613
9614         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
9615         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
9616         Reported by Stepan Kasal.
9617
9618 2008-06-18  Bruno Haible  <bruno@clisp.org>
9619
9620         * lib/fatal-signal.c (init_fatal_signals): Add comment.
9621         Reported by Eric Blake.
9622
9623 2008-06-18  Eric Blake  <ebb9@byu.net>
9624
9625         Work around cygwin 1.5.25 strsignal bug.
9626         * tests/test-strsignal.c: Allow for const char *.
9627         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
9628
9629 2008-06-18  Simon Josefsson  <simon@josefsson.org>
9630
9631         * users.txt: Update URL to article and add author/date
9632         information.
9633
9634 2008-06-17  Bruno Haible  <bruno@clisp.org>
9635
9636         New macro gl_DISABLE_THREADS.
9637         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
9638         if the user did not pass --enable-threads or --disable-threads option.
9639         (gl_DISABLE_THREADS): New macro.
9640         Reported by Eric Blake <ebb9@byu.net>.
9641
9642 2008-06-17  Bruno Haible  <bruno@clisp.org>
9643
9644         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
9645         when the macro ignores it.
9646         Based on a patch by Eric Blake <ebb9@byu.net>.
9647
9648 2008-06-17  Bruno Haible  <bruno@clisp.org>
9649
9650         * modules/tls (License): Change to LGPLv2+.
9651         Reported by Eric Blake.
9652
9653 2008-06-17  Eric Blake  <ebb9@byu.net>
9654
9655         Simplify c-stack prerequisites.
9656         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
9657         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
9658         no longer requires <ucontext.h> to exist.  Optimize setrlimit
9659         check.
9660         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
9661         <sys/resource.h>.
9662
9663         Move c-stack test into testsuite.
9664         * modules/c-stack-tests: New file.
9665         * lib/c-stack.c [DEBUG]: Move test program...
9666         * tests/test-c-stack.c: ...into this new file.  Skip rather than
9667         fail test if sigaltstack is lacking.
9668         * tests/test-c-stack.sh: New driver file.
9669
9670 2008-06-16  Eric Blake  <ebb9@byu.net>
9671
9672         Use raise module consistently.
9673         * modules/fatal-signal (Depends-on): Add raise.
9674         * modules/sigprocmask (Depends-on): Likewise.
9675         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
9676         * lib/sigprocmask.c (sigprocmask): Likewise.
9677         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
9678         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
9679
9680         Fix compliance bug in sigpending.
9681         * lib/sigprocmask.c (sigpending): Return pending array via
9682         parameter, not return value.
9683
9684 2008-06-14  Eric Blake  <ebb9@byu.net>
9685
9686         Improve obstack-printf test code.
9687         * tests/test-obstack-printf.c (test_function): Fix comment, and
9688         simplify usage of obstack_* in macros.  Add a test for coverage.
9689         Reported by Bruno Haible.
9690
9691 2008-06-14  Bruno Haible  <bruno@clisp.org>
9692
9693         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
9694         array size as a constant, not as a const variable.
9695         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
9696         AC_USE_SYSTEM_EXTENSIONS.
9697         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
9698         Test whether the obstack_printf function actually exists.
9699         * modules/obstack-printf (Depends-on): Add extensions.
9700         (Include): Remove obstack.h.
9701         * modules/obstack-printf-posix (Depends-on): Add extensions.
9702         (Include): Remove obstack.h.
9703
9704 2008-06-13  Eric Blake  <ebb9@byu.net>
9705
9706         Add obstack-printf and obstack-printf-posix modules.
9707         * modules/obstack-printf: New file.
9708         * modules/obstack-printf-posix: Likewise.
9709         * MODULES.html.sh (Misc): Mention them.
9710         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
9711         Likewise.
9712         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
9713         Likewise.
9714         * modules/stdio (Makefile.am): Accomodate new modules.
9715         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
9716         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
9717         Declare.
9718         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
9719         functions.
9720         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
9721         (gl_REPLACE_OBSTACK_PRINTF): New macros
9722         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
9723         * tests/test-obstack-printf.c: New file.
9724         * modules/obstack-printf-tests: Likewise.
9725         * modules/obstack-printf-posix-tests: Likewise.
9726
9727 2008-06-11  Bruno Haible  <bruno@clisp.org>
9728
9729         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
9730         * lib/open.c: Include errno.h.
9731         (open): Fail when attempting to write to a file that has a trailing
9732         slash.
9733         * tests/test-open.c (main): Test against trailing slash bug.
9734         * doc/posix-functions/open.texi: Mention the trailing slash bug.
9735
9736 2008-06-10  Bruno Haible  <bruno@clisp.org>
9737
9738         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
9739         for $? to work inside the trap command, with various /bin/sh-s.
9740         * tests/test-vc-list-files-cvs.sh: Likewise.
9741
9742 2008-06-10  Bruno Haible  <bruno@clisp.org>
9743
9744         * lib/acl-internal.h: Don't include gettext.h here.
9745         * lib/set-mode-acl.c: Include gettext.h here.
9746         * lib/copy-acl.c: Likewise.
9747
9748 2008-06-10  Bruno Haible  <bruno@clisp.org>
9749
9750         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
9751         * lib/wait-process.c (wait_subprocess): Likewise.
9752         * lib/execute.h (execute): Add termsigp argument.
9753         * lib/execute.c (execute): Likewise.
9754         * lib/csharpcomp.c (compile_csharp_using_pnet,
9755         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
9756         * lib/csharpexec.c (execute_csharp_using_pnet,
9757         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
9758         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
9759         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
9760         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
9761         is_jikes_present): Update.
9762         * lib/javaexec.c (execute_java_class): Update.
9763         * lib/javaversion.c (execute_and_read_line): Update.
9764         * NEWS: Document the changes.
9765         Reported by Eric Blake.
9766
9767 2008-06-10  Eric Blake  <ebb9@byu.net>
9768
9769         Add missing include.
9770         * tests/test-strstr.c (includes): Add <signal.h>.
9771         * tests/test-strcasestr.c (includes): Likewise.
9772         * tests/test-memmem.c (includes): Likewise.
9773
9774 2008-06-10  Bruno Haible  <bruno@clisp.org>
9775
9776         * lib/wait-process.c (wait_subprocess): Add an assertion.
9777
9778 2008-06-10  Bruno Haible  <bruno@clisp.org>
9779
9780         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
9781
9782 2008-06-10  Bruno Haible  <bruno@clisp.org>
9783
9784         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
9785         using alarm().
9786         * tests/test-strcasestr.c (main): Likewise.
9787         * tests/test-strstr.c (main): Likewise.
9788
9789 2008-06-09  Bruno Haible  <bruno@clisp.org>
9790
9791         Work around the Solaris 10 ACE ACLs ABI change.
9792         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
9793         declare if ACL_NO_TRIVIAL is present.
9794         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
9795         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
9796         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
9797         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
9798         define if ACL_NO_TRIVIAL is present.
9799         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
9800         and use the current ABI.
9801         (file_has_acl): Use same #if condition as elsewhere.
9802         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
9803         in use, and use the current ABI.
9804         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
9805         Reported by Jim Meyering.
9806
9807 2008-06-09  Eric Blake  <ebb9@byu.net>
9808
9809         Work around environments that (stupidly) ignore SIGALRM.
9810         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
9811         before using alarm().
9812         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
9813         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
9814         Reported by Ian Beckwith <ianb@erislabs.net>.
9815
9816         Produce autobuild blurb earlier in log.
9817         * modules/autobuild (configure.ac-early): Move AB_INIT here.
9818
9819 2008-06-09  Jim Meyering  <meyering@redhat.com>
9820         and OndÅ™ej Vašík  <ovasik@redhat.com>
9821
9822         utimens.c: correct kernel bug work-around
9823         OndÅ™ej Vašík found that the invalid return value of 280 indicates
9824         failure, not success, and the kernel bug we're trying to work
9825         around affects not just the utimensat call, but also the fallback
9826         futimens call.
9827         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
9828         not success.
9829         [HAVE_FUTIMENS]: Use the same work-around, here.
9830
9831 2008-06-09  Jim Meyering  <meyering@redhat.com>
9832
9833         add more guards around definition of ACE_-related code
9834         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
9835         ALLOW and ACE_OWNER are also defined.
9836
9837 2008-06-08  Bruno Haible  <bruno@clisp.org>
9838
9839         * lib/acl-internal.h: Add me as co-author.
9840         * lib/file-has-acl.c: Likewise.
9841         * lib/set-mode-acl.c: Likewise.
9842         * lib/copy-acl.c: Likewise.
9843
9844 2008-06-08  Bruno Haible  <bruno@clisp.org>
9845
9846         Add support for AIX ACLs.
9847         * lib/acl-internal.h (acl_nontrivial): New declaration.
9848         * lib/file-has-acl.c (acl_nontrivial): New function.
9849         (file_has_acl): Add implementation using AIX 4 ACL API.
9850         * lib/set-mode-acl.c (qset_acl): Likewise.
9851         * lib/copy-acl.c (qcopy_acl): Likewise.
9852
9853 2008-06-08  Bruno Haible  <bruno@clisp.org>
9854
9855         Add support for HP-UX ACLs.
9856         * lib/acl-internal.h (acl_nontrivial): New declaration.
9857         * lib/file-has-acl.c (acl_nontrivial): New function.
9858         (file_has_acl): Add implementation using HP-UX 11 ACL API.
9859         * lib/set-mode-acl.c (qset_acl): Likewise.
9860         * lib/copy-acl.c (qcopy_acl): Likewise.
9861
9862 2008-06-08  Bruno Haible  <bruno@clisp.org>
9863
9864         Add support for Cygwin ACLs.
9865         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
9866         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
9867         the chmod_or_fchmod call.
9868         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
9869
9870 2008-06-08  Bruno Haible  <bruno@clisp.org>
9871
9872         Fix bug with setuid modes in Solaris 10+ code.
9873         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
9874         succeeded, when the mode contains some special bits.
9875
9876 2008-06-08  Bruno Haible  <bruno@clisp.org>
9877
9878         Add support for Solaris 7..10 ACLs.
9879         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
9880         declarations.
9881         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
9882         functions.
9883         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
9884         * lib/set-mode-acl.c (qset_acl): Likewise.
9885         * lib/copy-acl.c (qcopy_acl): Likewise.
9886
9887 2008-06-08  Bruno Haible  <bruno@clisp.org>
9888
9889         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
9890         declaration.
9891         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
9892         (acl_access_nontrivial): Remove MacOS X case.
9893         (file_has_acl): Use acl_extended_nontrivial.
9894         * lib/copy-acl.c (qcopy_acl): Likewise.
9895
9896 2008-06-08  Bruno Haible  <bruno@clisp.org>
9897
9898         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
9899
9900 2008-06-08  Jim Meyering  <meyering@redhat.com>
9901
9902         * modules/acl (Maintainer): Add Bruno Haible.
9903
9904 2008-06-07  Bruno Haible  <bruno@clisp.org>
9905
9906         Improve support for Tru64 ACLs.
9907         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
9908         ACL on OSF/1.
9909
9910 2008-06-07  Bruno Haible  <bruno@clisp.org>
9911
9912         Add support for MacOS X ACLs.
9913         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
9914         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
9915         * lib/set-mode-acl.c (qset_acl): Likewise.
9916         * lib/copy-acl.c (qcopy_acl): Likewise.
9917
9918 2008-06-07  Bruno Haible  <bruno@clisp.org>
9919
9920         Fix memory leak introduced on 2008-05-22.
9921         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
9922         use.
9923
9924 2008-06-07  Bruno Haible  <bruno@clisp.org>
9925
9926         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
9927         to construct an empty ACL.
9928
9929 2008-06-07  Bruno Haible  <bruno@clisp.org>
9930
9931         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
9932         precisely.
9933         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
9934
9935 2008-06-07  Bruno Haible  <bruno@clisp.org>
9936
9937         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
9938         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
9939
9940 2008-06-07  Bruno Haible  <bruno@clisp.org>
9941
9942         * doc/posix-functions/_setjmp.texi: Explain the use of this function
9943         regardless of POSIX.
9944         * doc/posix-functions/_longjmp.texi: Likewise.
9945         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
9946         SystemV platform in this case.
9947
9948 2008-06-06  Eric Blake  <ebb9@byu.net>
9949
9950         Document abort() bugs.
9951         * doc/posix-functions/abort.texi (abort): Mention anomalies.
9952
9953         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
9954         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
9955         sigsetjmp.
9956         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
9957         siglongjmp, but only as a macro.
9958         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
9959         is obsolete.
9960         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
9961
9962         Tweak documentation to cover cygwin argz bugs.
9963         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
9964         argz bug fix; no code change needed since no cygwin releases
9965         occurred between the last fix and the bug being tested.
9966         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
9967         module and recently fixed cygwin bugs.
9968         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
9969         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
9970         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
9971         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
9972         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
9973         Likewise.
9974         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
9975         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
9976         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
9977         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
9978         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
9979         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
9980         Likewise.
9981
9982         Avoid gcc warning on cygwin.
9983         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
9984         !ACL_NO_TRIVIAL]: Avoid unused variable.
9985
9986 2008-06-05  Eric Blake  <ebb9@byu.net>
9987
9988         Be tolerant of UNKNOWN version in gnulib-tool test dir.
9989         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
9990         git-version-gen fails to come up with a version.
9991         Reported by Simon Josefsson.
9992
9993 2008-06-05  Jim Meyering  <meyering@redhat.com>
9994             Paul Eggert  <eggert@cs.ucla.edu>
9995
9996         utimens.c: work around a probable Linux kernel bug
9997         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
9998         appears to be a kernel bug that causes utimensat to return 280
9999         instead of 0, indicating success.
10000
10001 2008-06-04  Bruno Haible  <bruno@clisp.org>
10002
10003         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
10004         2008-06-01 commit.
10005
10006 2008-06-04  Bruno Haible  <bruno@clisp.org>
10007
10008         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
10009         * lib/file-has-acl.c (acl_access_nontrivial): New function.
10010         (file_has_acl): Use it. Save errno afterwards.
10011         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
10012
10013 2008-06-03  Bruno Haible  <bruno@clisp.org>
10014
10015         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
10016         draft code. Simplify #ifs.
10017         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
10018         Put Solaris code after POSIX-draft code. Fix comments regarding
10019         Solaris 10, HP-UX. Mention Cygwin.
10020         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
10021
10022 2008-06-03  Eric Blake  <ebb9@byu.net>
10023
10024         Provide fallback for older kernels.
10025         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
10026         Provide runtime fallback if kernel lacks support.
10027         Reported by Mike Frysinger.
10028
10029 2008-06-02  Bruno Haible  <bruno@clisp.org>
10030
10031         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
10032         it exists.
10033
10034 2008-06-02  Bruno Haible  <bruno@clisp.org>
10035
10036         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
10037         * lib/copy-acl.c (qcopy_acl): Update comment.
10038
10039 2008-06-02  Bruno Haible  <bruno@clisp.org>
10040
10041         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
10042         like ACL APIs.
10043
10044 2008-06-02  Bruno Haible  <bruno@clisp.org>
10045
10046         * tests/test-file-has-acl.sh: Use different code for Cygwin.
10047         * tests/test-set-mode-acl.sh: Likewise.
10048         * tests/test-copy-acl.sh: Likewise.
10049         * tests/test-copy-file.sh: Likewise.
10050
10051 2008-06-02  Bruno Haible  <bruno@clisp.org>
10052
10053         * tests/test-file-has-acl.sh: Remove unused code.
10054
10055 2008-06-01  Bruno Haible  <bruno@clisp.org>
10056
10057         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
10058         (copy_acl): Just a wrapper around qcopy_acl that emits the error
10059         messages.
10060         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
10061
10062 2008-06-01  Bruno Haible  <bruno@clisp.org>
10063
10064         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
10065         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
10066         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
10067         APIs.
10068         * modules/acl-tests (configure.ac): Remove tests now contained in
10069         m4/acl.m4.
10070
10071 2008-06-02  Jim Meyering  <meyering@redhat.com>
10072
10073         announce-gen: use a better key-server host name
10074         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
10075         it may be more consistently reliable.  Suggested by Werner Koch
10076         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
10077
10078 2008-06-01  Bruno Haible  <bruno@clisp.org>
10079
10080         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
10081         Reported by Voroskoi Andras <voroskoi@gmail.com>.
10082
10083 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
10084
10085         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
10086
10087 2008-06-01  Bruno Haible  <bruno@clisp.org>
10088
10089         New ACL tests.
10090         * tests/test-file-has-acl.sh: New file.
10091         * tests/test-file-has-acl.c: New file.
10092         * tests/test-set-mode-acl.sh: New file.
10093         * tests/test-set-mode-acl.c: New file.
10094         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
10095         * tests/test-copy-acl.c: New file.
10096         * modules/acl-tests: New file, based on modules/copy-file-tests.
10097         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
10098         (Depends-on): Add acl-tests.
10099         (configure.ac): Remove checks.
10100         (Makefile.am): Don't create test-sameacls program here any more.
10101
10102 2008-06-01  Bruno Haible  <bruno@clisp.org>
10103
10104         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
10105         * tests/test-sameacls.c: Include progname.h.
10106         (main): Invoke set_program_name. Portability fixes for MacOS X,
10107         Solaris, HP-UX.
10108
10109 2008-06-01  Bruno Haible  <bruno@clisp.org>
10110
10111         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
10112         function.
10113         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
10114
10115 2008-06-01  Bruno Haible  <bruno@clisp.org>
10116
10117         * modules/rpmatch (Depends-on): Add strdup.
10118
10119 2008-06-01  Bruno Haible  <bruno@clisp.org>
10120
10121         * lib/pipe.c: Include unistd-safer.h.
10122         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
10123         * modules/pipe (Depends-on): Add unistd-safer.
10124
10125 2008-05-30  Simon Josefsson  <simon@josefsson.org>
10126
10127         * modules/autobuild (configure.ac): Call AB_INIT.
10128
10129 2008-05-30  Simon Josefsson  <simon@josefsson.org>
10130
10131         * tests/test-getaddrinfo.c: Don't print debug messages by default.
10132         Suggested by Bruno Haible <bruno@clisp.org>.
10133
10134 2008-05-30  Simon Josefsson  <simon@josefsson.org>
10135
10136         * tests/test-base64.c: Cast size_t to unsigned long when invoking
10137         printf.  Use %lu instead of %d.  Reported by Bruno Haible
10138         <bruno@clisp.org>.
10139
10140 2008-05-29  Eric Blake  <ebb9@byu.net>
10141
10142         Prefer new POSIX 200x interfaces over futimesat.
10143         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
10144         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
10145         when available.
10146         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
10147
10148 2008-05-28  Bruno Haible  <bruno@clisp.org>
10149
10150         * modules/stpcpy (License): Change to LGPLv2+.
10151         Requested by David Lutterkort <dlutter@redhat.com>.
10152
10153 2008-05-27  Bruno Haible  <bruno@clisp.org>
10154
10155         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
10156         current mingw.
10157         Reported by Jose E. Marchesi <jemarch@gnu.org>.
10158
10159 2008-05-27  Bruno Haible  <bruno@clisp.org>
10160
10161         * modules/iconv_open (Link): New section, from module 'iconv'.
10162         * modules/striconv (Link): Likewise.
10163         * modules/striconveh (Link): Likewise.
10164         * modules/xstriconv (Link): Likewise.
10165         * modules/unicodeio (Link): Likewise.
10166         * modules/propername (Link): Likewise.
10167         Reported by Jim Meyering.
10168
10169 2008-05-26  Jim Meyering  <meyering@redhat.com>
10170
10171         sha256: do not artificially restrict buffer length to be < 2^32
10172         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
10173         uint32_t to size_t.
10174         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
10175         to match.
10176
10177         avoid unaligned access errors, e.g., on sparc
10178         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
10179         direct access through a possibly-unaligned uint64* pointer.
10180         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
10181         direct access through a possibly-unaligned uint32* pointer.
10182         Prompted by this patch from Tom "spot" Callaway:
10183         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
10184
10185         sha512.c: fix typo in comment
10186         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
10187
10188 2008-05-25  Bruno Haible  <bruno@clisp.org>
10189
10190         * lib/set-mode-acl.c: Renamed from lib/acl.c.
10191         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
10192         (Makefile.am): Update lib_SOURCES.
10193
10194 2008-05-25  Bruno Haible  <bruno@clisp.org>
10195
10196         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
10197
10198 2008-05-25  Jim Meyering  <meyering@redhat.com>
10199
10200         useless-if-before-free: freed expr may have white-space differences
10201         * build-aux/useless-if-before-free: Recognize cases in which the
10202         freed expression differs from the tested one in embedded white
10203         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
10204         $1 was used, so we can't make any regexp shy.  Improved tests now
10205         detect this.
10206
10207         useless-if-before-free: accept white space in the expression.
10208         * build-aux/useless-if-before-free: For now, any white space
10209         in the expression must be identical in the free argument.
10210
10211         useless-if-before-free: efficiency tweak
10212         * build-aux/useless-if-before-free: Make the expression-matching
10213         regexp "shy".
10214         Make the *outer* regexp shy, not the expr-matching one.
10215
10216         update code-in-comment to accept cast of free arg
10217         * build-aux/useless-if-before-free: Update regexp.
10218
10219 2008-05-25  Bruno Haible  <bruno@clisp.org>
10220
10221         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
10222         * modules/copy-file-tests (Files, Makefile.am): Update.
10223         * tests/test-copy-file.c (func_test_copy): Update.
10224
10225 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
10226
10227         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
10228
10229 2008-05-23  Bruno Haible  <bruno@clisp.org>
10230
10231         Improve support for ACLs on OSF/1.
10232         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
10233         Remove fallback for unknown flavors of ACLs.
10234
10235 2008-05-22  Bruno Haible  <bruno@clisp.org>
10236
10237         Add support for ACLs on OSF/1.
10238         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
10239         replacements.
10240         (acl_free_text): New macro fallback.
10241         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
10242         acl_free.
10243         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
10244         acl_free_text function. Require AC_C_INLINE.
10245
10246 2008-05-22  Bruno Haible  <bruno@clisp.org>
10247
10248         Make copy_acl work on MacOS X 10.5.
10249         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
10250         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
10251         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
10252         If MODE_INSIDE_ACL, don't assume that every system has the same text
10253         representation for ACLs as FreeBSD.
10254         * lib/copy-acl.c (copy_acl): Add support for platforms with
10255         !MODE_INSIDE_ACL.
10256         * lib/file-has-acl.c (file_has_acl): Likewise.
10257         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
10258         FreeBSD, MacOS X, or IRIX, respectively.
10259
10260 2008-05-22  Bruno Haible  <bruno@clisp.org>
10261
10262         * lib/acl.h: Don't include <sys/acl.h>.
10263         (GETACLCNT): Move fallback to lib/acl-internal.h.
10264         * lib/acl-internal.h: Include <sys/acl.h> here.
10265         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
10266
10267 2008-05-22  Bruno Haible  <bruno@clisp.org>
10268
10269         Split off copy_acl function to separate file.
10270         * lib/copy-acl.c: New file, extracted from lib/acl.c.
10271         * lib/acl.c (copy_acl): Moved function to separate file.
10272         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
10273         * modules/acl (Files): Add lib/copy-acl.c.
10274         (Makefiles.am): Augment lib_SOURCES.
10275
10276 2008-05-22  Bruno Haible  <bruno@clisp.org>
10277
10278         * modules/copy-file-tests: New file.
10279         * tests/test-copy-file.sh: New file.
10280         * tests/test-copy-file.c: New file.
10281         * tests/test-copy-file-sameacls.c: New file.
10282
10283 2008-05-22  Eric Blake  <ebb9@byu.net>
10284
10285         Avoid gcc warning.
10286         * tests/test-memcmp.c (main): Pass NULL indirectly.
10287
10288 2008-05-21  Bruno Haible  <bruno@clisp.org>
10289
10290         Add reference doc about ACLs.
10291         * doc/acl-resources.txt: New file.
10292         * doc/acl-cygwin.txt: New file.
10293
10294 2008-05-21  Bruno Haible  <bruno@clisp.org>
10295
10296         Avoid one more warning from gcc.
10297         * lib/vasnprintf.c (IF_LINT): Update comments.
10298         (VASNPRINTF): Use it also for the 'prefix' array initializer.
10299
10300 2008-05-21  Jim Meyering  <meyering@redhat.com>
10301
10302         avoid a warning from gcc
10303         * lib/vasnprintf.c (IF_LINT): Define.
10304         (scale10_round_decimal_long_double):
10305         Use it to avoid a "may be used uninitialized" warning.
10306         (scale10_round_decimal_double): Likewise.
10307
10308 2008-05-21  Simon Josefsson  <simon@josefsson.org>
10309
10310         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
10311         declared.
10312
10313 2008-05-20  Bruno Haible  <bruno@clisp.org>
10314
10315         * tests/test-memcmp.c (main): Test also the sign of the result. Test
10316         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
10317
10318 2008-05-20  Simon Josefsson  <simon@josefsson.org>
10319
10320         * modules/memcmp-tests: New file.
10321         * tests/test-memcmp.c: New file.
10322
10323 2008-05-19  Bruno Haible  <bruno@clisp.org>
10324
10325         * modules/propername (Notice, configure.ac): Put quoted "..." into
10326         --keyword option.
10327         * lib/propername.h: Update comments accordingly.
10328         Reported by Eric Blake.
10329
10330 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
10331
10332         * modules/getpass-gnu (Depends-on): Add fseeko.
10333
10334 2008-05-19  Simon Josefsson  <simon@josefsson.org>
10335
10336         * modules/base64-tests: New file.
10337
10338 2008-05-19  Bo Borgerson <gigabo@gmail.com>
10339
10340         * lib/base64.c (base64_decode_ctx): If a decode context structure
10341         was passed in use it to ignore newlines.  If a context structure
10342         was _not_ passed in, continue to treat newlines as garbage (this
10343         is the historical behavior).  Formerly base64_decode.
10344         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
10345         takes a decode context structure.
10346         * lib/base64.h (base64_decode): Macro for four-argument calls.
10347         (base64_decode_alloc): Likewise.
10348         * lib/base64.c (base64_decode_ctx): If a decode context structure
10349         was passed in use it to ignore newlines.  If a context structure
10350         was _not_ passed in, continue to treat newlines as garbage (this
10351         is the historical behavior).  Formerly base64_decode.
10352         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
10353         takes a decode context structure.
10354         * lib/base64.h (base64_decode): Macro for four-argument calls.
10355         (base64_decode_alloc): Likewise.
10356
10357 2008-05-19  Jim Meyering  <meyering@redhat.com>
10358
10359         avoid a warning from gcc
10360         * lib/trim.c (IF_LINT): Define.
10361         (trim2): Use it to avoid a "may be used uninitialized" warning.
10362
10363         Fix doc typo.
10364         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
10365
10366 2008-05-19  Bruno Haible  <bruno@clisp.org>
10367
10368         * doc/glibc-functions/getpass.texi: Document limits of other
10369         implementations.
10370
10371 2008-05-19  Simon Josefsson  <simon@josefsson.org>
10372             Bruno Haible <bruno@clisp.org>
10373
10374         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
10375
10376 2008-05-18  Bruno Haible  <bruno@clisp.org>
10377
10378         * modules/propername: New file, from GNU gettext.
10379         * lib/propername.h: New file, from GNU gettext.
10380         * lib/propername.c: New file, from GNU gettext.
10381         * MODULES.html.sh (Internationalization functions): Add propername.
10382
10383 2008-05-16  Jim Meyering  <meyering@redhat.com>
10384             Bruno Haible  <bruno@clisp.org>
10385
10386         Avoid some warnings from "gcc -Wshadow".
10387         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
10388
10389 2008-05-15  Eric Blake  <ebb9@byu.net>
10390
10391         Extend previous patch to cygwin 1.7.0.
10392         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
10393         fast implementation in cygwin >= 1.7.0.
10394         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
10395         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
10396
10397 2008-05-15  Bruno Haible  <bruno@clisp.org>
10398
10399         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
10400         implementation in glibc >= 2.9.
10401         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
10402         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
10403
10404 2008-05-15  Bruno Haible  <bruno@clisp.org>
10405
10406         * MODULES.html.sh (Internationalization functions): Remove linebreak.
10407         (Unicode string functions): Add unilbrk/*.
10408         Reported by Karl Berry.
10409
10410 2008-05-15  Eric Blake  <ebb9@byu.net>
10411
10412         Fix violation of <stdbool.h> replacement in regex.
10413         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
10414         * lib/regexec.c (re_search_internal): Likewise.
10415         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
10416
10417 2008-05-15  Jim Meyering  <meyering@redhat.com>
10418
10419         avoid distracting test output when git or cvs is not found
10420         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
10421         * tests/test-vc-list-files-git.sh: Likewise.
10422
10423 2008-05-15  Eric Blake  <ebb9@byu.net>
10424
10425         Glibc finally accepted the memmem speedup code, bugzilla #5514.
10426         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
10427         glibc version.
10428         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
10429         * doc/posix-functions/strstr.texi (strstr): Likewise.
10430         * lib/str-two-way.h (MAX): Sychronize with glibc.
10431
10432 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
10433
10434         * lib/regcomp.c (optimize_utf8): Add a note on why we test
10435         opr.ctx_type.
10436         (calc_first): Initialize constraint field.
10437         (duplicate_node_closure): Use it instead of special casing ANCHORS.
10438         Fix grammar.
10439         (duplicate_node): Merge constraint field for all node types.
10440         (calc_eclosure_iter): Look at constraint field for all node types.
10441         * lib/regex_internal.c (create_cd_newstate): Don't look at
10442         opr.ctx_type.
10443
10444 2008-05-14  Bruno Haible  <bruno@clisp.org>
10445
10446         Help GCC to do better code generation.
10447         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
10448         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
10449         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
10450         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
10451         Declare with attribute 'malloc' if supported.
10452
10453 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
10454
10455         use "echo STR|wc -c" rather than unportable "expr length STR"
10456         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
10457         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
10458
10459 2008-05-14  Jim Meyering  <meyering@redhat.com>
10460
10461         use dd ibs=$n count=1 ... rather than less-portable head -c$n
10462         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
10463         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
10464         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
10465         via Collin Lasse.
10466
10467 2008-05-14  Eric Blake  <ebb9@byu.net>
10468
10469         Avoid quadratic growth in gl_LIBSOURCES.
10470         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
10471         Suggested by Bruno Haible.
10472
10473         Test xmemdup0.
10474         * modules/xmemdup0-tests: New file.
10475         * tests/test-xmemdup0.c: Likewise.
10476
10477 2008-05-13  Eric Blake  <ebb9@byu.net>
10478
10479         Split xmemdup0 into its own module.
10480         * modules/xmemdup0: New file.
10481         * lib/xmemdup0.h: Likewise.
10482         * lib/xmemdup0.c: Likewise.
10483         * MODULES.html.sh (Memory management functions): Add xmemdup0.
10484         * lib/xalloc.h (xmemdup0): Remove.
10485         * lib/xmalloc.c (xmemdup0): Likewise.
10486
10487 2008-05-13  Eric Blake  <ebb9@byu.net>
10488             Bruno Haible  <bruno@clisp.org>
10489
10490         Reduce number of forks required during autoconf.
10491         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
10492         and gl_LIBSOURCES_DIR.
10493         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
10494         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
10495         m4_syscmd per file.
10496         <m4_foreach_w>: Move...
10497         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
10498
10499 2008-05-13  Eric Blake  <ebb9@byu.net>
10500
10501         * gnulib-tool: Fix various comment typos.
10502
10503 2008-05-12  Bruno Haible  <bruno@clisp.org>
10504
10505         Tailor the linebreaking algorithm.
10506         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
10507
10508 2008-05-12  Bruno Haible  <bruno@clisp.org>
10509
10510         Update to Unicode 5.0.0.
10511         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
10512         LBP_JV, LBP_JT. Redistribute values.
10513         (unilbrk_table): Change size.
10514         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
10515         Unicode TR#14 rev. 22.
10516         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
10517         LBP_JV, LBP_JT. Redistribute values.
10518         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
10519         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
10520         Update.
10521         * lib/unilbrk/lbrkprop1.h: Regenerated.
10522         * lib/unilbrk/lbrkprop2.h: Regenerated.
10523         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
10524         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
10525         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
10526         Likewise.
10527         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
10528         Likewise.
10529         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
10530         result.
10531         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
10532         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
10533         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
10534         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
10535         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
10536         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
10537
10538 2008-05-11  Bruno Haible  <bruno@clisp.org>
10539
10540         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
10541
10542 2008-05-11  Bruno Haible  <bruno@clisp.org>
10543
10544         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
10545         * modules/unilbrk/gen-lbrk: New file.
10546
10547 2008-05-11  Bruno Haible  <bruno@clisp.org>
10548
10549         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
10550         * m4/sha512.m4 (gl_SHA512): Likewise.
10551
10552 2008-05-11  Jim Meyering  <meyering@redhat.com>
10553
10554         New modules: crypto/sha256, crypto/sha512 (from coreutils)
10555         * modules/crypto/sha256: New file.
10556         * modules/crypto/sha512: Likewise.
10557         * lib/sha256.c: Likewise.
10558         * lib/sha256.h: Likewise.
10559         * lib/sha512.c: Likewise.
10560         * lib/sha512.h: Likewise.
10561         * lib/u64.h: Likewise.
10562         * m4/sha256.m4: Likewise.
10563         * m4/sha512.m4: Likewise.
10564         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
10565
10566 2008-05-10  Bruno Haible  <bruno@clisp.org>
10567
10568         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
10569         (Input/Output <stdio.h>): Add xprintf.
10570         (Signal handling <signal.h>): Add strsignal.
10571         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
10572         (Core language properties): Add func.
10573         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
10574         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
10575         strings.
10576         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
10577         (Input/output): New section.
10578         (File system functions): Add openat-die, stat-macros.
10579         (Networking functions): Add sockets.
10580         (Unicode string functions): Add unictype/*.
10581         (Support for building libraries and executables): Add gperf.
10582         (Support for building documentation): Add agpl-3.0.
10583         (Misc): Add nocrash.
10584
10585 2008-05-10  Bruno Haible  <bruno@clisp.org>
10586
10587         * modules/unictype/gen-ctype: New file.
10588
10589 2008-05-10  Jim Meyering  <meyering@redhat.com>
10590
10591         Make chdir-safer.c more efficient on a system with no symlinks.
10592         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
10593         also if ELOOP is zero.  Suggested by Bruno Haible.
10594
10595         Make chdir-safer.c slightly safer.
10596         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
10597         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
10598
10599         Avoid compile failure on systems without ELOOP (like mingw).
10600         * lib/chdir-safer.c (ELOOP): Define if not already defined.
10601         Reported by Bruno Haible.
10602
10603 2008-05-10  Bruno Haible  <bruno@clisp.org>
10604
10605         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
10606         (is_utf8_encoding): Use a case-insensitive comparison.
10607         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
10608         streq.
10609
10610 2008-05-10  Bruno Haible  <bruno@clisp.org>
10611
10612         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
10613         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
10614         * lib/unilbrk/ulc-common.h (iconv_string_length,
10615         iconv_string_keeping_offsets): Remove declarations.
10616         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
10617         Don't include <iconv.h>, streq.h, xsize.h.
10618         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
10619         conversion.
10620         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
10621         <iconv.h>, streq.h, xsize.h.
10622         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
10623         conversion.
10624         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
10625         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
10626         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
10627         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
10628
10629 2008-05-10  Bruno Haible  <bruno@clisp.org>
10630
10631         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
10632         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
10633
10634         * modules/unilbrk/u32-width-linebreaks-tests: New file.
10635         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
10636
10637         * modules/unilbrk/u16-width-linebreaks-tests: New file.
10638         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
10639
10640         * modules/unilbrk/u8-width-linebreaks-tests: New file.
10641         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
10642
10643         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
10644         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
10645
10646         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
10647         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
10648
10649         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
10650         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
10651
10652         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
10653         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
10654
10655 2008-05-10  Bruno Haible  <bruno@clisp.org>
10656
10657         Split up 'linebreak' module.
10658         * lib/unilbrk.h: New file, based on lib/linebreak.h.
10659         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
10660         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
10661         modifications.
10662         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
10663         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
10664         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
10665         lib/linebreak.c.
10666         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
10667         lib/linebreak.c.
10668         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
10669         lib/linebreak.c.
10670         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
10671         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
10672         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
10673         lib/linebreak.c.
10674         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
10675         lib/linebreak.c.
10676         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
10677         lib/linebreak.c.
10678         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
10679         lib/linebreak.c.
10680         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
10681         lib/linebreak.c.
10682         * modules/unilbrk/base: New file.
10683         * modules/unilbrk/tables: New file.
10684         * modules/unilbrk/u8-possible-linebreaks: New file.
10685         * modules/unilbrk/u16-possible-linebreaks: New file.
10686         * modules/unilbrk/u32-possible-linebreaks: New file.
10687         * modules/unilbrk/ulc-common: New file.
10688         * modules/unilbrk/ulc-possible-linebreaks: New file.
10689         * modules/unilbrk/u8-width-linebreaks: New file.
10690         * modules/unilbrk/u16-width-linebreaks: New file.
10691         * modules/unilbrk/u32-width-linebreaks: New file.
10692         * modules/unilbrk/ulc-width-linebreaks: New file.
10693         * lib/linebreak.h: Remove file.
10694         * lib/linebreak.c: Remove file.
10695         * m4/linebreak.m4: Remove file.
10696         * modules/linebreak: Remove file.
10697         * NEWS: Mention the changes.
10698
10699 2008-05-09  Eric Blake  <ebb9@byu.net>
10700
10701         Add xmemdup0.
10702         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
10703         implementation.
10704         * lib/xmalloc.c (xmemdup0): New C implementation.
10705
10706 2008-05-08  Bruno Haible  <bruno@clisp.org>
10707
10708         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
10709
10710 2008-05-07  Eric Blake  <ebb9@byu.net>
10711
10712         Support cross-compilation of <wctype.h>.
10713         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
10714         AC_CACHE_CHECK.
10715
10716 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
10717
10718         * build-aux/vc-list-files: Add support for bzr.
10719
10720 2008-05-03  Jim Meyering  <meyering@redhat.com>
10721
10722         avoid failed assertion with tight malloc
10723         * tests/test-getndelim2.c: Correct an off-by-one assertion.
10724
10725 2008-05-03  Simon Josefsson  <simon@josefsson.org>
10726
10727         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
10728         are needed from arpa/inet.h.
10729         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
10730         Reported by Bruno Haible.
10731
10732 2008-05-02  Jim Meyering  <meyering@redhat.com>
10733
10734         avoid compilation error on FreeBSD 6
10735         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
10736
10737 2008-05-01  Jim Meyering  <meyering@redhat.com>
10738
10739         useless-if-before-free: correct --help's exit status description
10740         * build-aux/useless-if-before-free (usage): Like grep, exit 0
10741         for one or more matches, etc.  Reported by Bruno Haible.
10742
10743         vc-list-files: make the stand-alone gnulib test work
10744         * modules/vc-list-files-tests (configure.ac):
10745         Define and AC_SUBST abs_aux_dir.
10746         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
10747         $(abs_top_srcdir) to each script and having each of them
10748         duplicate the work of setting PATH, set PATH here, using
10749         the new variable, abs_aux_dir instead.
10750         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
10751         * tests/test-vc-list-files-git.sh: Likewise.
10752         Reported by Bruno Haible.
10753
10754 2008-05-01  Bruno Haible  <bruno@clisp.org>
10755
10756         * lib/getndelim2.c (getndelim2): Fix newsize computation during
10757         reallocation. Rename 'done' to 'found_delimiter'.
10758
10759 2008-05-01  Jim Meyering  <meyering@redhat.com>
10760
10761         vc-list-files: accommodate /bin/sh like the one from Solaris 10
10762         * build-aux/vc-list-files: Use `...`, not $(...).
10763
10764 2008-04-30  Jim Meyering  <meyering@redhat.com>
10765
10766         add tests for vc-list-files
10767         * modules/vc-list-files-tests: New module.
10768         * tests/test-vc-list-files-cvs.sh: New file.
10769         * tests/test-vc-list-files-git.sh: New file.
10770
10771         avoid a warning from gcc
10772         * lib/getndelim2.c (IF_LINT): Define.
10773         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
10774
10775         vc-list-files: work properly with build-aux/cvsu, too
10776         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
10777         to all cvs-based clauses.
10778
10779         vc-list-files: work properly in the CVS+awk case, too
10780         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
10781
10782         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
10783         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
10784         take more than one file argument, so .  Add quotes, just in case $dir
10785         ever contains a shell meta-character.  Prompted by Soren Hansen in
10786         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
10787
10788 2008-04-29  Eric Blake  <ebb9@byu.net>
10789
10790         Optimize getndelim2 to use block operations when possible.
10791         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
10792         freadseek, and memchr2.
10793         * lib/getndelim2.c (getndelim2): Use them for block reads.
10794
10795 2008-04-29  Bruno Haible  <bruno@clisp.org>
10796
10797         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
10798         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
10799         * modules/inet_ntop (Depends-on): Add extensions.
10800         * modules/inet_pton (Depends-on): Likewise.
10801         Reported by Simon Josefsson.
10802
10803 2008-04-29  Jim Meyering  <meyering@redhat.com>
10804
10805         When the is more than one match in a block, match all of them.
10806         * build-aux/useless-if-before-free: Iterate through each block
10807         until there are no more matches.
10808
10809         Fix broken useless-if-before-free script.
10810         * build-aux/useless-if-before-free: Fix typo: missing "?" after
10811         the expression to match cast of argument to free-like function.
10812
10813 2008-04-29  Eric Blake  <ebb9@byu.net>
10814
10815         Use new header.
10816         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
10817
10818 2008-04-29  Jim Meyering  <meyering@redhat.com>
10819
10820         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
10821         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
10822         by gnulib to exist and to declare e.g., inet_ntop.
10823         Don't include "inet_ntop.h", now removed.
10824
10825         * m4/arpa_inet_h.m4: Remove trailing blanks.
10826
10827 2008-04-29  Eric Blake  <ebb9@byu.net>
10828
10829         Silence valgrind on safe reads beyond potential array bounds.
10830         * lib/rawmemchr.valgrind: New file.
10831         * lib/strchrnul.valgrind: Likewise.
10832         * modules/rawmemchr (Files): Distribute new file.
10833         * modules/strchrnul (Files): Likewise.
10834         Suggested by Bruno Haible.
10835
10836 2008-04-29  Bruno Haible  <bruno@clisp.org>
10837
10838         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
10839         (inet_ntop, inet_pton): Change portability warning's wording.
10840         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
10841         Invoke gl_CHECK_NEXT_HEADERS.
10842         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
10843         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
10844         set ARPA_INET_H.
10845         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
10846         * modules/arpa_inet (Description): No longer only for systems that
10847         lack it.
10848         (Depends-on): Add include_next.
10849         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
10850         HAVE_ARPA_INET_H.
10851
10852 2008-04-29  Jim Meyering  <meyering@redhat.com>
10853
10854         * modules/mkdir (License): Re-license as LGPLv2+.
10855
10856 2008-04-29  Bruno Haible  <bruno@clisp.org>
10857
10858         * modules/rawmemchr (Maintainer): Set to Eric.
10859         * modules/strchrnul (Maintainer): Likewise.
10860
10861 2008-04-29  Simon Josefsson  <simon@josefsson.org>
10862
10863         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
10864         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
10865
10866         * modules/arpa_inet (arpa/inet.h): Use them.
10867
10868 2008-04-28  Eric Blake  <ebb9@byu.net>
10869
10870         Test getndelim2.
10871         * modules/getndelim2-tests: New file.
10872         * tests/test-getndelim2.c: Likewise.
10873         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
10874         stream.
10875         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
10876
10877         * MODULES.html.sh: Document new module.
10878
10879 2008-04-20  Bruno Haible  <bruno@clisp.org>
10880
10881         * lib/c-stack.c (die): Use raise.
10882         * modules/c-stack (Depends-on): Add raise.
10883
10884 2008-04-28  Bruno Haible  <bruno@clisp.org>
10885
10886         Expect rpmatch to be declared.
10887         * lib/yesno.c (rpmatch): Remove declaration.
10888
10889         Declare rpmatch.
10890         * lib/stdlib.in.h (rpmatch): New declaration.
10891         * lib/rpmatch.c: Include <stdlib.h> first.
10892         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
10893         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
10894         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
10895         HAVE_RPMATCH.
10896         * modules/rpmatch (Depends-on): Add stdlib, extensions.
10897         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
10898         (Include): Set to <stdlib.h>.
10899         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
10900         HAVE_RPMATCH.
10901         * NEWS: Document the change.
10902
10903 2008-04-28  Bruno Haible  <bruno@clisp.org>
10904
10905         Change rpmatch to use nl_langinfo when appropriate.
10906         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
10907         (N_): New macro.
10908         (localized_pattern): New function/macro.
10909         (try): Remove match, nomatch arguments. Copy the pattern into safe
10910         memory before caching it.
10911         (rpmatch): Use localized_pattern. Add translator comments.
10912         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
10913         Suggested by Eric Blake.
10914         * modules/rpmatch (Depends-on): Add stdbool.
10915
10916 2008-04-28  Eric Blake  <ebb9@byu.net>
10917
10918         Add rawmemchr module, matching glibc.
10919         * modules/string (Makefile.am): New indicator.
10920         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
10921         * lib/string.in.h (rawmemchr): Declare when appropriate.
10922         * modules/rawmemchr: New file.
10923         * m4/rawmemchr.m4: Likewise.
10924         * lib/rawmemchr.c: Likewise.
10925         * modules/rawmemchr-tests: Likewise.
10926         * tests/test-rawmemchr.c: Likewise.
10927         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
10928         module.
10929         * modules/strchrnul (Depends-on): Add rawmemchr.
10930         * lib/strchrnul.c (strchrnul): Optimize a corner case.
10931
10932         Whitespace cleanup.
10933         * tests/test-strchrnul.c: Reindent.
10934         * lib/strchrnul.c: Likewise.
10935
10936         Optimize and test strchrnul.
10937         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
10938         * modules/strchrnul-tests: New file.
10939         * tests/test-strchrnul.c: Likewise.
10940
10941         Remove intprops dependency.
10942         * modules/memchr (Depends-on): Remove intprops.
10943         * modules/memrchr (Depends-on): Likewise.
10944         * modules/memchr2 (Depends-on): Likewise.
10945         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
10946         * lib/memrchr.c (__memrchr): Likewise.
10947         * lib/memrchr2.c (memchr2): Likewise.
10948         Reported by Simon Josefsson.
10949
10950 2008-04-28  Simon Josefsson  <simon@josefsson.org>
10951
10952         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
10953         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10954
10955 2008-04-28  Simon Josefsson  <simon@josefsson.org>
10956
10957         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
10958
10959         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
10960
10961         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
10962
10963         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
10964         declarations.
10965         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
10966
10967         * m4/inet_pton.m4: Don't check for header files.
10968
10969         * m4/inet_ntop.m4: Don't check for header files.
10970
10971 2008-04-28  Simon Josefsson  <simon@josefsson.org>
10972
10973         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
10974         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
10975         trigger for cygwin).
10976         Reported by Bruno Haible  <bruno@clisp.org>.
10977
10978 2008-04-28  Bruno Haible  <bruno@clisp.org>
10979
10980         * doc/posix-functions/strdup.texi: Mention mingw problem.
10981
10982 2008-04-27  Bruno Haible  <bruno@clisp.org>
10983
10984         * modules/stat-time-tests (Depends-on): Add sleep.
10985         * tests/test-stat-time.c (force_unlink): New function.
10986         (cleanup): Use it.
10987         (test_mtime): Remove the ctime related tests.
10988         (test_ctime): New function, containing the ctime related tests.
10989         (main): Call test_ctime, except on native Windows platforms.
10990
10991 2008-04-27  Bruno Haible  <bruno@clisp.org>
10992
10993         * lib/rpmatch.c (rpmatch): Add some comments.
10994         Reported by James Youngman <jay@gnu.org>.
10995
10996 2008-04-27  Bruno Haible  <bruno@clisp.org>
10997
10998         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
10999         quiet NaNs.
11000
11001 2008-04-27  Bruno Haible  <bruno@clisp.org>
11002
11003         Make test-yesno.sh work on mingw.
11004         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
11005         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
11006         (main): Set stdin to binary mode.
11007         * modules/yesno-tests (Depends-on): Add binary-io.
11008
11009 2008-04-27  Bruno Haible  <bruno@clisp.org>
11010
11011         Fix 'isfinite' on x86, x86_64, ia64 platforms.
11012         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
11013         argument that lie outside the IEEE 854 domain.
11014         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
11015         (gl_ISFINITE): Use it.
11016         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
11017
11018 2008-04-27  Bruno Haible  <bruno@clisp.org>
11019
11020         Allow local renaming in config.h.
11021         * lib/memrchr.c (memrchr): Don't undefine outside libc.
11022
11023 2008-04-27  Bruno Haible  <bruno@clisp.org>
11024
11025         * lib/memchr.c (__memchr): Change type of 'i'.
11026         * lib/memchr2.c (memchr2): Likewise.
11027
11028 2008-04-26  Eric Blake  <ebb9@byu.net>
11029         and Bruno Haible  <bruno@clisp.org>
11030
11031         Optimize and test memrchr.
11032         * modules/memrchr (Depends-on): Add intprops.
11033         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
11034         * modules/memrchr-tests: New file.
11035         * tests/test-memrchr.c: New file.
11036
11037 2008-04-26  Bruno Haible  <bruno@clisp.org>
11038
11039         Add tentative support for DragonFly BSD.
11040         * lib/stdio-impl.h: Add macros for DragonFly BSD.
11041         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
11042         fp.
11043         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
11044         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
11045         * lib/fpurge.c (fpurge): Likewise.
11046         * lib/freadable.c (freaadable): Likewise.
11047         * lib/freadahead.c (freadahead): Likewise.
11048         * lib/freading.c (freading): Likewise.
11049         * lib/freadptr.c (freadptr): Likewise.
11050         * lib/freadseek.c (freadptrinc): Likewise.
11051         * lib/fseeko.c (fseeko): Likewise.
11052         * lib/fseterr.c (fseterr): Likewise.
11053         * lib/fwritable.c (fwritable): Likewise.
11054         * lib/fwriting.c (fwriting): Likewise.
11055
11056 2008-04-26  Bruno Haible  <bruno@clisp.org>
11057
11058         * lib/stdio-impl.h: New file.
11059         * lib/fbufmode.c: Include stdio-impl.h.
11060         (fbufmode): Use fp_, remove redundant #defines.
11061         * lib/fflush.c: Include stdio-impl.h.
11062         (clear_ungetc_buffer): Remove redundant #defines.
11063         * lib/fpurge.c: Include stdio-impl.h.
11064         (fpurge): Remove redundant #defines.
11065         * lib/freadable.c: Include stdio-impl.h.
11066         (freadable): Remove redundant #defines.
11067         * lib/freadahead.c: Include stdio-impl.h.
11068         (freadahead): Remove redundant #defines.
11069         * lib/freading.c: Include stdio-impl.h.
11070         (freading): Remove redundant #defines.
11071         * lib/freadptr.c: Include stdio-impl.h.
11072         (freadptr): Remove redundant #defines.
11073         * lib/freadseek.c: Include stdio-impl.h.
11074         (freadptrinc): Remove redundant #defines.
11075         * lib/fseeko.c: Include stdio-impl.h.
11076         (rpl_fseeko): Remove redundant #defines.
11077         * lib/fseterr.c: Include stdio-impl.h.
11078         (fseterr): Remove redundant #defines.
11079         * lib/fwritable.c: Include stdio-impl.h.
11080         (fwritable: Remove redundant #defines.
11081         * lib/fwriting.c: Include stdio-impl.h.
11082         (fwriting): Remove redundant #defines.
11083         * modules/fbufmode (Files): Add lib/stdio-impl.h.
11084         * modules/fflush (Files): Likewise.
11085         * modules/fpurge (Files): Likewise.
11086         * modules/freadable (Files): Likewise.
11087         * modules/freadahead (Files): Likewise.
11088         * modules/freading (Files): Likewise.
11089         * modules/freadptr (Files): Likewise.
11090         * modules/freadseek (Files): Likewise.
11091         * modules/fseeko (Files): Likewise.
11092         * modules/fseterr (Files): Likewise.
11093         * modules/fwritable (Files): Likewise.
11094         * modules/fwriting (Files): Likewise.
11095
11096 2008-04-26  Bruno Haible  <bruno@clisp.org>
11097
11098         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
11099         restore_seek_optimization, update_fpos_cache): New functions, extracted
11100         from rpl_fflush.
11101         (rpl_fflush): Use them.
11102         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
11103         (gl_REPLACE_FFLUSH): Use it.
11104
11105 2008-04-26  Bruno Haible  <bruno@clisp.org>
11106
11107         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
11108         on Solaris.
11109         * tests/test-xstrtoimax.sh: Likewise.
11110         * tests/test-xstrtoumax.sh: Likewise.
11111         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
11112
11113 2008-04-26  Bruno Haible  <bruno@clisp.org>
11114
11115         * modules/memchr-tests: New file.
11116         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
11117
11118 2008-04-26  Eric Blake  <ebb9@byu.net>
11119             Bruno Haible  <bruno@clisp.org>
11120
11121         * lib/memchr.c: Include intprops.h.
11122         (__memchr): Optimize parallel detection of matching bytes. Rename local
11123         variables. Add explanatory comments.
11124
11125 2008-04-26  Bruno Haible  <bruno@clisp.org>
11126
11127         Fix module 'memchr', broken since 2000-10-28.
11128         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
11129
11130 2008-04-26  Bruno Haible  <bruno@clisp.org>
11131
11132         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
11133         comments.
11134
11135 2008-04-25  Eric Blake  <ebb9@byu.net>
11136
11137         Use native fstatat on cygwin 1.7.0.
11138         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
11139         first.
11140
11141 2008-04-23  Eric Blake  <ebb9@byu.net>
11142
11143         Improve memchr2 performance.
11144         * lib/memchr2.c (memchr2): Further optimize parallel detection of
11145         NUL bytes.
11146         * modules/memchr2 (Depends-on): Use intprops.h.
11147
11148 2008-04-23  Simon Josefsson  <simon@josefsson.org>
11149
11150         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
11151         an inline function instead of a CPP macro.  Patch by Ben Pfaff
11152         <blp@cs.stanford.edu>.
11153
11154 2008-04-23  Simon Josefsson  <simon@josefsson.org>
11155
11156         * lib/arpa_inet.in.h: New file.
11157
11158         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
11159         (Makefile.am): Sed in substitute header file.
11160
11161         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
11162         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
11163
11164         * modules/inet_ntop (configure.ac): Use
11165         gl_ARPA_INET_MODULE_INDICATOR.
11166
11167         * modules/inet_pton (configure.ac): Use
11168         gl_ARPA_INET_MODULE_INDICATOR.
11169
11170 2008-04-22  Jim Meyering  <meyering@redhat.com>
11171
11172         * modules/verify (License): Re-license as LGPLv2+.
11173
11174 2008-04-22  Simon Josefsson  <simon@josefsson.org>
11175
11176         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
11177         parameter to void* as per POSIX standard (MinGW uses char*).
11178
11179 2008-04-21  Bruno Haible  <bruno@clisp.org>
11180
11181         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
11182         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
11183         Define to replacements if REPLACE_ISWCNTRL is 1.
11184         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
11185         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
11186         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
11187         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
11188         what it fixes.
11189         * doc/posix-functions/iswalpha.texi: Likewise.
11190         * doc/posix-functions/iswblank.texi: Likewise.
11191         * doc/posix-functions/iswcntrl.texi: Likewise.
11192         * doc/posix-functions/iswdigit.texi: Likewise.
11193         * doc/posix-functions/iswgraph.texi: Likewise.
11194         * doc/posix-functions/iswlower.texi: Likewise.
11195         * doc/posix-functions/iswprint.texi: Likewise.
11196         * doc/posix-functions/iswpunct.texi: Likewise.
11197         * doc/posix-functions/iswspace.texi: Likewise.
11198         * doc/posix-functions/iswupper.texi: Likewise.
11199         * doc/posix-functions/iswxdigit.texi: Likewise.
11200         Reported by Alain Guibert.
11201
11202 2008-04-21  Bruno Haible  <bruno@clisp.org>
11203
11204         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
11205         Patch by Alain Guibert.
11206
11207 2008-04-21  Bruno Haible  <bruno@clisp.org>
11208
11209         Fix test failures on mingw.
11210         * tests/test-xstrtol.c (print_no_progname): New function.
11211         (main): Install it in error_print_progname hook.
11212         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
11213         * tests/test-xstrtoimax.sh: Likewise.
11214         * tests/test-xstrtoumax.sh: Likewise.
11215
11216 2008-04-21  Bruno Haible  <bruno@clisp.org>
11217
11218         Fix test failure on mingw.
11219         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
11220
11221 2008-04-21  Bruno Haible  <bruno@clisp.org>
11222
11223         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
11224         Actually assign a value.
11225
11226 2008-04-20  Bruno Haible  <bruno@clisp.org>
11227
11228         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
11229         take 2.
11230         * lib/canonicalize.c (canonicalize_file_name): Elide if the
11231         'canonicalize-lgpl' module is also used.
11232         * lib/canonicalize-lgpl.c: Undo last change.
11233         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
11234
11235 2008-04-20  Bruno Haible  <bruno@clisp.org>
11236
11237         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
11238         config.h. Provide _mkdir based fallback for mingw.
11239         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
11240         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
11241         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
11242         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
11243         rather than defining mkdir in config.h.
11244         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
11245         (gl_SYS_STAT_H_DEFAULTS): New macro.
11246         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
11247         HAVE_IO_H any more.
11248         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
11249         HAVE_DECL_MKDIR and HAVE_IO_H.
11250
11251 2008-04-20  Bruno Haible  <bruno@clisp.org>
11252
11253         * lib/isapipe.c: Port to native Windows platforms.
11254
11255 2008-04-20  Bruno Haible  <bruno@clisp.org>
11256
11257         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
11258
11259 2008-04-21  Eric Blake  <ebb9@byu.net>
11260
11261         Work around preprocessors that don't handle UINTMAX_MAX.
11262         * lib/memchr2.c (memchr2): Avoid embedded #if.
11263         Reported by Alain Guibert, fix suggested by Bruno Haible.
11264
11265 2008-04-21  Simon Josefsson  <simon@josefsson.org>
11266
11267         * doc/posix-functions/strftime.texi (strftime): Explain better
11268         Windows incompatibility.  Suggested by Micah Cowan
11269         <micah@cowan.name>.
11270
11271 2008-04-20  Bruno Haible  <bruno@clisp.org>
11272
11273         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
11274         unistr/u8-mblen.
11275
11276 2008-04-20  Bruno Haible  <bruno@clisp.org>
11277
11278         Fix test failure on platforms with non-GNU iconv.
11279         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
11280         (U_TO_U8): Use it, rather than u16_to_u8.
11281         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
11282         units at the end of the input string.
11283         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
11284
11285 2008-04-20  Bruno Haible  <bruno@clisp.org>
11286
11287         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
11288         when the resulting length is 0.
11289         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
11290
11291 2008-04-20  Bruno Haible  <bruno@clisp.org>
11292
11293         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
11294         works.
11295         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
11296
11297 2008-04-20  Bruno Haible  <bruno@clisp.org>
11298
11299         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
11300         * modules/tsearch-tests (configure.ac): Test for initstate function.
11301
11302 2008-04-20  Bruno Haible  <bruno@clisp.org>
11303
11304         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
11305         for nlink_t if missing.
11306         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
11307
11308 2008-04-19  Bruno Haible  <bruno@clisp.org>
11309
11310         Work around snprintf bug on Linux libc5.
11311         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
11312         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
11313         gl_SNPRINTF_SIZE1.
11314         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11315         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
11316         that test failed.
11317         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
11318         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
11319         * modules/snprintf (Files): Add m4/printf.m4.
11320         * modules/vsnprintf (Files): Likewise.
11321         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
11322         * doc/posix-functions/vsnprintf.texi: Likewise.
11323
11324 2008-04-19  Bruno Haible  <bruno@clisp.org>
11325
11326         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
11327         from 0.0058 to less than 10^-7.
11328
11329 2008-04-19  Bruno Haible  <bruno@clisp.org>
11330
11331         Fix rounding when a precision is given.
11332         * lib/vasnprintf.c (is_borderline): New function.
11333         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
11334         9...9x.
11335         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
11336         %e, %g.
11337         * tests/test-vasprintf-posix.c (test_function): Likewise.
11338         * tests/test-snprintf-posix.h (test_function): Likewise.
11339         * tests/test-sprintf-posix.h (test_function): Likewise.
11340         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
11341         * tests/test-printf-posix.h (test_function): Likewise.
11342         * tests/test-printf-posix.output: Update.
11343         Reported by John Darrington <john@darrington.wattle.id.au> via
11344         Ben Pfaff <blp@cs.stanford.edu>.
11345
11346 2008-04-18  Simon Josefsson  <simon@josefsson.org>
11347
11348         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
11349         Suggested by Bruno Haible <bruno@clisp.org>.
11350
11351 2008-04-17  Bruno Haible  <bruno@clisp.org>
11352
11353         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
11354         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
11355         implementation.
11356         Patch by Bruce Merry <bmerry@gmail.com>.
11357
11358 2008-04-17  Simon Josefsson  <simon@josefsson.org>
11359
11360         * doc/posix-functions/strftime.texi (strftime): Mention that %e
11361         doesn't work under Windows.
11362
11363 2008-04-16  Bruno Haible  <bruno@clisp.org>
11364
11365         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
11366         New macros.
11367         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
11368         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
11369         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
11370         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
11371         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
11372         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
11373         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
11374         macros.
11375         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
11376         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
11377         Northern Sotho, Uighur.
11378
11379 2008-04-16  Bruno Haible  <bruno@clisp.org>
11380
11381         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
11382         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
11383         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
11384         Reported by Daniel Bergström <daniel@octocode.com>.
11385
11386 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
11387             Bruno Haible  <bruno@clisp.org>
11388
11389         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
11390         function.
11391         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
11392         New functions, mostly extracted from gl_locale_name_default.
11393         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
11394
11395 2008-04-16  Eric Blake  <ebb9@byu.net>
11396
11397         Adjust strtod detection to catch glibc 2.7 bug.
11398         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
11399         Reported by John Gatewood Ham.
11400
11401 2008-04-16  Bruno Haible  <bruno@clisp.org>
11402
11403         Add tentative support for Linux libc5.
11404         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
11405         * lib/fpurge.c (fpurge): Likewise.
11406         * lib/freadable.c (freadable): Likewise.
11407         * lib/freadahead.c (freadahead): Likewise.
11408         * lib/freading.c (freading): Likewise.
11409         * lib/freadptr.c (freadptr): Likewise.
11410         * lib/freadseek.c (freadptrinc): Likewise.
11411         * lib/fseeko.c (rpl_fseeko): Likewise.
11412         * lib/fseterr.c (fseterr): Likewise.
11413         * lib/fwritable.c (fwritable): Likewise.
11414         * lib/fwriting.c (fwriting): Likewise.
11415         Reported by Alain Guibert <alguibert+bts@free.fr>.
11416
11417 2008-04-15  Bruno Haible  <bruno@clisp.org>
11418
11419         * modules/mathl (configure.ac): Define module indicator.
11420
11421 2008-04-15  Bruno Haible  <bruno@clisp.org>
11422
11423         * lib/logl.c (logl): Remove unused variables.
11424
11425 2008-04-15  Bruno Haible  <bruno@clisp.org>
11426
11427         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
11428         fails.
11429
11430 2008-04-15  Bruno Haible  <bruno@clisp.org>
11431
11432         * lib/trim.c (trim2): Fix argument of isspace() macro.
11433
11434 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
11435
11436         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
11437         to 0.
11438         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
11439
11440 2008-04-14  Bruno Haible  <bruno@clisp.org>
11441
11442         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
11443         AC_LANG_PROGRAM argument.
11444         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
11445         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
11446         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
11447         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
11448         * m4/math_h.m4 (gl_MATH_H): Likewise.
11449         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
11450         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
11451         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
11452         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
11453         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
11454         * m4/regex.m4 (gl_REGEX): Likewise.
11455         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
11456         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
11457         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11458         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
11459         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
11460         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11461         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
11462         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
11463
11464 2008-04-14  Jim Meyering  <meyering@redhat.com>
11465
11466         test-strtod: fix typos: s/abs/fabs/
11467         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
11468
11469 2008-04-13  Bruno Haible  <bruno@clisp.org>
11470
11471         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
11472         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
11473         module is also used and while not building the reloc-wrapper.
11474
11475 2008-04-13  Bruno Haible  <bruno@clisp.org>
11476
11477         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
11478
11479 2008-04-13  Bruno Haible  <bruno@clisp.org>
11480
11481         Fix AIX compilation failure introduced on 2008-04-02.
11482         * tests/test-frexp.c (exp): Undefine before redefining.
11483         * tests/test-frexpl.c (exp): Likewise.
11484
11485 2008-04-13  Bruno Haible  <bruno@clisp.org>
11486
11487         Work around a HP-UX stdio bug.
11488         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
11489         * tests/test-ftello.c (main): Likewise.
11490         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
11491         * doc/posix-functions/ftello.texi: Likewise.
11492
11493 2008-04-13  Bruno Haible  <bruno@clisp.org>
11494
11495         Make test-signbit pass on HP-UX/hppa.
11496         * tests/test-signbit.c (minus_zerol): New variable.
11497         (test_signbitl): Use it.
11498
11499 2008-04-13  Bruno Haible  <bruno@clisp.org>
11500
11501         Make truncl work on OSF/1 4.0.
11502         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
11503         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
11504         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
11505         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
11506         HAVE_DECL_TRUNCL.
11507         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
11508         HAVE_DECL_TRUNCL.
11509         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
11510
11511 2008-04-13  Bruno Haible  <bruno@clisp.org>
11512
11513         * lib/unictype.h: Remove trailing comma from enumeration definitions.
11514
11515 2008-04-13  Bruno Haible  <bruno@clisp.org>
11516
11517         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
11518         expression, so as to avoid HP-UX 11 cc compiler bug.
11519
11520 2008-04-13  Bruno Haible  <bruno@clisp.org>
11521
11522         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
11523
11524 2008-04-13  Bruno Haible  <bruno@clisp.org>
11525
11526         * lib/git-merge-changelog.c: Remove empty declaration outside of
11527         functions.
11528
11529 2008-04-13  Bruno Haible  <bruno@clisp.org>
11530
11531         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
11532
11533 2008-04-13  Bruno Haible  <bruno@clisp.org>
11534
11535         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
11536         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
11537         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
11538         also if it exists but lacks definitions of the SHUT_* macros.
11539         * modules/sys_socket (Description): Update.
11540         Reported by Elbert Pol <e.pol@chello.nl>.
11541
11542 2008-04-13  Bruno Haible  <bruno@clisp.org>
11543
11544         * lib/localcharset.c (OS2): Don't redefine if already defined.
11545         Reported by Elbert Pol <e.pol@chello.nl>.
11546
11547 2008-04-13  Bruno Haible  <bruno@clisp.org>
11548
11549         * lib/binary-io.h [__EMX__]: Include <io.h>.
11550         Reported by Elbert Pol <e.pol@chello.nl>.
11551
11552 2008-04-12  Bruno Haible  <bruno@clisp.org>
11553
11554         * lib/fpucw.h: Enable the definitions also for x86_64.
11555         Needed for NetBSD/x86_64.
11556         Reported by Thomas Klausner <tk@giga.or.at>.
11557
11558 2008-04-12  Bruno Haible  <bruno@clisp.org>
11559
11560         * tests/test-strtod.c: Include isnand.h.
11561         (main): Use isnand instead of isnan.
11562         Reported by Jim Meyering.
11563
11564 2008-04-12  Bruno Haible  <bruno@clisp.org>
11565
11566         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
11567         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
11568
11569 2008-04-12  Jim Meyering  <meyering@redhat.com>
11570
11571         * m4/math_h.m4 (gl_MATH_H): Fix typos.
11572
11573 2008-04-12  Bruno Haible  <bruno@clisp.org>
11574
11575         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
11576         Reported by Elbert Pol <e.pol@chello.nl>.
11577
11578 2008-04-12  Eric Blake  <ebb9@byu.net>
11579
11580         Work around Solaris 10 math.h bug.
11581         * m4/math_h.m4 (gl_MATH_H): Check for bug.
11582         (gl_MATH_H_DEFAULTS): Set up default.
11583         * modules/math (Makefile.am): Replace new indicators.
11584         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
11585         * tests/test-math.c (main): Test this.
11586         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
11587         * doc/posix-headers/math.texi (math.h): Mention bug.
11588         Reported by Nelson H. F. Beebe and Jim Meyering.
11589
11590 2008-04-11  Bruno Haible  <bruno@clisp.org>
11591
11592         Adapt to future versions of Apple GCC.
11593         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
11594         Reported by Peter O'Gorman <peter@pogma.com>.
11595
11596 2008-04-11  Bruno Haible  <bruno@clisp.org>
11597
11598         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
11599
11600 2008-04-11  Bruno Haible  <bruno@clisp.org>
11601
11602         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
11603
11604         * modules/getaddrinfo-tests (Makefile.am): Define
11605         test_getaddrinfo_LDADD.
11606
11607 2008-04-11  Bruno Haible  <bruno@clisp.org>
11608
11609         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
11610         (init): Fix syntax error.
11611         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
11612         is declared.
11613
11614 2008-04-11  Bruno Haible  <bruno@clisp.org>
11615
11616         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
11617         * modules/glob (Depends-on): Add stdbool.
11618
11619 2008-04-11  Bruno Haible  <bruno@clisp.org>
11620
11621         * lib/trim.c: Include <string.h>.
11622
11623 2008-04-11  Eric Blake  <ebb9@byu.net>
11624
11625         Avoid compile failure on OS/2.
11626         * lib/regex_internal.h (internal_function): Disable optimization
11627         on OS/2 (__EMX__), where it caused compiler error.
11628         Reported by Elbert Pol.
11629
11630 2008-04-11  Bruno Haible  <bruno@clisp.org>
11631
11632         Flush the standard error stream before aborting. Needed on mingw.
11633         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
11634         * tests/test-array_list.c (ASSERT): Likewise.
11635         * tests/test-array_oset.c (ASSERT): Likewise.
11636         * tests/test-avltree_list.c (ASSERT): Likewise.
11637         * tests/test-avltree_oset.c (ASSERT): Likewise.
11638         * tests/test-avltreehash_list.c (ASSERT): Likewise.
11639         * tests/test-binary-io.c (ASSERT): Likewise.
11640         * tests/test-byteswap.c (ASSERT): Likewise.
11641         * tests/test-c-ctype.c (ASSERT): Likewise.
11642         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
11643         * tests/test-c-strcasestr.c (ASSERT): Likewise.
11644         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
11645         * tests/test-c-strstr.c (ASSERT): Likewise.
11646         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
11647         * tests/test-canonicalize.c (ASSERT): Likewise.
11648         * tests/test-carray_list.c (ASSERT): Likewise.
11649         * tests/test-ceilf1.c (ASSERT): Likewise.
11650         * tests/test-ceilf2.c (ASSERT): Likewise.
11651         * tests/test-ceill.c (ASSERT): Likewise.
11652         * tests/test-count-one-bits.c (ASSERT): Likewise.
11653         * tests/test-fbufmode.c (ASSERT): Likewise.
11654         * tests/test-fflush2.c (ASSERT): Likewise.
11655         * tests/test-floorf1.c (ASSERT): Likewise.
11656         * tests/test-floorf2.c (ASSERT): Likewise.
11657         * tests/test-floorl.c (ASSERT): Likewise.
11658         * tests/test-fopen.c (ASSERT): Likewise.
11659         * tests/test-fpending.c (ASSERT): Likewise.
11660         * tests/test-fprintf-posix.c (ASSERT): Likewise.
11661         * tests/test-fpurge.c (ASSERT): Likewise.
11662         * tests/test-freadable.c (ASSERT): Likewise.
11663         * tests/test-freadahead.c (ASSERT): Likewise.
11664         * tests/test-freading.c (ASSERT): Likewise.
11665         * tests/test-freadptr.c (ASSERT): Likewise.
11666         * tests/test-freadptr2.c (ASSERT): Likewise.
11667         * tests/test-freadseek.c (ASSERT): Likewise.
11668         * tests/test-freopen.c (ASSERT): Likewise.
11669         * tests/test-frexp.c (ASSERT): Likewise.
11670         * tests/test-frexpl.c (ASSERT): Likewise.
11671         * tests/test-fseek.c (ASSERT): Likewise.
11672         * tests/test-fseeko.c (ASSERT): Likewise.
11673         * tests/test-fstrcmp.c (ASSERT): Likewise.
11674         * tests/test-ftell.c (ASSERT): Likewise.
11675         * tests/test-ftello.c (ASSERT): Likewise.
11676         * tests/test-func.c (ASSERT): Likewise.
11677         * tests/test-fwritable.c (ASSERT): Likewise.
11678         * tests/test-fwriting.c (ASSERT): Likewise.
11679         * tests/test-getdelim.c (ASSERT): Likewise.
11680         * tests/test-getline.c (ASSERT): Likewise.
11681         * tests/test-i-ring.c (ASSERT): Likewise.
11682         * tests/test-iconv-utf.c (ASSERT): Likewise.
11683         * tests/test-iconv.c (ASSERT): Likewise.
11684         * tests/test-isfinite.c (ASSERT): Likewise.
11685         * tests/test-isnand.c (ASSERT): Likewise.
11686         * tests/test-isnanf.c (ASSERT): Likewise.
11687         * tests/test-isnanl.h (ASSERT): Likewise.
11688         * tests/test-ldexpl.c (ASSERT): Likewise.
11689         * tests/test-linked_list.c (ASSERT): Likewise.
11690         * tests/test-linkedhash_list.c (ASSERT): Likewise.
11691         * tests/test-localename.c (ASSERT): Likewise.
11692         * tests/test-lseek.c (ASSERT): Likewise.
11693         * tests/test-mbscasecmp.c (ASSERT): Likewise.
11694         * tests/test-mbscasestr1.c (ASSERT): Likewise.
11695         * tests/test-mbscasestr2.c (ASSERT): Likewise.
11696         * tests/test-mbscasestr3.c (ASSERT): Likewise.
11697         * tests/test-mbscasestr4.c (ASSERT): Likewise.
11698         * tests/test-mbschr.c (ASSERT): Likewise.
11699         * tests/test-mbscspn.c (ASSERT): Likewise.
11700         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
11701         * tests/test-mbspbrk.c (ASSERT): Likewise.
11702         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
11703         * tests/test-mbsrchr.c (ASSERT): Likewise.
11704         * tests/test-mbsspn.c (ASSERT): Likewise.
11705         * tests/test-mbsstr1.c (ASSERT): Likewise.
11706         * tests/test-mbsstr2.c (ASSERT): Likewise.
11707         * tests/test-mbsstr3.c (ASSERT): Likewise.
11708         * tests/test-memchr2.c (ASSERT): Likewise.
11709         * tests/test-memmem.c (ASSERT): Likewise.
11710         * tests/test-open.c (ASSERT): Likewise.
11711         * tests/test-printf-frexp.c (ASSERT): Likewise.
11712         * tests/test-printf-frexpl.c (ASSERT): Likewise.
11713         * tests/test-printf-posix.c (ASSERT): Likewise.
11714         * tests/test-quotearg.c (ASSERT): Likewise.
11715         * tests/test-rbtree_list.c (ASSERT): Likewise.
11716         * tests/test-rbtree_oset.c (ASSERT): Likewise.
11717         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
11718         * tests/test-round1.c (ASSERT): Likewise.
11719         * tests/test-roundf1.c (ASSERT): Likewise.
11720         * tests/test-roundl.c (ASSERT): Likewise.
11721         * tests/test-signbit.c (ASSERT): Likewise.
11722         * tests/test-sleep.c (ASSERT): Likewise.
11723         * tests/test-snprintf-posix.c (ASSERT): Likewise.
11724         * tests/test-snprintf.c (ASSERT): Likewise.
11725         * tests/test-sprintf-posix.c (ASSERT): Likewise.
11726         * tests/test-stat-time.c (ASSERT): Likewise.
11727         * tests/test-strcasestr.c (ASSERT): Likewise.
11728         * tests/test-strerror.c (ASSERT): Likewise.
11729         * tests/test-striconv.c (ASSERT): Likewise.
11730         * tests/test-striconveh.c (ASSERT): Likewise.
11731         * tests/test-striconveha.c (ASSERT): Likewise.
11732         * tests/test-strsignal.c (ASSERT): Likewise.
11733         * tests/test-strstr.c (ASSERT): Likewise.
11734         * tests/test-strtod.c (ASSERT): Likewise.
11735         * tests/test-trunc1.c (ASSERT): Likewise.
11736         * tests/test-trunc2.c (ASSERT): Likewise.
11737         * tests/test-truncf1.c (ASSERT): Likewise.
11738         * tests/test-truncf2.c (ASSERT): Likewise.
11739         * tests/test-truncl.c (ASSERT): Likewise.
11740         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
11741         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
11742         * tests/test-vasnprintf.c (ASSERT): Likewise.
11743         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
11744         * tests/test-vasprintf.c (ASSERT): Likewise.
11745         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
11746         * tests/test-vprintf-posix.c (ASSERT): Likewise.
11747         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
11748         * tests/test-vsnprintf.c (ASSERT): Likewise.
11749         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
11750         * tests/test-wcwidth.c (ASSERT): Likewise.
11751         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
11752         * tests/test-xprintf-posix.c (ASSERT): Likewise.
11753         * tests/test-xvasprintf.c (ASSERT): Likewise.
11754         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
11755         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
11756         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
11757         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
11758         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
11759         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
11760         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
11761         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
11762         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
11763         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
11764         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
11765         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
11766         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
11767         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
11768         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
11769         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
11770         * tests/unictype/test-block_list.c (ASSERT): Likewise.
11771         * tests/unictype/test-block_of.c (ASSERT): Likewise.
11772         * tests/unictype/test-block_test.c (ASSERT): Likewise.
11773         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
11774         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
11775         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
11776         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
11777         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
11778         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
11779         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
11780         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
11781         * tests/unictype/test-combining.c (ASSERT): Likewise.
11782         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
11783         * tests/unictype/test-digit.c (ASSERT): Likewise.
11784         * tests/unictype/test-mirror.c (ASSERT): Likewise.
11785         * tests/unictype/test-numeric.c (ASSERT): Likewise.
11786         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
11787         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
11788         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
11789         * tests/unictype/test-scripts.c (ASSERT): Likewise.
11790         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
11791         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
11792         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
11793         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
11794         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
11795         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
11796         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
11797         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
11798         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
11799         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
11800         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
11801         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
11802         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
11803         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
11804         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
11805         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
11806         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
11807         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
11808         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
11809         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
11810         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
11811         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
11812         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
11813         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
11814         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
11815         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
11816         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
11817         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
11818         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
11819         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
11820         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
11821         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
11822         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
11823         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
11824         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
11825         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
11826         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
11827         Reported by Eric Blake.
11828
11829 2008-04-11  Bruno Haible  <bruno@clisp.org>
11830
11831         * lib/wchar.in.h: Tweak comment.
11832
11833 2008-04-11  Bruno Haible  <bruno@clisp.org>
11834
11835         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
11836         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
11837         gl_COMMON.
11838         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
11839
11840 2008-04-11  Bruno Haible  <bruno@clisp.org>
11841
11842         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
11843
11844 2008-04-11  Simon Josefsson  <simon@josefsson.org>
11845
11846         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
11847         of attempting to use non-existing /dev/*random.  Based on patch
11848         from Adam Strzelecki <ono@java.pl> in
11849         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
11850
11851 2008-04-08  Bruno Haible  <bruno@clisp.org>
11852
11853         Add tentative support for emx+gcc.
11854         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
11855         * lib/fpurge.c (fpurge): Likewise.
11856         * lib/freadable.c (freadable): Likewise.
11857         * lib/freadahead.c (freadahead): Likewise.
11858         * lib/freading.c (freading): Likewise.
11859         * lib/freadptr.c (freadptr): Likewise.
11860         * lib/freadseek.c (freadptrinc): Likewise.
11861         * lib/fseeko.c (rpl_fseeko): Likewise.
11862         * lib/fseterr.c (fseterr): Likewise.
11863         * lib/fwritable.c (fwritable): Likewise.
11864         * lib/fwriting.c (fwriting): Likewise.
11865         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
11866
11867 2008-04-09  Eric Blake  <ebb9@byu.net>
11868
11869         Avoid some autoconf warnings.
11870         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
11871         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
11872         * m4/afs.m4 (gl_AFS): Likewise.
11873         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
11874         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
11875         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
11876         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
11877         (gl_INTEGER_TYPE_SUFFIX): Likewise.
11878         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
11879         (AC_CHECK_DECLS_ONCE): Likewise.
11880         Rename file...
11881         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
11882         gnulib-tool requires autoconf 2.59 or better.
11883         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
11884
11885 2008-04-08  Eric Blake  <ebb9@byu.net>
11886
11887         Use 'git describe --match' if present (added in git 1.5.5).
11888         * build-aux/git-version-gen: Limit result to tags that match 'v*'
11889         if possible.
11890
11891 2008-04-08  Bruno Haible  <bruno@clisp.org>
11892
11893         Add tentative support for OpenServer.
11894         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
11895         _ptr, _cnt.
11896         * lib/fpurge.c (fpurge): Likewise.
11897         * lib/freadable.c (freadable): Likewise.
11898         * lib/freadahead.c (freadahead): Likewise.
11899         * lib/freading.c (freading): Likewise.
11900         * lib/freadptr.c (freadptr): Likewise.
11901         * lib/freadseek.c (freadptrinc): Likewise.
11902         * lib/fseeko.c (rpl_fseeko): Likewise.
11903         * lib/fseterr.c (fseterr): Likewise.
11904         * lib/fwritable.c (fwritable): Likewise.
11905         * lib/fwriting.c (fwriting): Likewise.
11906         Reported by Roger Cornelius <rac@tenzing.org> and
11907         Brian K. White <brian@aljex.com>.
11908
11909 2008-04-06  Jim Meyering  <meyering@redhat.com>
11910
11911         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
11912
11913 2008-04-06  Bruno Haible  <bruno@clisp.org>
11914
11915         Avoid possible error with non-ASCII bytes in UTF-8 locales.
11916         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
11917         * tests/test-printf-posix.sh: Likewise.
11918         * tests/test-vfprintf-posix.sh: Likewise.
11919         * tests/test-vprintf-posix.sh: Likewise.
11920         * tests/test-xprintf-posix.sh: Likewise.
11921
11922 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11923
11924         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
11925         hide error from 'ls', needed on OS/2.
11926         Report by Elbert Pol <elbert.pol@gmail.com>.
11927
11928 2008-04-04  Eric Blake  <ebb9@byu.net>
11929
11930         Make test-fseeko.c failures meaningful.
11931         * tests/test-fseeko.c: Print line number on failure.
11932         * tests/test-fseek.c: Likewise.
11933         Reported by Nelson H. F. Beebe.
11934
11935         Improve strtod bug detection check.
11936         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
11937         required for Solaris 10.
11938         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
11939
11940 2008-04-04  Bruno Haible  <bruno@clisp.org>
11941
11942         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
11943         by m4/setenv.m4.
11944
11945 2008-04-03  Eric Blake  <ebb9@byu.net>
11946
11947         Ensure sane .version contents.
11948         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
11949         version string.
11950         * build-aux/git-version-gen: Improve documentation.
11951
11952         Make GNU make output nicer.
11953         * top/GNUmakefile [!_have-Makefile]: Add dependency on
11954         MAKECMDGOALS to enforce message for all command line targets.  Set
11955         srcdir for use in maint.mk.
11956
11957         Another maintainer tweak.
11958         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
11959         a target that regenerates version.
11960
11961 2008-04-03  Jim Meyering  <meyering@redhat.com>
11962
11963         vc-list-files: don't cause coreutils "make po-check" failure
11964         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
11965
11966 2008-04-03  Eric Blake  <ebb9@byu.net>
11967
11968         Allow VPATH usage of vc-list-files.
11969         * build-aux/vc-list-files (scriptversion): Add timestamp.
11970         (options): Add --help, --version, -C.
11971         (CVS): Support installed cvsu.
11972
11973 2008-04-02  Bruno Haible  <bruno@clisp.org>
11974
11975         Avoid some "statement with no effect" warnings from gcc.
11976         * tests/test-wctype.c (main): Explicitly ignore unused values.
11977         Reported by Jim Meyering.
11978
11979 2008-04-02  Jim Meyering  <meyering@redhat.com>
11980
11981         Avoid some warnings from "gcc -Wshadow".
11982         * tests/test-frexp.c (exp): Define to a different identifier.
11983         * tests/test-frexpl.c (exp): Likewise.
11984
11985 2008-04-03  Jim Meyering  <meyering@redhat.com>
11986
11987         bootstrap: remove dangling *.[ch] symlinks from lib
11988         * build-aux/bootstrap [dangling symlink removal]: Move find's
11989         -depth option to precede all others, to avoid a warning.
11990         Remove *.[ch] files too, and from "$source_base" (usually lib/).
11991
11992 2008-04-02  Bruno Haible  <bruno@clisp.org>
11993
11994         Avoid some warnings from "gcc -Wshadow".
11995         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
11996         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
11997         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
11998         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
11999         Reported by Jim Meyering.
12000
12001 2008-04-01  Bruno Haible  <bruno@clisp.org>
12002
12003         Fix test to work on IRIX 6.5 with cc.
12004         * tests/test-math.c (numeric_equal): New function.
12005         (main): Use it.
12006
12007 2008-04-01  Bruno Haible  <bruno@clisp.org>
12008
12009         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
12010
12011 2008-04-01  Bruno Haible  <bruno@clisp.org>
12012
12013         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
12014         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
12015         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
12016         (Depends-on): Remove math.
12017
12018         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
12019         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
12020         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
12021         (Depends-on): Remove math.
12022
12023         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
12024         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
12025         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
12026         (Depends-on): Remove math.
12027         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
12028         (Depends-on): Remove math.
12029
12030         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
12031         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
12032         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
12033         (Depends-on): Remove math.
12034         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
12035         (Depends-on): Remove math.
12036
12037         * tests/test-round1.c: Include nan.h.
12038         (main): Use NaNd instead of NAN.
12039         * modules/round-tests (Files): Add tests/nan.h.
12040
12041         * tests/test-trunc1.c: Include nan.h.
12042         (main): Use NaNd instead of NAN.
12043         * modules/trunc-tests (Files): Add tests/nan.h.
12044
12045         * tests/test-roundf1.c: Include nan.h.
12046         (main): Use NaNf instead of NAN.
12047         * modules/roundf-tests (Files): Add tests/nan.h.
12048
12049         * tests/test-truncf1.c: Include nan.h.
12050         (main): Use NaNf instead of NAN.
12051         * modules/truncf-tests (Files): Add tests/nan.h.
12052
12053         * tests/test-ceilf1.c: Include nan.h.
12054         (main): Use NaNf instead of NAN.
12055         * modules/ceilf-tests (Files): Add tests/nan.h.
12056
12057         * tests/test-floorf1.c: Include nan.h.
12058         (main): Use NaNf instead of NAN.
12059         * modules/floorf-tests (Files): Add tests/nan.h.
12060
12061         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
12062         (main): Use NaNf instead of NAN.
12063         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
12064
12065         * tests/test-isnand.c: Include nan.h instead of <math.h>.
12066         (main): Use NaNd instead of NAN.
12067         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
12068
12069         * tests/test-frexp.c: Include nan.h.
12070         (main): Use NaNd instead of NAN.
12071         * modules/frexp-tests (Files): Add tests/nan.h.
12072
12073         * lib/isnan.c: Don't include <math.h>.
12074         (FUNC): Don't use NAN macro.
12075         * modules/isnand-nolibm (Depends-on): Remove math.
12076         * modules/isnanf-nolibm (Depends-on): Remove math.
12077         * modules/isnanl (Depends-on): Remove math.
12078         * modules/isnanl-nolibm (Depends-on): Remove math.
12079
12080         * tests/nan.h: New file.
12081
12082 2008-04-01  Eric Blake  <ebb9@byu.net>
12083
12084         Fix typos.
12085         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
12086         values to be the right type.
12087
12088         For now, cater to gnulib strtod inaccuracies.
12089         * tests/test-strtod.c (main): Allow 1-ulp error on expected
12090         fractional results.  While not as nice from a QoI perspective, it
12091         is a quicker patch than correctly implementing decimal to binary
12092         rounding.
12093
12094 2008-03-31  Eric Blake  <ebb9@byu.net>
12095
12096         Guarantee a definition of NAN.
12097         * lib/math.in.h (NAN): Define if missing.
12098         * tests/test-math.c (main): Test it.
12099         * doc/posix-headers/math.texi (math.h): Document this.
12100         * lib/isnan.c (rpl_isnand): Use it.
12101         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
12102         * tests/test-floorf1.c (NaN): Likewise.
12103         * tests/test-frexp.c (NaN): Likewise.
12104         * tests/test-isnand.c (NaN): Likewise.
12105         * tests/test-isnanf.c (NaN): Likewise.
12106         * tests/test-round1.c (NaN): Likewise.
12107         * tests/test-roundf1.c (NaN): Likewise.
12108         * tests/test-snprintf-posix.h (NaN): Likewise.
12109         * tests/test-sprintf-posix.h (NaN): Likewise.
12110         * tests/test-trunc1.c (NaN): Likewise.
12111         * tests/test-truncf1.c (NaN): Likewise.
12112         * tests/test-vasnprintf-posix.c (NaN): Likewise.
12113         * tests/test-vasprintf-posix.c (NaN): Likewise.
12114         * modules/isnand-nolibm (Depends-on): Add math.
12115         * modules/isnanf-nolibm (Depends-on): Likewise.
12116         * modules/isnanl (Depends-on): Likewise.
12117         * modules/isnanl-nolibm (Depends-on): Likewise.
12118         * modules/snprintf-posix-tests (Depends-on): Likewise.
12119         * modules/sprintf-posix-tests (Depends-on): Likewise.
12120         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
12121         * modules/vsprintf-posix-tests (Depends-on): Likewise.
12122         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
12123         * modules/vasprintf-posix-tests (Depends-on): Likewise.
12124
12125 2008-03-31  Bruno Haible  <bruno@clisp.org>
12126
12127         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
12128         * doc/posix-functions/strtod.texi: Likewise.
12129
12130 2008-03-31  Bruno Haible  <bruno@clisp.org>
12131
12132         * tests/test-strtod.c (main): Don't use C99 syntax.
12133
12134 2008-03-31  Bruno Haible  <bruno@clisp.org>
12135
12136         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
12137         Reported by Eric Blake.
12138
12139 2008-03-31  Jim Meyering  <meyering@redhat.com>
12140
12141         Don't compare actual signbit return values.
12142         * tests/test-strtod.c (main): Rather, compare only their
12143         zero/non-zero nature.
12144
12145 2008-03-31  Eric Blake  <ebb9@byu.net>
12146
12147         More strtod documentation.
12148         * doc/posix-functions/strtod.texi (strtod): Interpret more test
12149         failures as distinct bugs.
12150
12151 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
12152
12153         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
12154         Problem reported by Erik Benada in
12155         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
12156
12157 2008-03-30  Bruno Haible  <bruno@clisp.org>
12158
12159         * tests/test-strtod.c: Add comments about which assertion fails on which
12160         platform.
12161         * doc/posix-functions/strtod.texi: Add info about many more platforms.
12162
12163 2008-03-30  Eric Blake  <ebb9@byu.net>
12164
12165         Test signbit behavior on zeros.
12166         * tests/test-signbit.c (test_signbitf): Add tests for zero.
12167         (test_signbitd, test_signbitl): Likewise.
12168
12169         More strtod touchups.
12170         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
12171         sign of negative underflow, for now.  Use .5, not .1.
12172         * doc/posix-functions/strtod.texi (strtod): Mention these
12173         limitations.
12174         Reported by Jim Meyering.
12175
12176 2008-03-30  Bruno Haible  <bruno@clisp.org>
12177
12178         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
12179         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
12180
12181 2008-03-30  Bruno Haible  <bruno@clisp.org>
12182
12183         Avoid failure when attempting to return empty iconv results on some
12184         platforms.
12185         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
12186         allocation, don't report ENOMEM when the resulting string is empty.
12187
12188 2008-03-30  Bruno Haible  <bruno@clisp.org>
12189
12190         Fix buffer overrun.
12191         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
12192         Don't consider the width for tmp_length. Check count against tmp_length
12193         before doing the padding. Ensure enough allocation during padding.
12194
12195 2008-03-30  Eric Blake  <ebb9@byu.net>
12196
12197         strtod touchups.
12198         * lib/strtod.c (strtod): Avoid compiler warnings.
12199         Reported by Jim Meyering.
12200
12201 2008-03-30  Bruno Haible  <bruno@clisp.org>
12202
12203         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
12204         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
12205         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
12206         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
12207         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
12208         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
12209         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
12210         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
12211
12212         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
12213         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
12214         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
12215         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
12216         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
12217         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
12218         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
12219         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
12220
12221         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
12222         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
12223         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
12224         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
12225         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
12226         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
12227         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
12228         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
12229
12230         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
12231         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
12232
12233         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
12234         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
12235
12236         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
12237         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
12238
12239         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
12240         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
12241         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
12242
12243         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
12244         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
12245         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
12246
12247         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
12248         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
12249         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
12250
12251         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
12252         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
12253         * modules/vasprintf (Depends-on): Add EOVERFLOW.
12254
12255         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
12256         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
12257         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
12258         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
12259         (Depends-on): Add EOVERFLOW.
12260         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
12261         (Depends-on): Add EOVERFLOW.
12262         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
12263         (Depends-on): Add EOVERFLOW.
12264         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
12265         (Depends-on): Add EOVERFLOW.
12266         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
12267         (Depends-on): Add EOVERFLOW.
12268         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
12269         (Depends-on): Add EOVERFLOW.
12270         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
12271         (Depends-on): Add EOVERFLOW.
12272         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
12273         (Depends-on): Add EOVERFLOW.
12274
12275         * lib/sprintf.c (EOVERFLOW): Remove fallback.
12276         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
12277         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
12278
12279         * lib/snprintf.c (EOVERFLOW): Remove fallback.
12280         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
12281         * modules/snprintf (Depends-on): Add EOVERFLOW.
12282
12283         * lib/poll.c (EOVERFLOW): Remove fallback.
12284         * modules/poll (Depends-on): Add EOVERFLOW.
12285
12286         * lib/getugroups.c (EOVERFLOW): Remove fallback.
12287         * modules/getugroups (Depends-on): Add EOVERFLOW.
12288
12289         * lib/getdelim.c (EOVERFLOW): Remove fallback.
12290         * modules/getdelim (Depends-on): Add EOVERFLOW.
12291
12292         * lib/ftell.c (EOVERFLOW): Remove fallback.
12293         * modules/ftell (Depends-on): Add EOVERFLOW.
12294
12295         * lib/fprintf.c (EOVERFLOW): Remove fallback.
12296         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
12297         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
12298
12299         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
12300
12301         * modules/EOVERFLOW-tests: New file.
12302         * tests/test-EOVERFLOW.c: New file.
12303
12304         * modules/EOVERFLOW: New file.
12305         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
12306
12307 2008-03-30  Bruno Haible  <bruno@clisp.org>
12308
12309         Fix bug introduced on 2007-06-10.
12310         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
12311         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
12312
12313 2008-03-30  Bruno Haible  <bruno@clisp.org>
12314
12315         Improve freadseek's efficiency after ungetc.
12316         * lib/freadseek.c: Include freadahead.h.
12317         (freadptrinc): New function, extracted from freadseek.
12318         (freadseek): Use it in a loop. Use freadahead to determine the number
12319         of loop iterations.
12320         * modules/freadseek (Depends-on): Add freadahead.
12321         (configure.ac): Require AC_C_INLINE.
12322
12323 2008-03-30  Bruno Haible  <bruno@clisp.org>
12324
12325         * lib/freadseek.c (freadseek): Don't ignore the return value of
12326         freadptr.
12327
12328 2008-03-29  Eric Blake  <ebb9@byu.net>
12329
12330         Add hex float support.
12331         * modules/strtod (Depends-on): Add c-ctype.
12332         (Link): Mention POW_LIB.
12333         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
12334         whitespace between 'e' and exponent.
12335         * tests/test-strtod.c (main): Enable hex float tests.
12336         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
12337         now provides.
12338
12339         Document various strtod bugs, with some fixes.
12340         * doc/posix-functions/strtod.texi (strtod): Document bugs with
12341         "-0x", "inf", "nan", and hex constants.
12342         * doc/posix-functions/atof.texi (atof): Likewise.
12343         * modules/stdlib (Makefile.am): Support strtod.
12344         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
12345         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
12346         detect additional strtod bugs.
12347         * lib/stdlib.in.h (rpl_strtod): Add declarations.
12348         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
12349         bool where appropriate.  Parse 'inf' and 'nan'.
12350         * tests/test-strtod.c: New file.
12351         * modules/strtod (Depends-on): Add stdbool, stdlib.
12352         (configure.ac): Turn on module indicator.
12353         * modules/strtod-tests: New module.
12354
12355 2008-03-29  Eric Blake  <ebb9@byu.net>
12356
12357         Fix ftell on mingw.
12358         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
12359         * modules/ftell-tests (Depends-on): Add binary-io.
12360         * modules/ftello-tests (Depends-on): Likewise.
12361         * tests/test-ftell.c (main): Enhance test to cover behavior after
12362         ungetc.  Enforce binary mode.
12363         * tests/test-ftello.c (main): Likewise.
12364
12365         Pass test-freadseek on cygwin.
12366         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
12367         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
12368         ungetc buffer.
12369
12370         * tests/test-fflush2.c (main): Fix typo.
12371
12372 2008-03-29  Bruno Haible  <bruno@clisp.org>
12373
12374         * tests/test-fflush2.c (main): Temporarily disable the contents of
12375         this test.
12376         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
12377         Reported by Eric Blake.
12378
12379 2008-03-28  Simon Josefsson  <simon@josefsson.org>
12380
12381         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
12382         (GC_SHA224_DIGEST_SIZE): Add.
12383
12384         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
12385         (gc_hash_digest_length): Likewise.
12386         (gc_hash_buffer): Likewise.
12387
12388 2008-03-25  Bruno Haible  <bruno@clisp.org>
12389
12390         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
12391         detail which gettext release to use.
12392         Reported by Simon Josefsson.
12393
12394 2008-03-26  Jim Meyering  <meyering@redhat.com>
12395
12396         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
12397         * modules/gnumakefile (clean-GNUmakefile): Also, use
12398         test ... && ... || : syntax rather than if-then ... fi.
12399
12400         gnumakefile: Don't double-quote-expand $(VPATH) value.
12401         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
12402
12403 2008-03-24  Eric Blake  <ebb9@byu.net>
12404
12405         Alter GNUmakefile to install into top directory.
12406         * modules/maintainer-makefile: Split, and add dependency...
12407         * modules/gnumakefile: to this new module.
12408         * build-aux/GNUmakefile: Move...
12409         * top/GNUmakefile: ...here.
12410         * build-aux/maint.mk: Move...
12411         * top/maint.mk: ...here.
12412         * MODULES.html.sh (Support for maintaining...): Document new
12413         module.
12414
12415 2008-03-23  Bruno Haible  <bruno@clisp.org>
12416
12417         * gnulib-tool: New options --vc-files, --no-vc-files.
12418         (func_usage): Document them.
12419         (vc_files): New variable.
12420         (func_import): Consider vc_files.
12421         (func_create_testdir): Set vc_files to empty.
12422         Suggested by Jim Meyering and Karl Berry.
12423
12424 2008-03-23  Bruno Haible  <bruno@clisp.org>
12425
12426         Fix regex compilation error on HP-UX 11.
12427         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
12428         * modules/regex (Files): Add m4/mbstate_t.m4.
12429         Reported by Ton Voon <ton.voon@altinity.com>.
12430
12431 2008-03-23  Bruno Haible  <bruno@clisp.org>
12432
12433         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
12434
12435 2008-03-23  Eric Blake  <ebb9@byu.net>
12436             Bruno Haible  <bruno@clisp.org>
12437
12438         Install files from top/ in the destination directory.
12439         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
12440         augmentation also for the files from top/.
12441         (func_import, func_create_testdir): Rewrite file names:
12442         top/filename -> filename.
12443
12444 2008-03-23  Bruno Haible  <bruno@clisp.org>
12445
12446         Tweak "gnulib --version" output.
12447         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
12448
12449 2008-03-23  Bruno Haible  <bruno@clisp.org>
12450
12451         Tweak "gnulib --version" output.
12452         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
12453         rather than contents of ChangeLog, when possible.
12454
12455 2008-03-21  Eric Blake  <ebb9@byu.net>
12456
12457         More --version tweaks.
12458         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
12459         date of last ChangeLog entry.
12460
12461 2008-03-21  Jim Meyering  <meyering@redhat.com>
12462
12463         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
12464
12465 2008-03-20  Eric Blake  <ebb9@byu.net>
12466
12467         VPATH fix.
12468         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
12469
12470 2008-03-20  Simon Josefsson  <simon@josefsson.org>
12471
12472         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
12473         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
12474
12475 2008-03-20  Eric Blake  <ebb9@byu.net>
12476
12477         Sync GNUmakefile with coreutils.
12478         * build-aux/GNUmakefile (have-Makefile): Rename...
12479         (_have-Makefile): ...to this, for namespace consideration.
12480         (GNUmakefile.cfg): Include, if present.
12481         (_autoreconf): Define a default.
12482         (_is-dist-target): New rule for rebuilds to pick up intra-release
12483         version.
12484         (maint-cfg.mk): Rename...
12485         (cfg.mk): ...to this.
12486
12487 2008-03-18  Jim Meyering  <meyering@redhat.com>
12488
12489         New script and module: mktempd
12490         * MODULES.html.sh (maint+release support): Add mktempd.
12491         * build-aux/mktempd: New file.
12492         * modules/mktempd: New file.
12493
12494 2008-03-15  Jim Meyering  <meyering@redhat.com>
12495
12496         Undo last change.
12497         * lib/sha1.c, lib/md5.c: 63 != ~63.
12498         Reported by Andreas Schwab.
12499
12500         sha1.c, md5.c: Hoist a redundant expression.
12501         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
12502         "ctx->buflen" only once, before calling *_process_block.
12503         * lib/md5.c (md5_process_bytes): Likewise.
12504
12505 2008-03-14  Eric Blake  <ebb9@byu.net>
12506
12507         Bump copyright year in files generated by gnulib-tool.
12508         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
12509         gnulib-tool, rather than hard-coding it.
12510
12511         Fix 'gnulib-tool --version' output to work with git.
12512         * gnulib-tool (func_gnulib_dir): New function, extracted from...
12513         (startup): ...here.
12514         (func_version): Use it to invoke git-version-gen, rather than
12515         relying on CVS keyword expansion.  Modernize wording.
12516         (cvsdatestamp, last_checkin_date, version): Kill unused
12517         variables.
12518
12519 2008-03-12  Jim Meyering  <meyering@redhat.com>
12520
12521         Recognize optional cast of the argument to free.
12522         * build-aux/useless-if-before-free: Update regexps.
12523
12524         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
12525
12526 2008-03-11  Bruno Haible  <bruno@clisp.org>
12527
12528         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
12529         by a single package.
12530         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
12531         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
12532         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
12533         Reported by Sam Steingold <sds@gnu.org>.
12534
12535 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
12536
12537         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
12538         repositories.
12539
12540 2008-03-11  Bruno Haible  <bruno@clisp.org>
12541
12542         Avoid conflicts between local macro definitions.
12543         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
12544         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
12545
12546 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
12547             Bruno Haible  <bruno@clisp.org>
12548
12549         Make va_copy work with some version of xlc on AIX 5.1.
12550         * lib/stdarg.in.h: New file.
12551         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
12552         On AIX, use a <stdarg.h> file substitute.
12553         * modules/stdarg (Files): Add lib/stdarg.in.h.
12554         (Depends-on): Add include_next.
12555         (Makefile.am): Build a stdarg.h substitute if requested.
12556         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
12557
12558 2008-03-10  Bruno Haible  <bruno@clisp.org>
12559
12560         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
12561         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
12562         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
12563
12564 2008-03-10  Bruno Haible  <bruno@clisp.org>
12565
12566         * modules/stdlib (Depends-on): Add include_next, remove
12567         absolute-header.
12568
12569 2008-03-09  Bruno Haible  <bruno@clisp.org>
12570
12571         * lib/freadahead.h (freadahead): Document more precisely.
12572         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
12573         the sum of both buffer sizes.
12574         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
12575         * NEWS: Document the change.
12576
12577 2008-03-09  Bruno Haible  <bruno@clisp.org>
12578
12579         Extend freadptr to return also the buffer size.
12580         * lib/freadptr.h (freadptr): Add sizep argument.
12581         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
12582         (freadptr): Add sizep argument. Determine buffer size like freadahead
12583         does.
12584         * tests/test-freadptr.c: Don't include freadahead.h.
12585         (main): Adapt for new calling convention of freadptr.
12586         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
12587         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
12588         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
12589         tests/test-freadptr2.sh.
12590         (Depends): Remove freadahead.
12591         (TESTS): Add test-freadptr2.sh.
12592         (check_PROGRAMS): Add test-freadptr2.
12593
12594 2008-03-09  Bruno Haible  <bruno@clisp.org>
12595
12596         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
12597         Report and solution by Simon Josefsson.
12598
12599 2008-03-06  Bruno Haible  <bruno@clisp.org>
12600
12601         Make fflush after ungetc work on BSD platforms.
12602         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
12603         * tests/test-fflush2.c: New file.
12604         * tests/test-fflush2.sh: New file.
12605         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
12606         tests/test-fflush2.c.
12607         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
12608         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
12609
12610 2008-03-06  Eric Blake  <ebb9@byu.net>
12611
12612         Likewise for ftello.
12613         * modules/ftello (Dependencies): Add extensions.
12614         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
12615
12616 2008-03-06  Bruno Haible  <bruno@clisp.org>
12617
12618         * modules/fseeko (Dependencies): Add extensions.
12619         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
12620         Needed on glibc systems.
12621
12622 2008-03-06  Bruno Haible  <bruno@clisp.org>
12623
12624         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
12625         email address.
12626         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
12627
12628 2008-03-06  Bruno Haible  <bruno@clisp.org>
12629
12630         * users.txt: Add libgnupdf.
12631
12632 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
12633
12634         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
12635         (Header File Substitutes, Function Substitutes,
12636         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
12637         (Build robot for gnulib): Fix typo.
12638
12639 2008-03-06  Bruno Haible  <bruno@clisp.org>
12640
12641         * doc/gnulib-tool.texi (VCS Issues): Small updates.
12642         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
12643
12644 2008-03-06  Bruno Haible  <bruno@clisp.org>
12645
12646         * doc/func.texi: New file, extracted from doc/gnulib.texi.
12647         * doc/gnulib.texi: Include it.
12648
12649 2008-03-06  Simon Josefsson  <simon@josefsson.org>
12650
12651         * modules/func (License): Change license to unlimited; there was
12652         no LGPL parts in the module anyway.
12653
12654 2008-03-06  Simon Josefsson  <simon@josefsson.org>
12655
12656         * modules/__func__: Renamed to modules/func.
12657         * modules/__func__-tests: Renamed to modules/func-tests.
12658         * tests/test-__func__.c: Renamed to tests/test-func.c.
12659         * m4/__func__.m4: Renamed to m4/func.m4.
12660         * doc/gnulib.texi (__func__): Section renamed to func.
12661         Suggested by Eric Blake <ebb9@byu.net>.
12662
12663 2008-03-06  Simon Josefsson  <simon@josefsson.org>
12664
12665         * doc/gnulib.texi (__func__): Use C99 terminology when talking
12666         about __func__.  Make example self-contained.  Suggested by Eric
12667         Blake <ebb9@byu.net>.
12668
12669         * tests/test-__func__.c (main): Avoid extraneous () around __func.
12670         Suggested by Eric Blake <ebb9@byu.net>.
12671
12672 2008-03-06  Simon Josefsson  <simon@josefsson.org>
12673
12674         * modules/__func__: New file.
12675         * modules/__func__-tests: New file.
12676         * tests/test-__func__.c: New file.
12677         * m4/__func__.m4: New file.
12678         * doc/gnulib.texi (__func__): Document __func__ module.
12679
12680 2008-03-05  Simon Josefsson  <simon@josefsson.org>
12681
12682         * modules/byteswap (License): Re-license as LGPLv2+.
12683
12684 2008-03-05  Simon Josefsson  <simon@josefsson.org>
12685
12686         * doc/Makefile: Add pdf target.
12687
12688 2008-03-05  Simon Josefsson  <simon@josefsson.org>
12689
12690         * modules/inline (License): Use 'unlimited', since there are only
12691         *.m4 files in this module.
12692
12693 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
12694             Bruno Haible  <bruno@clisp.org>
12695
12696         Add support for HP C 7.1 on OpenVMS 8.3.
12697         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
12698
12699 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
12700
12701         Update VMS specifics.
12702         * lib/getopt.c [VMS]: Remove include of unixlib.h.
12703
12704 2008-03-02  Jim Meyering  <meyering@redhat.com>
12705
12706         Remove the last dependency on the "free" module.
12707         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
12708         Reported by Bob Proulx.
12709
12710         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
12711
12712         Remove useless "if" tests before free.  Deprecate "free" module.
12713         * doc/posix-functions/free.texi: Mention that this
12714         module is no longer useful.
12715         * modules/free (Notice): Say this module is obsolete.
12716         * modules/readutmp (Depends-on): Remove free.
12717         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
12718         * lib/putenv.c (putenv): Likewise.
12719         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
12720         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
12721         * tests/test-c-strcasestr.c (main): Likewise.
12722         * tests/test-c-strstr.c (main): Likewise.
12723         * tests/test-mbscasestr1.c (main): Likewise.
12724         * tests/test-mbscasestr2.c (main): Likewise.
12725         * tests/test-mbsstr1.c (main): Likewise.
12726         * tests/test-mbsstr2.c (main): Likewise.
12727         * tests/test-memmem.c (main): Likewise.
12728         * tests/test-strcasestr.c (main): Likewise.
12729         * tests/test-striconv.c (main): Likewise.
12730         * tests/test-striconveh.c (main): Likewise.
12731         * tests/test-striconveha.c (main): Likewise.
12732         * tests/test-strstr.c (main): Likewise.
12733
12734         * build-aux/git-version-gen: Adjust a comment and the Usage string.
12735
12736         bootstrap: sync from coreutils again
12737         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
12738
12739 2008-03-01  Jim Meyering  <meyering@redhat.com>
12740
12741         bootstrap: sync from coreutils
12742         * build-aux/bootstrap (update_po_files): Copy a .po file into place
12743         also when the target doesn't exist.
12744
12745 2008-03-01  Eric Blake  <ebb9@byu.net>
12746
12747         Fix bugs in last patch.
12748         * lib/memchr2.c (memchr2): Fix typo.
12749         * tests/test-memchr2.c: Test previous bug, and don't use GNU
12750         extension.
12751         Reported by Bruce Korb.
12752
12753         New module 'memchr2'.
12754         * modules/memchr2: New file.
12755         * modules/memchr2-tests: Likewise.
12756         * lib/memchr2.h: Likewise.
12757         * lib/memchr2.c: Likewise, based on memchr.c.
12758         * tests/test-memchr2.c: New test.
12759         * MODULES.html.sh (String handling): Add memchr2.
12760
12761 2008-02-29  Bruno Haible  <bruno@clisp.org>
12762
12763         * modules/freadseek-tests: New file.
12764         * tests/test-freadseek.sh: New file.
12765         * tests/test-freadseek.c: New file.
12766
12767         New module 'freadseek'.
12768         * modules/freadseek: New file.
12769         * lib/freadseek.h: New file.
12770         * lib/freadseek.c: New file.
12771         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
12772
12773 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
12774
12775         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
12776         wydawca.
12777
12778         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
12779         program_invocation_name and program_invocation_short_name are
12780         present.
12781
12782 2008-02-28  Bruno Haible  <bruno@clisp.org>
12783
12784         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
12785         * tests/test-freadptr.sh: Also test non-seekable stdin.
12786
12787 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
12788
12789         * build-aux/bootstrap (source_base, m4_base)
12790         (doc_base, tests_base): New variables.
12791         (gnulib_tool_options): Do not hardcode base directories, use
12792         the above variables instead.
12793
12794 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
12795
12796         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
12797
12798 2008-02-28  Bruno Haible  <bruno@clisp.org>
12799
12800         * modules/freadptr-tests: New file.
12801         * tests/test-freadptr.sh: New file.
12802         * tests/test-freadptr.c: New file.
12803
12804         New module 'freadptr'.
12805         * modules/freadptr: New file.
12806         * lib/freadptr.h: New file.
12807         * lib/freadptr.c: New file.
12808         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
12809
12810 2008-02-26  Karl Berry  <karl@freefriends.org>
12811
12812         Sync from Libtool:
12813         * libltdl/argz.c (argz_add, argz_count): New functions.
12814         * libltdl/argz.in.h: Declare them.
12815         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
12816
12817 2008-02-22  Bruno Haible  <bruno@clisp.org>
12818
12819         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
12820         is a pointer type.  Needed for HP-UX 10.
12821         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
12822         * doc/posix-functions/gmtime_r.texi: Likewise.
12823         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
12824
12825 2008-02-24  Bruno Haible  <bruno@clisp.org>
12826
12827         * modules/environ-tests: New file.
12828         * tests/test-environ.c: New file.
12829
12830         New module 'environ'.
12831         * modules/environ: New file.
12832         * lib/unistd.in.h (environ): New declaration.
12833         * m4/environ.m4: New file.
12834         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
12835         after use.
12836         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
12837         HAVE_DECL_ENVIRON.
12838         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
12839         HAVE_DECL_ENVIRON.
12840         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
12841         wrong claim that 'environ' is missing on some systems.
12842         * modules/execute (Depends-on): Add environ.
12843         * lib/execute.c (environ): Remove fallback declaration.
12844         * modules/pipe (Depends-on): Add environ.
12845         * lib/pipe.c (environ): Remove fallback declaration.
12846         * modules/setenv (Depends-on): Add environ.
12847         * lib/setenv.c (environ): Remove fallback declaration.
12848         * modules/unsetenv (Depends-on): Add environ.
12849         * lib/unsetenv.c (environ): Remove fallback declaration.
12850         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
12851         m4/environ.m4.
12852         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
12853         (gl_PREREQ_UNSETENV): Likewise.
12854
12855 2008-02-24  Bruno Haible  <bruno@clisp.org>
12856
12857         * doc/posix-functions/environ.texi: Document the MacOS X problem.
12858
12859 2008-02-20  Bob Proulx  <bob@proulx.com>
12860
12861         Enable use of older two part flavor 'git describe'.
12862         * build-aux/git-version-gen: If using the older two part flavor of
12863         git version then recreate the third part now present in the
12864         newer three part flavor of git describe.
12865
12866 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
12867
12868         * lib/fts.c (fts_build): Typo correction to comment.
12869
12870 2008-02-17  Bruno Haible  <bruno@clisp.org>
12871
12872         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
12873         generating no-op conflicts.
12874
12875 2008-02-17  Bruno Haible  <bruno@clisp.org>
12876
12877         Speed up by 10%.
12878         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
12879         result_entries, rather than an index-based loop.
12880
12881 2008-02-17  Bruno Haible  <bruno@clisp.org>
12882
12883         Speed up by 25%.
12884         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
12885         'hashcode_cached'.
12886         (entry_create): New function.
12887         (entry_hashcode): Use the cached hashcode if possible.
12888         (read_changelog_file, try_split_merged_entry): Use entry_create.
12889
12890 2008-02-17  Bruno Haible  <bruno@clisp.org>
12891
12892         Speed up from O(n^2) to O(n) for long ChangeLog files.
12893         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
12894         (read_changelog_file): Change implementation of entries_reversed list
12895         to rbtreehash.
12896         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
12897
12898 2008-02-17  Bruno Haible  <bruno@clisp.org>
12899
12900         New option --split-merged-entry.
12901         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
12902         (find_paragraph_end, try_split_merged_entry): New functions.
12903         (long_options): Add option --split-merged-entry.
12904         (usage): Document option --split-merged-entry.
12905         (main): Implement option --split-merged-entry.
12906         Reported by Eric Blake.
12907
12908 2008-02-17  Bruno Haible  <bruno@clisp.org>
12909
12910         * lib/git-merge-changelog.c: Include c-strstr.h.
12911         (main): Support the "git pull --rebase" situation.
12912         * modules/git-merge-changelog (Depends-on): Add c-strstr.
12913         Reported by Eric Blake.
12914
12915 2008-02-16  Eric Blake  <ebb9@byu.net>
12916
12917         Avoid doubling \ in common case of "c-maybe" quoting style.
12918         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
12919         eliding outer quotes.
12920         * lib/quotearg.h: Document this.
12921         * tests/test-quotearg.c (result_strings, inputs, results_g)
12922         (flag_results, locale_results): Test it by adding a new string to
12923         each test group.
12924         (compare_strings): Test new string.
12925
12926 2008-02-13  Eric Blake  <ebb9@byu.net>
12927
12928         Avoid trigraph quoting in default output.
12929         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
12930         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
12931         unless explicitly requested.
12932         * tests/test-quotearg.c (flag_results, main): Add additional tests.
12933
12934 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
12935
12936         Don't rely on signed integer overflowing to negative value.
12937         * lib/getugroups.c (getugroups): Include <limits.h>.
12938         Instead, compare against INT_MAX, and increment only if the test passes.
12939
12940 2008-02-13  Jim Meyering  <meyering@redhat.com>
12941         and Eric Blake  <ebb9@byu.net>
12942
12943         Avoid shadowing warning and compile errors on Linux.
12944         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
12945         forwarding macros on Linux.
12946         (dcgettext): Define a stub, for Linux.
12947         (results_g, main): Avoid warnings.
12948
12949 2008-02-12  Eric Blake  <ebb9@byu.net>
12950
12951         Silence warning in last patch.
12952         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
12953
12954         Quotearg part 4: add tests, fix c-maybe colon quoting.
12955         * lib/quotearg.h: Improve documentation.
12956         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
12957         escapes when adding outer quotes.  When quoting trigraphs, use
12958         valid C notation.  When quoting NUL, omit extra characters if next
12959         character is not digit.  Alter prototype.
12960         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
12961         callers.
12962         * modules/quotearg-tests: New module.
12963         * tests/test-quotearg.c: New test.
12964
12965 2008-02-07  Eric Blake  <ebb9@byu.net>
12966
12967         Quotearg part 3: add flag to control outer quote elision.
12968         * lib/quotearg.h (c_maybe_quoting_style): New style.
12969         (enum quoting_flags): Better documentation of flags.
12970         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
12971         c-maybe style.
12972         (quotearg_buffer_restyled): Handle new flag to elide outer
12973         quotes.
12974
12975         Quotearg part 2: add flag that can control NUL elision.
12976         * lib/quotearg.h (set_quoting_flags): New prototype.
12977         * lib/quotearg.c (struct quoting_options): Add flag field.
12978         (set_quoting_flags): New function.
12979         (quotearg_buffer_restyled): Add flags parameter.
12980         (quotearg_alloc_mem): Set the flag if length cannot be returned.
12981         (quotearg_n_options): Set the flag, since length cannot be
12982         returned.
12983         (quoting_options_from_style): Default flags correctly.
12984
12985         Quotearg part 1: more wrappers, restore quotearg_char state.
12986         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
12987         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
12988         (quotearg_colon_mem): New wrappers.
12989         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
12990         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
12991         functions.
12992         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
12993         (quotearg_colon_mem): New functions.
12994
12995 2008-02-11  Bruno Haible  <bruno@clisp.org>
12996
12997         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
12998         library in the current directory: it does not work with parallel make.
12999         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13000
13001 2008-02-11  Bruno Haible  <bruno@clisp.org>
13002
13003         * .gitattributes: New file.
13004
13005 2008-02-11  Jim Meyering  <meyering@redhat.com>
13006
13007         useless-if-before-free: Fix reversed exit values.
13008         * build-aux/useless-if-before-free: Use correct values
13009         for EXIT_MATCH and EXIT_NO_MATCH.
13010
13011         * build-aux/useless-if-before-free: Close stdout carefully.
13012
13013 2008-02-10  Bruno Haible  <bruno@clisp.org>
13014
13015         New module 'git-merge-changelog'.
13016         * modules/git-merge-changelog: New file.
13017         * lib/git-merge-changelog.c: New file.
13018
13019 2008-02-10  Jim Meyering  <meyering@redhat.com>
13020
13021         useless-if-before-free: New option: --list (-l).
13022
13023         useless-if-before-free: Don't exit immediately upon open failure.
13024         * build-aux/useless-if-before-free: Exit 2 for errors.
13025         Upon failure to open a file, don't exit immediately.
13026         Rather, just warn and continue with any remaining files.
13027
13028 2008-02-10  Bruno Haible  <bruno@clisp.org>
13029
13030         New abstract list operation 'node_set_value'.
13031         * lib/gl_list.h (gl_list_node_set_value): New function.
13032         (struct gl_list_implementation): New field node_set_value.
13033         * lib/gl_list.c (gl_list_node_set_value): New function.
13034         * lib/gl_array_list.c (gl_array_node_set_value): New function.
13035         (gl_array_list_implementation): Update.
13036         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
13037         (gl_carray_list_implementation): Update.
13038         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
13039         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
13040         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
13041         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
13042         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
13043         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
13044         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
13045         Update.
13046         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
13047         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
13048         (gl_sublist_list_implementation): Update.
13049
13050 2008-02-10  Bruno Haible  <bruno@clisp.org>
13051
13052         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
13053         Needed when ELEMENT is #defined to 'some_type *'.
13054
13055 2008-02-10  Jim Meyering  <meyering@redhat.com>
13056
13057         New script and module: useless-if-before-free
13058         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
13059         * build-aux/useless-if-before-free: New file.
13060         * modules/useless-if-before-free: New file.
13061
13062         * build-aux/gitlog-to-changelog: Use committer date, not author date.
13063
13064         xstrtol_error: Fix typo.
13065         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
13066         s/exit_failure/exit_status/.
13067
13068 2008-02-09  Jim Meyering  <meyering@redhat.com>
13069
13070         New script and module: gitlog-to-changelog
13071         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
13072         * modules/gitlog-to-changelog: New file.
13073         * build-aux/gitlog-to-changelog: New file.
13074
13075 2008-02-08  Jim Meyering  <meyering@redhat.com>
13076
13077         Avoid two "parameter unused" warnings.
13078         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
13079         Mark "st" as used.
13080
13081         Use "git COMMAND", not "git-COMMAND".
13082         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
13083         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
13084         * build-aux/git-version-gen: Use "git status", not "git-status".
13085
13086 2008-02-07  Bruno Haible  <bruno@clisp.org>
13087
13088         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
13089         Avoids a crash on Windows Vista.
13090         Reported by Adam Strzelecki <ono@java.pl> via
13091         Simon Josefsson <simon@josefsson.org>.
13092
13093 2008-02-06  Bruno Haible  <bruno@clisp.org>
13094
13095         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
13096         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
13097         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
13098         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
13099         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
13100         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
13101         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
13102         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
13103         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
13104         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
13105         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
13106         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
13107         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
13108         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
13109         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
13110         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
13111         left-adjust flag.
13112         * tests/test-snprintf-posix.h (test_function): Likewise.
13113         * tests/test-sprintf-posix.h (test_function): Likewise.
13114         * tests/test-vasprintf-posix.c (test_function): Likewise.
13115         * doc/posix-functions/fprintf.texi: Update.
13116         * doc/posix-functions/printf.texi: Update.
13117         * doc/posix-functions/snprintf.texi: Update.
13118         * doc/posix-functions/sprintf.texi: Update.
13119         * doc/posix-functions/vfprintf.texi: Update.
13120         * doc/posix-functions/vprintf.texi: Update.
13121         * doc/posix-functions/vsnprintf.texi: Update.
13122         * doc/posix-functions/vsprintf.texi: Update.
13123         Reported by Peter Fales <psfales@alcatel-lucent.com>.
13124
13125 2008-02-06  Bruno Haible  <bruno@clisp.org>
13126
13127         Fix bug introduced on 2008-01-26.
13128         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
13129
13130 2008-02-06  Bruno Haible  <bruno@clisp.org>
13131
13132         Fix bug introduced on 2007-06-10.
13133         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
13134         !NEED_PRINTF_FLAG_ZERO.
13135
13136 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
13137
13138         getloadavg: use libperfstat on AIX5
13139         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
13140
13141 2008-02-03  Bruno Haible  <bruno@clisp.org>
13142
13143         * lib/diffseq.h: Add comments about required #includes.
13144         Reported by Michael Biggs <gnulib@doubleplum.net>.
13145
13146 2008-02-01  Bruno Haible  <bruno@clisp.org>
13147
13148         * users.txt: Add gnuit.
13149
13150 2008-01-31  Bruno Haible  <bruno@clisp.org>
13151
13152         * lib/md4.c (set_uint32): Mark as inline.
13153         * lib/md5.c (set_uint32): Likewise.
13154         * lib/sha1.c (set_uint32): Likewise.
13155         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
13156         * m4/md5.m4 (gl_MD5): Likewise.
13157         * m4/sha1.m4 (gl_SHA1): Likewise.
13158
13159 2008-01-31  Jim Meyering  <meyering@redhat.com>
13160
13161         Use "sizeof VAR", rather than a literal "4".
13162         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
13163         * lib/md4.c (md4_read_ctx): Likewise.
13164         * lib/sha1.c (sha1_read_ctx): Likewise.
13165
13166 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13167
13168         * tests/test-sha1.c: New file, based on test-md5.c.
13169
13170         * modules/crypto/sha1-tests: New file.
13171
13172 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13173
13174         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
13175
13176 2008-01-31  Jim Meyering  <meyering@redhat.com>
13177
13178         Prefer "sizeof v" over the equivalent "4".
13179         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
13180         * lib/md5.c (set_uint32): Likewise.
13181         * lib/sha1.c (set_uint32): Likewise.
13182
13183 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13184
13185         * lib/sha1.c (set_uint32): Mark function as static.
13186
13187 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13188
13189         md2: clarify comments to say that alignment is not required.
13190         * lib/md2.h: Remove warning about alignment in comment.
13191         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
13192         never been required.
13193
13194 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13195
13196         md4: adapt alignment constraint fix from sha1.
13197         * lib/md4.c (set_uint32): New function, from sha1.c
13198         (md4_read_ctx): Use it.
13199         (md4_finish_ctx): Doc fix.
13200         * lib/md4.h: Doc fix.
13201
13202 2008-01-31  Simon Josefsson  <simon@josefsson.org>
13203
13204         md5: adapt alignment constraint fix from sha1.
13205         * lib/md5.c (set_uint32): New function, from sha1.c
13206         (md5_read_ctx): Use it.
13207         (md5_finish_ctx): Doc fix.
13208         * lib/md5.h: Doc fix.
13209
13210 2008-01-30  Peter Palfrader  <weasel@debian.org>
13211
13212         sha1: remove the result buffer alignment constraint
13213         * lib/sha1.c (set_uint32): New function.
13214         (sha1_read_ctx): Rewrite to remove the result buffer alignment
13215         constraint.
13216         (sha1_finish_ctx): Remove comment warning about alignment constraint.
13217         * lib/sha1.h: Likewise.
13218
13219 2008-01-30  Andreas Schwab  <schwab@suse.de>
13220             Bruno Haible  <bruno@clisp.org>
13221
13222         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
13223         correct definition of LDBL_MIN_EXP.
13224
13225 2008-01-30  Karl Berry  <karl@gnu.org>
13226
13227         * config/srclist-update: try to preserve x bit on updates.
13228         * config/srclistvars.sh: update for karl.
13229
13230 2008-01-29  Jim Meyering  <meyering@redhat.com>
13231
13232         vasnprintf.c: Avoid warning about unused label
13233         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
13234         "overflow" label definition and associated code with the
13235         same cpp condition that guards the sole use of that label.
13236
13237 2008-01-26  Bruno Haible  <bruno@clisp.org>
13238
13239         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
13240         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
13241         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
13242         * lib/isnanl-nolibm.h (isnanl): Likewise.
13243         Reported by Paul Eggert <eggert@cs.ucla.edu>.
13244
13245 2008-01-26  Bruno Haible  <bruno@clisp.org>
13246
13247         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
13248         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
13249
13250 2008-01-26  Bruno Haible  <bruno@clisp.org>
13251
13252         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
13253         GCC >= 4.0 built-in.
13254         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
13255
13256 2008-01-26  Bruno Haible  <bruno@clisp.org>
13257
13258         Rename isnan, applicable to 'double' only, to isnand.
13259         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
13260         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
13261         (configure.ac): Update.
13262         (Include): Replace "isnan.h" with "isnand.h".
13263         * m4/isnand.m4: Renamed from m4/isnan.m4.
13264         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
13265         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
13266         instead of isnan.c.
13267         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
13268         instead of HAVE_ISNAN_IN_LIBC.
13269         (isnand): Renamed from isnan.
13270         * lib/isnand.c: New file.
13271         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
13272         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
13273         (Makefile.am): Update.
13274         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
13275         Include isnand.h instead of isnan.h.
13276         (main): Test isnand instead of isnan.
13277         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
13278         isnan-nolibm.
13279         * modules/frexp (Depends-on): Likewise.
13280         * modules/frexp-tests (Depends-on): Likewise.
13281         * modules/frexp-nolibm (Depends-on): Likewise.
13282         * modules/frexp-nolibm-tests (Depends-on): Likewise.
13283         * modules/isfinite (Depends-on): Likewise.
13284         * modules/round-tests (Depends-on): Likewise.
13285         * modules/signbit (Depends-on): Likewise.
13286         * modules/signbit-tests (Depends-on): Likewise.
13287         * modules/snprintf-posix (Depends-on): Likewise.
13288         * modules/sprintf-posix (Depends-on): Likewise.
13289         * modules/trunc-tests (Depends-on): Likewise.
13290         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
13291         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
13292         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
13293         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
13294         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
13295         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
13296         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
13297         * modules/vasnprintf-posix (Depends-on): Likewise.
13298         * modules/vasprintf-posix (Depends-on): Likewise.
13299         * modules/vfprintf-posix (Depends-on): Likewise.
13300         * modules/vsnprintf-posix (Depends-on): Likewise.
13301         * modules/vsprintf-posix (Depends-on): Likewise.
13302         * lib/frexp.c: Include isnand.h instead of isnan.h.
13303         (ISNAN): Set to isnand instead of isnan.
13304         * lib/isfinite.c: Include isnand.h instead of isnan.h.
13305         (gl_isfinited): Use isnand instead of isnan.
13306         * lib/signbitd.c: Include isnand.h instead of isnan.h.
13307         (gl_signbitd): Use isnand instead of isnan.
13308         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
13309         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
13310         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
13311         (main): Use isnand instead of isnan.
13312         * tests/test-round1.c: Include isnand.h.
13313         (main): Use isnand instead of isnan.
13314         * tests/test-round2.c: Include isnand.h instead of isnan.h.
13315         (ISNAN): Set to isnand instead of isnan.
13316         * tests/test-trunc1.c: Include isnand.h.
13317         (main): Use isnand instead of isnan.
13318         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
13319         (equal): Use isnand instead of isnan.
13320         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
13321         isnand-nolibm.
13322         * NEWS: Mention the change.
13323
13324 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
13325             Bruno Haible  <bruno@clisp.org>
13326
13327         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
13328         the GCC builtins for signbits are present and set
13329         REPLACE_SIGNBIT_USING_GCC if so.
13330         * lib/math.in.h (signbit): Define using GCC builtins if
13331         REPLACE_SIGNBIT_USING_GCC is set.
13332         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
13333         REPLACE_SIGNBIT_USING_GCC.
13334         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
13335
13336 2008-01-25  Jim Meyering  <meyering@redhat.com>
13337
13338         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
13339         * lib/poll.c: Include <config.h>, not "config.h".
13340         * tests/test-getaddrinfo.c: Likewise.
13341
13342 2008-01-25  Simon Josefsson  <simon@josefsson.org>
13343
13344         * modules/sockets-tests: New file.
13345
13346 2008-01-24  Simon Josefsson  <simon@josefsson.org>
13347
13348         * modules/sockets: New module, can be used to call WSA_Startup and
13349         WSA_Cleanup when needed.
13350
13351         * lib/sockets.h, lib/sockets.c: New files.
13352
13353         * m4/sockets.m4: New file.
13354
13355         * tests/test-sockets.c: New file.
13356
13357 2008-01-19  Bruno Haible  <bruno@clisp.org>
13358
13359         * doc/posix-headers: Renamed from doc/headers.
13360         * doc/posix-functions: Renamed from doc/functions.
13361         * doc/gnulib.texi: Update.
13362
13363 2008-01-19  Bruno Haible  <bruno@clisp.org>
13364
13365         * doc/glibc-functions/strcasestr.texi: Include contents of
13366         doc/functions/strcasestr.texi, fixing the list of platforms.
13367         * doc/functions/strcasestr.texi: Remove file.
13368
13369 2008-01-19  Bruno Haible  <bruno@clisp.org>
13370
13371         * doc/glibc-functions/memmem.texi: Include contents of
13372         doc/functions/memmem.texi.
13373         * doc/functions/memmem.texi: Remove file.
13374
13375 2008-01-18  Bruno Haible  <bruno@clisp.org>
13376
13377         * doc/glibc-functions/*.texi: New files.
13378         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
13379         to use the new files.
13380
13381 2008-01-17  Bruno Haible  <bruno@clisp.org>
13382
13383         * tests/test-gethostname.c (main): Fix printf statement.
13384
13385 2008-01-17  Simon Josefsson  <simon@josefsson.org>
13386
13387         * modules/gethostname-tests: New file.
13388
13389         * tests/test-gethostname.c: New file.
13390
13391 2008-01-17  Simon Josefsson  <simon@josefsson.org>
13392
13393         * lib/gethostname.c: Include string.h unconditionally, strncpy is
13394         used by the UNAME case.  Reported by Bruno Haible
13395         <bruno@clisp.org>.
13396
13397 2008-01-17  Eric Blake  <ebb9@byu.net>
13398
13399         Convert c-strcasestr to be more efficient.
13400         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
13401         (Depends-on): Add c-strcase, remove malloca, strnlen.
13402         * tests/test-c-strcasestr.c (main): Enhance test.
13403         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
13404
13405 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
13406
13407         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
13408         Use it in creating po/Makevars.
13409
13410 2008-01-15  Simon Josefsson  <simon@josefsson.org>
13411
13412         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
13413         Applications that requires it should initialize libgcrypt
13414         manually.
13415
13416 2008-01-16  Simon Josefsson  <simon@josefsson.org>
13417
13418         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
13419
13420 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
13421
13422         Fix problem with getdate on mingw32 reported by Simon Josefsson
13423         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
13424         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
13425         tzname", when deciding whether to declare tzname.
13426         * lib/strftime.c (tzname): Likewise.
13427
13428 2008-01-15  Bruno Haible  <bruno@clisp.org>
13429
13430         Work around a MacOS X 10.5 bug in frexpl().
13431         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
13432         * doc/functions/frexpl.texi: Document the bug.
13433         Reported by Elias Pipping <pipping@gentoo.org>.
13434
13435 2008-01-14  Eric Blake  <ebb9@byu.net>
13436
13437         Touch up previous patch.
13438         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
13439         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
13440
13441         Convert strcasestr module to use Two-Way algorithm.
13442         * modules/strcasestr-simple: New module, based on the old
13443         strcasestr, but with Two-Way rather than KMP.
13444         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
13445         * lib/string.in.h (rpl_strcasestr): Declare.
13446         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
13447         performance.
13448         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
13449         * modules/string (Makefile.am): Support strcasestr.
13450         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
13451         * modules/strcasestr-tests (Depends-on): Check for alarm.
13452         * tests/test-strcasestr.c: Augment test.
13453         * lib/str-two-way.h: Clean up stray macro.
13454         * NEWS: Document new module.
13455         * MODULES.html.sh (string handling): Likewise.
13456         * doc/functions/strcasestr.texi: New file.
13457         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
13458         here, since it is not a POSIX function.
13459
13460 2008-01-14  Colin Watson  <cjwatson@debian.org>
13461             Bruno Haible  <bruno@clisp.org>
13462
13463         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
13464         works fine; if not, set REPLACE_STRSIGNAL.
13465         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
13466         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13467         REPLACE_STRSIGNAL.
13468         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
13469         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
13470         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
13471
13472 2008-01-14  Bruno Haible  <bruno@clisp.org>
13473
13474         * modules/strsignal (Include): Change to <string.h>.
13475
13476 2008-01-14  Colin Watson  <cjwatson@debian.org>
13477
13478         * modules/argp (Notice): Add a notice recommending to change
13479         XGETTEXT_OPTIONS.
13480         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
13481
13482 2008-01-13  Colin Watson  <cjwatson@debian.org>
13483
13484         * modules/strsignal-tests: New file.
13485         * tests/test-strsignal.c: New file.
13486
13487         * lib/strsignal.c: New file, from glibc with modifications.
13488         * lib/siglist.h: New file, from glibc with modifications.
13489         * lib/string.in.h (strsignal): New declaration.
13490         * m4/strsignal.m4: New file.
13491         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13492         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
13493         * modules/strsignal: New file.
13494         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
13495         HAVE_DECL_STRSIGNAL.
13496
13497 2008-01-13  Bruno Haible  <bruno@clisp.org>
13498
13499         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
13500         locale encoding is not ASCII. Needed for OpenBSD 4.0.
13501         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
13502         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
13503
13504 2008-01-13  Bruno Haible  <bruno@clisp.org>
13505
13506         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
13507         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
13508         * lib/argp.h (__attribute__): Likewise.
13509         * lib/c-stack.c (__attribute__): Likewise.
13510         * lib/error.h (__attribute__): Likewise.
13511         * lib/fts.c (__attribute__): Likewise.
13512         * lib/openat.h (__attribute__): Likewise.
13513         * lib/stdio.in.h (__attribute__): Likewise.
13514         * lib/string.in.h (__attribute__): Likewise.
13515         * lib/utimens.c (__attribute__): Likewise.
13516         * lib/vasnprintf.h (__attribute__): Likewise.
13517         * lib/xalloc.h (__attribute__): Likewise.
13518         * lib/xprintf.h (__attribute__): Likewise.
13519         * lib/xstrtol.h (__attribute__): Likewise.
13520         * lib/xvasprintf.h (__attribute__): Likewise.
13521
13522 2008-01-12  Bruno Haible  <bruno@clisp.org>
13523
13524         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
13525         * doc/glibc-headers/a.out.texi: New file.
13526         * doc/glibc-headers/aliases.texi: New file.
13527         * doc/glibc-headers/alloca.texi: New file.
13528         * doc/glibc-headers/ar.texi: New file.
13529         * doc/glibc-headers/argp.texi: New file.
13530         * doc/glibc-headers/argz.texi: New file.
13531         * doc/glibc-headers/byteswap.texi: New file.
13532         * doc/glibc-headers/crypt.texi: New file.
13533         * doc/glibc-headers/endian.texi: New file.
13534         * doc/glibc-headers/envz.texi: New file.
13535         * doc/glibc-headers/err.texi: New file.
13536         * doc/glibc-headers/error.texi: New file.
13537         * doc/glibc-headers/execinfo.texi: New file.
13538         * doc/glibc-headers/fpu_control.texi: New file.
13539         * doc/glibc-headers/fstab.texi: New file.
13540         * doc/glibc-headers/fts.texi: New file.
13541         * doc/glibc-headers/getopt.texi: New file.
13542         * doc/glibc-headers/ieee754.texi: New file.
13543         * doc/glibc-headers/ifaddrs.texi: New file.
13544         * doc/glibc-headers/libintl.texi: New file.
13545         * doc/glibc-headers/mcheck.texi: New file.
13546         * doc/glibc-headers/mntent.texi: New file.
13547         * doc/glibc-headers/obstack.texi: New file.
13548         * doc/glibc-headers/paths.texi: New file.
13549         * doc/glibc-headers/printf.texi: New file.
13550         * doc/glibc-headers/pty.texi: New file.
13551         * doc/glibc-headers/resolv.texi: New file.
13552         * doc/glibc-headers/shadow.texi: New file.
13553         * doc/glibc-headers/sysexits.texi: New file.
13554         * doc/glibc-headers/ttyent.texi: New file.
13555
13556 2008-01-12  Jim Meyering  <meyering@redhat.com>
13557
13558         announce-gen: emit Gnulib's git-based version string.
13559         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
13560         New option --gnulib-version=V, where V is expected to be
13561         the output of running git describe in the gnulib directory.
13562         (get_tool_versions): Request feedback on xdelta.  I suspect it's
13563         not useful, and plan to stop publishing an xdelta file with each
13564         coreutils release.
13565
13566         * build-aux/announce-gen: Also check for lzma-compressed files.
13567
13568 2008-01-11  Bruno Haible  <bruno@clisp.org>
13569
13570         * tests/test-memmem.c (main): Increase maximum allowed time.
13571         * tests/test-strstr.c (main): Likewise.
13572
13573 2008-01-11  Bruno Haible  <bruno@clisp.org>
13574
13575         * doc/functions/memmem.texi: Add more precisions about platforms.
13576         * doc/functions/strstr.texi: Likewise.
13577
13578 2008-01-10  Eric Blake  <ebb9@byu.net>
13579
13580         * m4/strstr.m4: Delete cruft from copy-n-paste.
13581         Reported by Bruno Haible.
13582
13583 2008-01-10  Bruno Haible  <bruno@clisp.org>
13584
13585         Make c-strstr rely on strstr.
13586         * lib/c-strstr.c: Don't include str-kmp.h.
13587         (c_strstr): Define in terms of strstr.
13588         * modules/c-strstr (Files): Remove lib/str-kmp.h.
13589         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
13590
13591 2008-01-10  Bruno Haible  <bruno@clisp.org>
13592
13593         * doc/gnulib.texi (String Functions in C Locale): New section.
13594         * doc/c-ctype.texi: New file.
13595         * doc/c-strcase.texi: New file.
13596         * doc/c-strcaseeq.texi: New file.
13597         * doc/c-strcasestr.texi: New file.
13598         * doc/c-strstr.texi: New file.
13599         * doc/c-strtod.texi: New file.
13600         * doc/c-strtold.texi: New file.
13601
13602 2008-01-10  Eric Blake  <ebb9@byu.net>
13603
13604         * lib/relocatable.h: Fix a comment.
13605
13606 2008-01-10  Eric Blake  <ebb9@byu.net>
13607
13608         Share two-way algorithm.
13609         * lib/str-two-way.h: New file, merged from...
13610         * lib/memmem.c: ...here...
13611         * lib/strstr.c: ...and here.
13612         * modules/memmem (Files): Use it.
13613         * modules/strstr (Files): Likewise.
13614
13615         Avoid quadratic strstr implementations.
13616         * lib/strstr.c: New file.
13617         * m4/strstr.m4: Likewise.
13618         * modules/strstr: Likewise.
13619         * modules/strstr-tests: Likewise.
13620         * tests/test-strstr.c: Likewise.
13621         * lib/string.in.h (rpl_strstr): Declare.
13622         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
13623         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
13624         * modules/string (Makefile.am): Likewise.
13625         * MODULES.html.sh (string handling): Mention new module.
13626         * doc/functions/strstr.texi (strstr): Document the bug.
13627
13628 2008-01-10  Bruno Haible  <bruno@clisp.org>
13629
13630         * lib/relocatable.h (relocate): State whether result is freshly
13631         allocated or not.
13632         * lib/relocatable.c (relocate): Return a freshly allocated string
13633         instead of a pointer to a privately held string.
13634         Reported by Sylvain Beucler <beuc@gnu.org>.
13635
13636 2008-01-10  Colin Watson  <cjwatson@debian.org>
13637
13638         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
13639         s/S_ISNLK/S_ISLNK/.
13640
13641 2008-01-09  Bruno Haible  <bruno@clisp.org>
13642
13643         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
13644         and other files.
13645         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
13646         if it's only a guess.
13647         * modules/memmem: Simplify by depending on memmem-simple.
13648
13649 2008-01-09  Bruno Haible  <bruno@clisp.org>
13650
13651         Work around OpenBSD 4.0 tdelete() bug.
13652         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
13653         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
13654         macros and don't redefine the enum values.
13655         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
13656         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
13657         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
13658
13659 2008-01-09  Bruno Haible  <bruno@clisp.org>
13660
13661         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
13662         (main): Don't perform the tests if setlocale did not install a UTF-8
13663         locale. Needed on OpenBSD 4.0.
13664         * modules/wcwidth-tests (Depends-on): Add localcharset.
13665
13666 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13667
13668         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
13669         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
13670         * NEWS: announce this.
13671         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
13672
13673 2008-01-09  Simon Josefsson  <simon@josefsson.org>
13674         and Eric Blake  <ebb9@byu.net>
13675
13676         Add memmem-simple module.
13677         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
13678         (gl_FUNC_MEMMEM): Separate performance from presence checks.
13679         * modules/memmem-simple: New file.
13680         * modules/memmem (Description): Tweak.
13681         * MODULES.html.sh (string handling): Mention new module.
13682         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
13683         addressed by memmem-simple.
13684         * NEWS: Document the difference.
13685
13686 2008-01-09  Eric Blake  <ebb9@byu.net>
13687
13688         Give gcc some memmem optimization hints.
13689         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
13690         (strcasestr): Declare as pure.
13691         * modules/memmem (Maintainer): Claim my implementation.
13692
13693 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13694
13695         Support AIX 6.1 and higher.
13696         * build-aux/config.libpath: Likewise.
13697         * build-aux/config.rpath: Likewise.
13698
13699 2008-01-08  Jim Meyering  <meyering@redhat.com>
13700             Bruno Haible  <bruno@clisp.org>
13701
13702         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
13703         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
13704         Reported by Peter Fales in
13705         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
13706
13707 2008-01-08  Bruno Haible  <bruno@clisp.org>
13708
13709         * modules/unictype/category-of (Depends-on): Add
13710         unictype/category-none.
13711         * modules/unictype/category-and-tests (Depends-on): Add
13712         unictype/category-{L,N,Lu,Nd}.
13713         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
13714         * modules/unictype/category-or-tests (Depends-on): Add
13715         unictype/category-{L,N}.
13716         * modules/unictype/category-name-tests (Depends-on): Add
13717         unictype/category-{Z,Nl}.
13718         Reported by Simon Josefsson.
13719
13720 2008-01-08  Bruno Haible  <bruno@clisp.org>
13721
13722         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
13723         convention better.
13724         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
13725         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
13726         Reported by Peter Miller <millerp@canb.auug.org.au>.
13727
13728 2008-01-08  Eric Blake  <ebb9@byu.net>
13729
13730         Rewrite memmem to guarantee linear complexity without malloc.
13731         * lib/memmem.c (memmem): Use Two-Way rather than
13732         Knuth-Morris-Pratt, to allow O(1) space usage.
13733         (critical_factorization, two_way_short_needle)
13734         (two_way_long_needle): New functions.
13735         (knuth_morris_pratt): Delete.
13736         * modules/memmem (Depends-on): No longer need malloca or stdbool.
13737         Add stdint.
13738         * tests/test-memmem.c (main): Add tests for periodic needle and
13739         sublinear performance.
13740         * doc/functions/memmem.texi (memmem): Document other deficiencies
13741         in cygwin and older glibc.
13742
13743 2008-01-08  Bruno Haible  <bruno@clisp.org>
13744
13745         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
13746         augmentation.
13747
13748 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
13749
13750         Add a configure time option: --disable-acl.
13751         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
13752         AC_ARG_ENABLE(acl).
13753
13754 2008-01-06  Simon Josefsson  <simon@josefsson.org>
13755
13756         * tests/test-localename.c: Don't include obsolete "setenv.h".
13757
13758         * modules/localename-tests (Depends-on): Need unsetenv.
13759
13760 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13761
13762         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
13763
13764 2008-01-06  Colin Watson  <cjwatson@debian.org>
13765
13766         * users.txt: Add man-db.
13767
13768 2008-01-07  Bruno Haible  <bruno@clisp.org>
13769
13770         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
13771         previous section name.
13772
13773 2008-01-07  Bruno Haible  <bruno@clisp.org>
13774
13775         * lib/progname.c (set_program_name): Don't strip off a leading
13776         "lt-" prefix outside a .libs directory.
13777         Suggested by Paul Eggert.
13778
13779 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
13780             Bruno Haible  <bruno@clisp.org>
13781
13782         Improve memory cleanup in 'relocatable' module.
13783         * lib/relocatable.h (compute_curr_prefix): Change return type to
13784         'char *'.
13785         * lib/relocatable.c (compute_curr_prefix): Change return type to
13786         'char *'. Free curr_installdir after use.
13787         (relocate): Free curr_prefix_better after use.
13788         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
13789
13790 2008-01-01  Bruno Haible  <bruno@clisp.org>
13791
13792         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
13793         failure on older glibc systems.
13794         Reported by Peter Fales <psfales@alcatel-lucent.com>.
13795
13796 2008-01-05  Eric Blake  <ebb9@byu.net>
13797
13798         Avoid quadratic system memmem.
13799         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
13800         Reported by Ralf Wildenhues.
13801
13802         Fix memmem test for mingw.
13803         * modules/memmem-tests (configure.ac): Check for alarm.
13804         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
13805         it.
13806         * doc/functions/memmem.texi: New file.
13807         * doc/gnulib.texi (Function Substitutes): Add memmem.
13808         Reported by Bruno Haible.
13809
13810 2008-01-04  Bruno Haible  <bruno@clisp.org>
13811
13812         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
13813         Require gl_HEADER_STRINGS_H_DEFAULTS, not
13814         gl_HEADER_STRING_H_DEFAULTS.
13815
13816 2008-01-04  Eric Blake  <ebb9@byu.net>
13817
13818         Shorten duration of memmem test.
13819         * tests/test-memmem.c (main): Use alarm to declare failure if test
13820         is taking too long.
13821         Reported by Ralf Wildenhues.
13822
13823 2007-12-21  Simon Josefsson  <simon@josefsson.org>
13824
13825         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
13826         string, needed by strerror.
13827
13828 2008-01-03  Colin Watson  <cjwatson@debian.org>
13829             Bruno Haible  <bruno@clisp.org>
13830
13831         * doc/gnulib-tool.texi (Localization): New section.
13832
13833 2008-01-02  Bruno Haible  <bruno@clisp.org>
13834
13835         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
13836         variables to 'unsigned char *' type.
13837         Reported by Paul Eggert.
13838
13839 2008-01-02  Jim Meyering  <jim@meyering.net>
13840
13841         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
13842
13843 2007-12-31  Jim Meyering  <jim@meyering.net>
13844
13845         Avoid use of private FTS type name.
13846         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
13847
13848 2007-12-30  Karl Berry  <karl@gnu.org>
13849
13850         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
13851         work around defect in Texinfo and/or the standalone Info browser.
13852
13853 2007-12-30  Bruno Haible  <bruno@clisp.org>
13854
13855         Unify 5 copies of the KMP code.
13856         * lib/str-kmp.h: New file.
13857         * lib/c-strcasestr.c: Include str-kmp.h.
13858         (knuth_morris_pratt): Remove function.
13859         (c_strcasestr): Update.
13860         * lib/c-strstr.c: Include str-kmp.h.
13861         (knuth_morris_pratt): Remove function.
13862         (c_strcasestr): Update.
13863         * lib/mbscasestr.c: Include str-kmp.h.
13864         (knuth_morris_pratt_unibyte): Remove function.
13865         * lib/mbsstr.c: Include str-kmp.h.
13866         (knuth_morris_pratt_unibyte): Remove function.
13867         * lib/strcasestr.c: Include str-kmp.h.
13868         (knuth_morris_pratt): Remove function.
13869         (strcasestr): Update.
13870         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
13871         * modules/c-strstr (Files): Likewise.
13872         * modules/mbscasestr (Files): Likewise.
13873         * modules/mbsstr (Files): Likewise.
13874         * modules/strcasestr (Files): Likewise.
13875         Suggested by Paul Eggert.
13876
13877 2007-12-30  Bruno Haible  <bruno@clisp.org>
13878
13879         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
13880         defined.
13881
13882 2007-12-30  Bruno Haible  <bruno@clisp.org>
13883
13884         * lib/xmalloca.h: Include xalloc.h.
13885         (xnmalloca): New macro.
13886
13887 2007-12-30  Bruno Haible  <bruno@clisp.org>
13888
13889         * lib/malloca.h (nmalloca): New macro.
13890         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
13891         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
13892         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
13893         knuth_morris_pratt_multibyte): Likewise.
13894         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
13895         knuth_morris_pratt_multibyte): Likewise.
13896         * lib/memmem.c (knuth_morris_pratt): Likewise.
13897         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
13898
13899 2007-12-25  Bruno Haible  <bruno@clisp.org>
13900
13901         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
13902         * lib/glob.c: Don't include openat.h.
13903         (link_exists2_p): Add back the code that deals with the
13904         !GLOB_ALTDIRFUNC case.
13905         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
13906         let it do the filename concatenation.
13907         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
13908         * modules/glob (Depends-on): Remove openat.
13909
13910 2007-12-31  Bruno Haible  <bruno@clisp.org>
13911
13912         * modules/dirfd (License): Change to LGPLv2+.
13913         Approved by Jim Meyering.
13914
13915 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
13916
13917         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
13918         when multiplying M by sizeof (size_t).
13919
13920 2007-12-10  Martin Lambers  <marlam@marlam.de>
13921
13922         Override getpagesize on mingw.
13923         * lib/getpagesize.c: New file.
13924         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
13925         * modules/getpagesize (Files): Add lib/getpagesize.c.
13926         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
13927         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13928         REPLACE_GETPAGESIZE.
13929         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
13930
13931 2007-12-25  Bruno Haible  <bruno@clisp.org>
13932
13933         * modules/localcharset (Notice): New field.
13934         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
13935         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
13936
13937 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
13938             Bruno Haible  <bruno@clisp.org>
13939
13940         Avoid using the syntax symbol() in formatted documentation.
13941         * MODULES.html.sh (func_module): When replacing symbol() with a
13942         hyperlink, remove the parentheses. Show an error if some remain.
13943         Recognize and render the '...' syntax.
13944         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
13945         Rework. Add paragraph about GCC's inlining.
13946         * doc/alloca.texi: Likewise.
13947         * doc/error.texi: Remove parentheses from symbol reference.
13948         * doc/gnulib-intro.texi: Likewise.
13949         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
13950         * modules/fnmatch (Description): Reword to say "the ... function".
13951         * modules/full-read (Description): Likewise.
13952         * modules/full-write (Description): Likewise.
13953         * modules/safe-read (Description): Likewise.
13954         * modules/safe-write (Description): Likewise.
13955         * modules/strchrnul (Description): Likewise.
13956         * modules/trim (Description): Likewise.
13957         * modules/error (Description): Remove parentheses from symbol
13958         references.
13959         * modules/verror (Description): Likewise.
13960         Reported by Karl Berry.
13961
13962 2007-12-25  Bruno Haible  <bruno@clisp.org>
13963
13964         Fixup after 2007-10-16 commit.
13965         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
13966
13967 2007-12-24  Bruno Haible  <bruno@clisp.org>
13968
13969         Make --enable-relocatable work with DESTDIR.
13970         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
13971         to compute installdir from destprog.
13972         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
13973         also set the RELOC_DESTDIR variable.
13974         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
13975
13976 2007-12-24  Bruno Haible  <bruno@clisp.org>
13977
13978         Fix link error due to xalloc_die().
13979         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
13980         of xreadlink.
13981         * lib/relocwrapper.c: Update comments.
13982         * build-aux/install-reloc: Remove xreadlink.c from file list.
13983         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
13984         xreadlink.c.
13985         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
13986
13987 2007-12-24  Bruno Haible  <bruno@clisp.org>
13988
13989         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
13990         * lib/setenv.h: Remove file.
13991         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
13992         lib/setenv.h.
13993         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
13994         (Depends-on): Add stdlib.
13995         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
13996         gl_FUNC_UNSETENV.
13997         (Include): Replace setenv.h with <stdlib.h>.
13998         * modules/unsetenv: New file.
13999         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
14000         * lib/unsetenv.c: Include <stdlib.h> first.
14001         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
14002         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
14003         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
14004         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
14005         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
14006         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
14007         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
14008         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
14009         * doc/functions/unsetenv.texi: Update.
14010         * modules/xsetenv (Depends-on): Add unsetenv.
14011         * modules/getdate (Depends-on): Likewise.
14012         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
14013         * lib/xsetenv.c: Don't include setenv.h.
14014         * lib/getdate.y: Likewise.
14015         * lib/relocwrapper.c: Likewise.
14016         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
14017         (Depends-on): Add stdlib.
14018         * NEWS: Mention the changes.
14019         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
14020
14021 2007-12-23  Bruno Haible  <bruno@clisp.org>
14022
14023         * lib/memmem.c (memmem): Use lowercase variable names. Tab
14024         indentation.
14025
14026 2007-12-23  Bruno Haible  <bruno@clisp.org>
14027
14028         * lib/c-strcasestr.c: Add more comments.
14029         * lib/c-strstr.c: Likewise.
14030         * lib/mbscasestr.c: Likewise.
14031         * lib/mbsstr.c: Likewise.
14032         * lib/strcasestr.c: Likewise.
14033         * lib/memmem.c: Likewise.
14034
14035 2007-12-23  Bruno Haible  <bruno@clisp.org>
14036
14037         * tests/test-memmem.c: Include <string.h> first.
14038
14039 2007-12-22  Bruno Haible  <bruno@clisp.org>
14040
14041         * gnulib-tool (func_create_testdir): Change $auxdir while generating
14042         the contents of $testsbase.
14043         Reported by Ralf Wildenhues.
14044
14045 2007-12-22  Bruno Haible  <bruno@clisp.org>
14046
14047         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
14048         two variables local_ldadd_before, local_ldadd_last.
14049
14050 2007-12-20  Eric Blake  <ebb9@byu.net>
14051
14052         Work around circular library issue when cross-compiling.
14053         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
14054         that progname.o does not need to pull in rpl_memcmp.
14055
14056 2007-12-19  Eric Blake  <ebb9@byu.net>
14057
14058         Fix memmem to avoid O(n^2) worst-case complexity.
14059         * lib/memmem.c (knuth_morris_pratt): New function.
14060         (memmem): Use it if first few naive iterations fail.
14061         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
14062         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
14063         * modules/memchr (License): Likewise.
14064         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
14065         malloca.
14066         * tests/test-memmem.c: Rewrite, borrowing ideas from
14067         test-mbsstr1.c; the old version wouldn't even compile!
14068         * modules/memmem-tests: New file.
14069         * lib/string.in.h (rpl_memmem): Add declaration.
14070         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
14071         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
14072         REPLACE_MEMMEM.
14073
14074 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
14075
14076         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
14077         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
14078         before any system include files, and undef after them all.  This
14079         should fix a problem on VMS reported by John E. Malmberg in
14080         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
14081
14082 2007-12-17  Eric Blake  <ebb9@byu.net>
14083
14084         Revert addition of verify, for BSD/OS.
14085         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
14086         can't handle large files, for the sake of obsolete platforms.
14087         * modules/fseeko (Depends-on): Remove verify.
14088         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
14089         * doc/functions/ftello.texi (ftello): Likewise.
14090         * doc/functions/fgetpos.texi (fgetpos): Likewise.
14091         Reported by Larry Jones.
14092
14093 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
14094
14095         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
14096         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
14097
14098 2007-12-17  Jim Meyering  <meyering@redhat.com>
14099
14100         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
14101         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
14102         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
14103         * modules/getcwd (Depends-on): Add openat.
14104         Reported by Petr Salinger.
14105
14106 2007-12-17  Bruno Haible  <bruno@clisp.org>
14107
14108         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
14109         avoid a segmentation fault of the configure test on x86_64 systems.
14110
14111 2007-12-15  Jim Meyering  <meyering@redhat.com>
14112
14113         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
14114
14115 2007-12-13  Eric Blake  <ebb9@byu.net>
14116
14117         Another fseek test.
14118         * tests/test-fseek.c (main): Also test ungetc handling.
14119         * tests/test-fseeko.c (main): Likewise.
14120         * modules/fseeko (Depends-on): Add verify.
14121         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
14122         large.
14123         Reported by Larry Jones.
14124
14125         Fix fseeko on mingw.
14126         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
14127         seek.
14128
14129         Beef up fseek tests.
14130         * tests/test-fseek.c (main): Also test eof handling.
14131         * tests/test-fseeko.c (main): Likewise.
14132         Reported by Larry Jones.
14133
14134 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
14135
14136         Fix fseeko on BSD-based platforms.
14137         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
14138         successful seek.
14139
14140 2007-12-12  Eric Blake  <ebb9@byu.net>
14141
14142         Allow circular dependency of separate libtests.a
14143         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
14144         when use_libtests.
14145
14146 2007-12-11  Eric Blake  <ebb9@byu.net>
14147
14148         Fix bug with -0.0L in previous patch.
14149         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
14150         * tests/test-isnan.c (main): Also test on zeroes.
14151         * tests/test-isnanf.c (main): Likewise.
14152         * tests/test-isnanl.h (main): Likewise.
14153
14154         Detect pseudo-denormals on x86 even when cross-compiling.
14155         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
14156         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
14157         invalid bit patterns that happen to satisfy ==.
14158
14159         Avoid link failures with separate libtests.a.
14160         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
14161         last, to satisfy circular dependencies.
14162
14163 2007-12-11  Eric Blake  <ebb9@byu.net>
14164         and Bruno Haible  <bruno@clisp.org>
14165
14166         Fix OpenBSD 4.0 <float.h> handling of long double.
14167         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
14168         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
14169         * doc/headers/float.texi (float.h): Document OpenBSD bug.
14170
14171 2007-12-11  Jim Meyering  <meyering@redhat.com>
14172
14173         * users.txt: Add libvirt.
14174
14175         Support versions of autoconf prior to 2.59c.
14176         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
14177         if it is not already defined.
14178
14179 2007-12-09  Bruno Haible  <bruno@clisp.org>
14180
14181         Let 'gnulib-tool --import' collect sources needed for the tests in
14182         tests/ rather than in lib/.
14183         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
14184         argument. If true, add rules to generate libtests.a, and put libtests.a
14185         into $(LDADD). Consider source files in subdirectories and set
14186         uses_subdirs.
14187         (func_emit_initmacro_start, func_emit_initmacro_end,
14188         func_emit_initmacro_done): Pass all arguments explicitly.
14189         (func_import): Determine two module lists main_modules,
14190         testsrelated_modules. Determine use_libtests. Determine two variables
14191         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
14192         instead of just sed_transform_lib_file. Determine two variables
14193         main_files and testsrelated_files. Compute 'files' as the union of
14194         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
14195         func_add_or_update. In the generated gnulib-comp.m4, collect the
14196         object files for tests/ in different variables than those for lib/.
14197         Substitute LIBTESTS_LIBDEPS.
14198         (func_create_testdir): Combine the uses_subdirs results from
14199         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
14200
14201 2007-12-09  Bruno Haible  <bruno@clisp.org>
14202
14203         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
14204         the build-aux directory.
14205
14206 2007-12-09  Bruno Haible  <bruno@clisp.org>
14207
14208         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
14209         introduced on 2006-09-09.
14210
14211 2007-12-07  Jim Meyering  <meyering@redhat.com>
14212
14213         Let these macros work also with autoconf-2.59.
14214         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
14215         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
14216         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
14217
14218 2007-12-06  Jim Meyering  <meyering@redhat.com>
14219
14220         Avoid a configure-time syntax error in gl_FUNC_ACL.
14221         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
14222         function in each branch, before testing the cache variable.
14223
14224 2007-12-04  Eric Blake  <ebb9@byu.net>
14225
14226         Make scripts executable.
14227         * build-aux/config.guess: Add execute permissions.
14228         * build-aux/config.sub: Likewise.
14229         * build-aux/gendocs.sh: Likewise.
14230
14231         Fix frexp on mingw.
14232         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
14233         cross-compiling.
14234         * doc/functions/frexp.texi (frexp): Document the bug.
14235
14236         Make cygwin fseeko check more reliable.
14237         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
14238         version numbers, rather than unrelated feature check.
14239         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
14240         * doc/functions/ftello.texi (ftello): Likewise.
14241         Reported by Bruno Haible.
14242
14243         * m4/strerror.m4: Bump version number.
14244
14245 2007-12-03  Bruno Haible  <bruno@clisp.org>
14246
14247         * doc/functions/mprotect.texi: Mention the mingw problem.
14248
14249 2007-12-03  Eric Blake  <ebb9@byu.net>
14250
14251         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
14252         REPLACE_STRERROR is initialized before this macro.
14253
14254 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
14255
14256         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
14257         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
14258         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
14259         put -lsec in even for programs other than 'ls'.  This fixes a problem
14260         for gettext reported by Bruno Haible in
14261         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
14262         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
14263         Add support for Solaris 10.  This isn't efficient, but should get the
14264         job done for now.
14265
14266 2007-12-03  James Youngman  <jay@gnu.org>
14267
14268         * doc/regexprops-generic.texi: change "an close-group" to "a
14269         close-group" and "illegal" to "not allowed".
14270
14271 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14272
14273         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
14274         pr_byname.h. Needed for the rare case when the maintainer has done
14275         "make maintainer-clean" in the source directory and then attempts a
14276         build outside the source directory.
14277         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
14278         scripts_byname.h.
14279
14280 2007-12-02  Martin Lambers <marlam@marlam.de>
14281             Bruno Haible  <bruno@clisp.org>
14282
14283         * lib/getpagesize.h: Remove file.
14284         * lib/unistd.in.h: Include declaration of getpagesize here.
14285         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
14286         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
14287         HAVE_SYS_PARAM_H.
14288         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
14289         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
14290         * modules/getpagesize (Files): Remove lib/getpagesize.h.
14291         (Depends-on): Add unistd.
14292         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
14293         (Include): Use <unistd.h> instead of getpagesize.h.
14294         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
14295         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
14296         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
14297         gl_GETPAGESIZE invocation, already handled by module dependency.
14298         * lib/pagealign_alloc.c: Don't include getpagesize.h.
14299
14300 2007-12-02  Bruno Haible  <bruno@clisp.org>
14301
14302         * modules/strings-tests: New file.
14303         * tests/test-strings.c: New file.
14304
14305         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
14306         * lib/strings.in.h: New file.
14307         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
14308         * m4/strings_h.m4: New file.
14309         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
14310         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
14311         * modules/strings: New file.
14312         * modules/string (Makefile.am): Update.
14313         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
14314         Reported by Karl Berry.
14315
14316 2007-12-01  Eric Blake  <ebb9@byu.net>
14317
14318         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
14319         accomodate fix in cygwin 1.5.25.
14320
14321 2007-12-01  Jim Meyering  <meyering@redhat.com>
14322
14323         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
14324         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
14325         that would inhibit utf8-optimization of a regexp containing line-
14326         or buffer-anchors, e.g., `^', `$'.
14327
14328 2007-11-30  Bruno Haible  <bruno@clisp.org>
14329
14330         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
14331         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
14332         glthread_recursive_lock_init.
14333         * lib/lock.c (glthread_recursive_lock_init)
14334         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
14335         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14336
14337 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
14338
14339         New function qset_acl, like set_acl but with syscall semantics.
14340         * lib/acl.h (qset_acl): New decl.
14341         * lib/acl.c (qset_acl): New function.
14342         (set_acl): Use new function.  Use more-consistent diagnostics.
14343
14344 2007-11-28  Jim Meyering  <meyering@redhat.com>
14345
14346         * modules/physmem (License): Change from GPL to LGPLv2+.
14347
14348 2007-11-26  Bruno Haible  <bruno@clisp.org>
14349
14350         * lib/vasnprintf.c (decode_long_double): Don't abort if the
14351         'long double' type has excess precision.
14352         Reported by Jim Meyering in
14353         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
14354
14355 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14356
14357         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
14358         Sync from <http://gnu.org/licenses>.
14359         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
14360         with license text from same location.
14361         * doc/maintain.texi, doc/standards.texi:  Sync from
14362         <http://savannah.gnu.org/projects/gnustandards>.
14363
14364 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
14365         and Jim Meyering  <meyering@redhat.com>
14366
14367         Adjust getdate' grammar to accept a slightly more regular language.
14368         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
14369         Before, the former was rejected.
14370         * lib/getdate.y (digits_to_date_time): New function, factored
14371         out of ...
14372         (number): ...here.  Just call digits_to_date_time.
14373         (hybrid): New non-terminal to handle an <unsigned number,
14374         signed relative offset> sequence consistently.
14375
14376 2007-11-18  Jim Meyering  <meyering@redhat.com>
14377
14378         Pull my changes from coreutils:
14379         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
14380         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
14381         use of $gnulib_tool_option_extras, so that it's separated from the
14382         preceding argument.
14383
14384         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
14385         * build-aux/bootstrap (cp_mark_as_generated): Create any required
14386         parent destination directories before copying a file into place.
14387
14388 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
14389
14390         bootstrap: work also with 4-argument variant of AC_INIT
14391         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
14392
14393 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
14394
14395         Port test-getaddrinfo to Solaris.
14396         Problem reported by Bruno Haible in
14397         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
14398         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
14399         explanation of setting 'hints'.
14400         Don't reject an implementation merely because it returns EAI_SERVICE.
14401         (EAI_SERVICE): Define to 0 if not defined.
14402
14403 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
14404
14405         The license of gnu-make and posix-shell is now "GPLed build tool".
14406         * modules/gnu-make (License): Likewise.
14407         * modules/posix-shell (License): Likewise.
14408
14409         New module posix-shell, for determining a POSIX shell
14410         or perhaps something that is close enough to a POSIX shell.
14411         * m4/posix-shell.m4: New file.
14412         * modules/posix-shell: New file.
14413
14414         * MODULES.html.sh: Mention new module.
14415
14416         New module gnu-make, for determining whether we're using GNU Make.
14417         * m4/gnu-make.m4: New file.
14418         * modules/gnu-make: New file.
14419         * MODULES.html.sh: Mention new module.
14420
14421 2007-11-14  Jim Meyering  <meyering@redhat.com>
14422
14423         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
14424         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
14425         use this macro to create a function _definition_.
14426         Remove useless "#undef ARGMATCH_DIE".
14427
14428 2007-11-14  Bruno Haible  <bruno@clisp.org>
14429
14430         * lib/config.charset: Update for OpenBSD 4.1.
14431         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
14432
14433 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
14434
14435         Document 64-bit #if problems in stdint.texi.
14436         * doc/headers/stdint.texi (stdint.h): Mention problems with
14437         64-bit-#if, and how to work around them.
14438
14439         Don't insist on 'long long int' support in the preprocessor.  It
14440         breaks too many things.  For example, PRIdMAX still uses a 'long
14441         long int' format with the latest Sun compiler, even though
14442         HAVE_LONG_LONG_INT isn't defined due to that compiler's
14443         preprocessor problem.  This causes the latest coreutils to dump
14444         core on Solaris 10 sparc with the Sun C compiler.
14445         Instead, fix the 2007-10-16 problem in a different way, by evaluating
14446         the troublesome expressions at configure-time, not at #if-time.
14447         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
14448         preprocessor.
14449         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
14450         compile-time C checks, done at 'configure'-time.
14451         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
14452         * modules/inttypes (Makefile): Substitute the new symbols that
14453         gl_INTTYPES_H now generates.
14454         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
14455
14456 2007-11-12  Bruno Haible  <bruno@clisp.org>
14457
14458         Tests for Unicode character classification functions.
14459
14460         * modules/unictype/bidicategory-byname-tests: New file.
14461         * modules/unictype/bidicategory-name-tests: New file.
14462         * modules/unictype/bidicategory-of-tests: New file.
14463         * modules/unictype/bidicategory-test-tests: New file.
14464         * modules/unictype/block-list-tests: New file.
14465         * modules/unictype/block-of-tests: New file.
14466         * modules/unictype/block-test-tests: New file.
14467         * modules/unictype/category-C-tests: New file.
14468         * modules/unictype/category-Cc-tests: New file.
14469         * modules/unictype/category-Cf-tests: New file.
14470         * modules/unictype/category-Cn-tests: New file.
14471         * modules/unictype/category-Co-tests: New file.
14472         * modules/unictype/category-Cs-tests: New file.
14473         * modules/unictype/category-L-tests: New file.
14474         * modules/unictype/category-Ll-tests: New file.
14475         * modules/unictype/category-Lm-tests: New file.
14476         * modules/unictype/category-Lo-tests: New file.
14477         * modules/unictype/category-Lt-tests: New file.
14478         * modules/unictype/category-Lu-tests: New file.
14479         * modules/unictype/category-M-tests: New file.
14480         * modules/unictype/category-Mc-tests: New file.
14481         * modules/unictype/category-Me-tests: New file.
14482         * modules/unictype/category-Mn-tests: New file.
14483         * modules/unictype/category-N-tests: New file.
14484         * modules/unictype/category-Nd-tests: New file.
14485         * modules/unictype/category-Nl-tests: New file.
14486         * modules/unictype/category-No-tests: New file.
14487         * modules/unictype/category-P-tests: New file.
14488         * modules/unictype/category-Pc-tests: New file.
14489         * modules/unictype/category-Pd-tests: New file.
14490         * modules/unictype/category-Pe-tests: New file.
14491         * modules/unictype/category-Pf-tests: New file.
14492         * modules/unictype/category-Pi-tests: New file.
14493         * modules/unictype/category-Po-tests: New file.
14494         * modules/unictype/category-Ps-tests: New file.
14495         * modules/unictype/category-S-tests: New file.
14496         * modules/unictype/category-Sc-tests: New file.
14497         * modules/unictype/category-Sk-tests: New file.
14498         * modules/unictype/category-Sm-tests: New file.
14499         * modules/unictype/category-So-tests: New file.
14500         * modules/unictype/category-Z-tests: New file.
14501         * modules/unictype/category-Zl-tests: New file.
14502         * modules/unictype/category-Zp-tests: New file.
14503         * modules/unictype/category-Zs-tests: New file.
14504         * modules/unictype/category-and-not-tests: New file.
14505         * modules/unictype/category-and-tests: New file.
14506         * modules/unictype/category-byname-tests: New file.
14507         * modules/unictype/category-name-tests: New file.
14508         * modules/unictype/category-none-tests: New file.
14509         * modules/unictype/category-of-tests: New file.
14510         * modules/unictype/category-or-tests: New file.
14511         * modules/unictype/category-test-withtable-tests: New file.
14512         * modules/unictype/combining-class-tests: New file.
14513         * modules/unictype/ctype-alnum-tests: New file.
14514         * modules/unictype/ctype-alpha-tests: New file.
14515         * modules/unictype/ctype-blank-tests: New file.
14516         * modules/unictype/ctype-cntrl-tests: New file.
14517         * modules/unictype/ctype-digit-tests: New file.
14518         * modules/unictype/ctype-graph-tests: New file.
14519         * modules/unictype/ctype-lower-tests: New file.
14520         * modules/unictype/ctype-print-tests: New file.
14521         * modules/unictype/ctype-punct-tests: New file.
14522         * modules/unictype/ctype-space-tests: New file.
14523         * modules/unictype/ctype-upper-tests: New file.
14524         * modules/unictype/ctype-xdigit-tests: New file.
14525         * modules/unictype/decimal-digit-tests: New file.
14526         * modules/unictype/digit-tests: New file.
14527         * modules/unictype/mirror-tests: New file.
14528         * modules/unictype/numeric-tests: New file.
14529         * modules/unictype/property-alphabetic-tests: New file.
14530         * modules/unictype/property-ascii-hex-digit-tests: New file.
14531         * modules/unictype/property-bidi-arabic-digit-tests: New file.
14532         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
14533         * modules/unictype/property-bidi-block-separator-tests: New file.
14534         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
14535         * modules/unictype/property-bidi-common-separator-tests: New file.
14536         * modules/unictype/property-bidi-control-tests: New file.
14537         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
14538         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
14539         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
14540         * modules/unictype/property-bidi-european-digit-tests: New file.
14541         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
14542         * modules/unictype/property-bidi-left-to-right-tests: New file.
14543         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
14544         * modules/unictype/property-bidi-other-neutral-tests: New file.
14545         * modules/unictype/property-bidi-pdf-tests: New file.
14546         * modules/unictype/property-bidi-segment-separator-tests: New file.
14547         * modules/unictype/property-bidi-whitespace-tests: New file.
14548         * modules/unictype/property-byname-tests: New file.
14549         * modules/unictype/property-combining-tests: New file.
14550         * modules/unictype/property-composite-tests: New file.
14551         * modules/unictype/property-currency-symbol-tests: New file.
14552         * modules/unictype/property-dash-tests: New file.
14553         * modules/unictype/property-decimal-digit-tests: New file.
14554         * modules/unictype/property-default-ignorable-code-point-tests: New file.
14555         * modules/unictype/property-deprecated-tests: New file.
14556         * modules/unictype/property-diacritic-tests: New file.
14557         * modules/unictype/property-extender-tests: New file.
14558         * modules/unictype/property-format-control-tests: New file.
14559         * modules/unictype/property-grapheme-base-tests: New file.
14560         * modules/unictype/property-grapheme-extend-tests: New file.
14561         * modules/unictype/property-grapheme-link-tests: New file.
14562         * modules/unictype/property-hex-digit-tests: New file.
14563         * modules/unictype/property-hyphen-tests: New file.
14564         * modules/unictype/property-id-continue-tests: New file.
14565         * modules/unictype/property-id-start-tests: New file.
14566         * modules/unictype/property-ideographic-tests: New file.
14567         * modules/unictype/property-ids-binary-operator-tests: New file.
14568         * modules/unictype/property-ids-trinary-operator-tests: New file.
14569         * modules/unictype/property-ignorable-control-tests: New file.
14570         * modules/unictype/property-iso-control-tests: New file.
14571         * modules/unictype/property-join-control-tests: New file.
14572         * modules/unictype/property-left-of-pair-tests: New file.
14573         * modules/unictype/property-line-separator-tests: New file.
14574         * modules/unictype/property-logical-order-exception-tests: New file.
14575         * modules/unictype/property-lowercase-tests: New file.
14576         * modules/unictype/property-math-tests: New file.
14577         * modules/unictype/property-non-break-tests: New file.
14578         * modules/unictype/property-not-a-character-tests: New file.
14579         * modules/unictype/property-numeric-tests: New file.
14580         * modules/unictype/property-other-alphabetic-tests: New file.
14581         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
14582         * modules/unictype/property-other-grapheme-extend-tests: New file.
14583         * modules/unictype/property-other-id-continue-tests: New file.
14584         * modules/unictype/property-other-id-start-tests: New file.
14585         * modules/unictype/property-other-lowercase-tests: New file.
14586         * modules/unictype/property-other-math-tests: New file.
14587         * modules/unictype/property-other-uppercase-tests: New file.
14588         * modules/unictype/property-paired-punctuation-tests: New file.
14589         * modules/unictype/property-paragraph-separator-tests: New file.
14590         * modules/unictype/property-pattern-syntax-tests: New file.
14591         * modules/unictype/property-pattern-white-space-tests: New file.
14592         * modules/unictype/property-private-use-tests: New file.
14593         * modules/unictype/property-punctuation-tests: New file.
14594         * modules/unictype/property-quotation-mark-tests: New file.
14595         * modules/unictype/property-radical-tests: New file.
14596         * modules/unictype/property-sentence-terminal-tests: New file.
14597         * modules/unictype/property-soft-dotted-tests: New file.
14598         * modules/unictype/property-space-tests: New file.
14599         * modules/unictype/property-terminal-punctuation-tests: New file.
14600         * modules/unictype/property-test-tests: New file.
14601         * modules/unictype/property-titlecase-tests: New file.
14602         * modules/unictype/property-unassigned-code-value-tests: New file.
14603         * modules/unictype/property-unified-ideograph-tests: New file.
14604         * modules/unictype/property-uppercase-tests: New file.
14605         * modules/unictype/property-variation-selector-tests: New file.
14606         * modules/unictype/property-white-space-tests: New file.
14607         * modules/unictype/property-xid-continue-tests: New file.
14608         * modules/unictype/property-xid-start-tests: New file.
14609         * modules/unictype/property-zero-width-tests: New file.
14610         * modules/unictype/scripts-tests: New file.
14611         * modules/unictype/syntax-c-ident-tests: New file.
14612         * modules/unictype/syntax-c-whitespace-tests: New file.
14613         * modules/unictype/syntax-java-ident-tests: New file.
14614         * modules/unictype/syntax-java-whitespace-tests: New file.
14615         * tests/unictype/test-bidi_byname.c: New file.
14616         * tests/unictype/test-bidi_name.c: New file.
14617         * tests/unictype/test-bidi_of.c: New file.
14618         * tests/unictype/test-bidi_test.c: New file.
14619         * tests/unictype/test-block_list.c: New file.
14620         * tests/unictype/test-block_of.c: New file.
14621         * tests/unictype/test-block_test.c: New file.
14622         * tests/unictype/test-categ_and.c: New file.
14623         * tests/unictype/test-categ_and_not.c: New file.
14624         * tests/unictype/test-categ_byname.c: New file.
14625         * tests/unictype/test-categ_name.c: New file.
14626         * tests/unictype/test-categ_none.c: New file.
14627         * tests/unictype/test-categ_of.c: New file.
14628         * tests/unictype/test-categ_or.c: New file.
14629         * tests/unictype/test-categ_test_withtable.c: New file.
14630         * tests/unictype/test-combining.c: New file.
14631         * tests/unictype/test-decdigit.c: New file.
14632         * tests/unictype/test-digit.c: New file.
14633         * tests/unictype/test-mirror.c: New file.
14634         * tests/unictype/test-numeric.c: New file.
14635         * tests/unictype/test-pr_byname.c: New file.
14636         * tests/unictype/test-pr_test.c: New file.
14637         * tests/unictype/test-predicate-part1.h: New file.
14638         * tests/unictype/test-predicate-part2.h: New file.
14639         * tests/unictype/test-scripts.c: New file.
14640         * tests/unictype/test-sy_c_ident.c: New file.
14641         * tests/unictype/test-sy_java_ident.c: New file.
14642
14643         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
14644         for Unicode 5.0.0.
14645         * tests/unictype/test-categ_Cc.c: Likewise.
14646         * tests/unictype/test-categ_Cf.c: Likewise.
14647         * tests/unictype/test-categ_Cn.c: Likewise.
14648         * tests/unictype/test-categ_Co.c: Likewise.
14649         * tests/unictype/test-categ_Cs.c: Likewise.
14650         * tests/unictype/test-categ_L.c: Likewise.
14651         * tests/unictype/test-categ_Ll.c: Likewise.
14652         * tests/unictype/test-categ_Lm.c: Likewise.
14653         * tests/unictype/test-categ_Lo.c: Likewise.
14654         * tests/unictype/test-categ_Lt.c: Likewise.
14655         * tests/unictype/test-categ_Lu.c: Likewise.
14656         * tests/unictype/test-categ_M.c: Likewise.
14657         * tests/unictype/test-categ_Mc.c: Likewise.
14658         * tests/unictype/test-categ_Me.c: Likewise.
14659         * tests/unictype/test-categ_Mn.c: Likewise.
14660         * tests/unictype/test-categ_N.c: Likewise.
14661         * tests/unictype/test-categ_Nd.c: Likewise.
14662         * tests/unictype/test-categ_Nl.c: Likewise.
14663         * tests/unictype/test-categ_No.c: Likewise.
14664         * tests/unictype/test-categ_P.c: Likewise.
14665         * tests/unictype/test-categ_Pc.c: Likewise.
14666         * tests/unictype/test-categ_Pd.c: Likewise.
14667         * tests/unictype/test-categ_Pe.c: Likewise.
14668         * tests/unictype/test-categ_Pf.c: Likewise.
14669         * tests/unictype/test-categ_Pi.c: Likewise.
14670         * tests/unictype/test-categ_Po.c: Likewise.
14671         * tests/unictype/test-categ_Ps.c: Likewise.
14672         * tests/unictype/test-categ_S.c: Likewise.
14673         * tests/unictype/test-categ_Sc.c: Likewise.
14674         * tests/unictype/test-categ_Sk.c: Likewise.
14675         * tests/unictype/test-categ_Sm.c: Likewise.
14676         * tests/unictype/test-categ_So.c: Likewise.
14677         * tests/unictype/test-categ_Z.c: Likewise.
14678         * tests/unictype/test-categ_Zl.c: Likewise.
14679         * tests/unictype/test-categ_Zp.c: Likewise.
14680         * tests/unictype/test-categ_Zs.c: Likewise.
14681         * tests/unictype/test-ctype_alnum.c: Likewise.
14682         * tests/unictype/test-ctype_alpha.c: Likewise.
14683         * tests/unictype/test-ctype_blank.c: Likewise.
14684         * tests/unictype/test-ctype_cntrl.c: Likewise.
14685         * tests/unictype/test-ctype_digit.c: Likewise.
14686         * tests/unictype/test-ctype_graph.c: Likewise.
14687         * tests/unictype/test-ctype_lower.c: Likewise.
14688         * tests/unictype/test-ctype_print.c: Likewise.
14689         * tests/unictype/test-ctype_punct.c: Likewise.
14690         * tests/unictype/test-ctype_space.c: Likewise.
14691         * tests/unictype/test-ctype_upper.c: Likewise.
14692         * tests/unictype/test-ctype_xdigit.c: Likewise.
14693         * tests/unictype/test-decdigit.h: Likewise.
14694         * tests/unictype/test-digit.h: Likewise.
14695         * tests/unictype/test-numeric.h: Likewise.
14696         * tests/unictype/test-pr_alphabetic.c: Likewise.
14697         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
14698         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
14699         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
14700         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
14701         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
14702         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
14703         * tests/unictype/test-pr_bidi_control.c: Likewise.
14704         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
14705         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
14706         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
14707         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
14708         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
14709         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
14710         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
14711         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
14712         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
14713         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
14714         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
14715         * tests/unictype/test-pr_combining.c: Likewise.
14716         * tests/unictype/test-pr_composite.c: Likewise.
14717         * tests/unictype/test-pr_currency_symbol.c: Likewise.
14718         * tests/unictype/test-pr_dash.c: Likewise.
14719         * tests/unictype/test-pr_decimal_digit.c: Likewise.
14720         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
14721         * tests/unictype/test-pr_deprecated.c: Likewise.
14722         * tests/unictype/test-pr_diacritic.c: Likewise.
14723         * tests/unictype/test-pr_extender.c: Likewise.
14724         * tests/unictype/test-pr_format_control.c: Likewise.
14725         * tests/unictype/test-pr_grapheme_base.c: Likewise.
14726         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
14727         * tests/unictype/test-pr_grapheme_link.c: Likewise.
14728         * tests/unictype/test-pr_hex_digit.c: Likewise.
14729         * tests/unictype/test-pr_hyphen.c: Likewise.
14730         * tests/unictype/test-pr_id_continue.c: Likewise.
14731         * tests/unictype/test-pr_id_start.c: Likewise.
14732         * tests/unictype/test-pr_ideographic.c: Likewise.
14733         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
14734         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
14735         * tests/unictype/test-pr_ignorable_control.c: Likewise.
14736         * tests/unictype/test-pr_iso_control.c: Likewise.
14737         * tests/unictype/test-pr_join_control.c: Likewise.
14738         * tests/unictype/test-pr_left_of_pair.c: Likewise.
14739         * tests/unictype/test-pr_line_separator.c: Likewise.
14740         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
14741         * tests/unictype/test-pr_lowercase.c: Likewise.
14742         * tests/unictype/test-pr_math.c: Likewise.
14743         * tests/unictype/test-pr_non_break.c: Likewise.
14744         * tests/unictype/test-pr_not_a_character.c: Likewise.
14745         * tests/unictype/test-pr_numeric.c: Likewise.
14746         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
14747         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
14748         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
14749         * tests/unictype/test-pr_other_id_continue.c: Likewise.
14750         * tests/unictype/test-pr_other_id_start.c: Likewise.
14751         * tests/unictype/test-pr_other_lowercase.c: Likewise.
14752         * tests/unictype/test-pr_other_math.c: Likewise.
14753         * tests/unictype/test-pr_other_uppercase.c: Likewise.
14754         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
14755         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
14756         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
14757         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
14758         * tests/unictype/test-pr_private_use.c: Likewise.
14759         * tests/unictype/test-pr_punctuation.c: Likewise.
14760         * tests/unictype/test-pr_quotation_mark.c: Likewise.
14761         * tests/unictype/test-pr_radical.c: Likewise.
14762         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
14763         * tests/unictype/test-pr_soft_dotted.c: Likewise.
14764         * tests/unictype/test-pr_space.c: Likewise.
14765         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
14766         * tests/unictype/test-pr_titlecase.c: Likewise.
14767         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
14768         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
14769         * tests/unictype/test-pr_uppercase.c: Likewise.
14770         * tests/unictype/test-pr_variation_selector.c: Likewise.
14771         * tests/unictype/test-pr_white_space.c: Likewise.
14772         * tests/unictype/test-pr_xid_continue.c: Likewise.
14773         * tests/unictype/test-pr_xid_start.c: Likewise.
14774         * tests/unictype/test-pr_zero_width.c: Likewise.
14775         * tests/unictype/test-sy_c_whitespace.c: Likewise.
14776         * tests/unictype/test-sy_java_whitespace.c: Likewise.
14777
14778 2007-11-12  Bruno Haible  <bruno@clisp.org>
14779
14780         Unicode character classification functions.
14781         * lib/unictype.h: New file.
14782         * modules/unictype/base: New file.
14783         * modules/unictype/category-L: New file.
14784         * modules/unictype/category-Lu: New file.
14785         * modules/unictype/category-Ll: New file.
14786         * modules/unictype/category-Lt: New file.
14787         * modules/unictype/category-Lm: New file.
14788         * modules/unictype/category-Lo: New file.
14789         * modules/unictype/category-M: New file.
14790         * modules/unictype/category-Mn: New file.
14791         * modules/unictype/category-Mc: New file.
14792         * modules/unictype/category-Me: New file.
14793         * modules/unictype/category-N: New file.
14794         * modules/unictype/category-Nd: New file.
14795         * modules/unictype/category-Nl: New file.
14796         * modules/unictype/category-No: New file.
14797         * modules/unictype/category-P: New file.
14798         * modules/unictype/category-Pc: New file.
14799         * modules/unictype/category-Pd: New file.
14800         * modules/unictype/category-Ps: New file.
14801         * modules/unictype/category-Pe: New file.
14802         * modules/unictype/category-Pi: New file.
14803         * modules/unictype/category-Pf: New file.
14804         * modules/unictype/category-Po: New file.
14805         * modules/unictype/category-S: New file.
14806         * modules/unictype/category-Sm: New file.
14807         * modules/unictype/category-Sc: New file.
14808         * modules/unictype/category-Sk: New file.
14809         * modules/unictype/category-So: New file.
14810         * modules/unictype/category-Z: New file.
14811         * modules/unictype/category-Zs: New file.
14812         * modules/unictype/category-Zl: New file.
14813         * modules/unictype/category-Zp: New file.
14814         * modules/unictype/category-C: New file.
14815         * modules/unictype/category-Cc: New file.
14816         * modules/unictype/category-Cf: New file.
14817         * modules/unictype/category-Cs: New file.
14818         * modules/unictype/category-Co: New file.
14819         * modules/unictype/category-Cn: New file.
14820         * modules/unictype/category-or: New file.
14821         * modules/unictype/category-of: New file.
14822         * modules/unictype/category-test: New file.
14823         * modules/unictype/category-test-withtable: New file.
14824         * modules/unictype/category-byname: New file.
14825         * modules/unictype/category-none: New file.
14826         * modules/unictype/category-and: New file.
14827         * modules/unictype/category-and-not: New file.
14828         * modules/unictype/category-name: New file.
14829         * modules/unictype/combining-class: New file.
14830         * modules/unictype/category-all: New file.
14831         * modules/unictype/bidicategory-all: New file.
14832         * modules/unictype/bidicategory-byname: New file.
14833         * modules/unictype/bidicategory-name: New file.
14834         * modules/unictype/bidicategory-of: New file.
14835         * modules/unictype/bidicategory-test: New file.
14836         * modules/unictype/decimal-digit: New file.
14837         * modules/unictype/digit: New file.
14838         * modules/unictype/numeric: New file.
14839         * modules/unictype/mirror: New file.
14840         * modules/unictype/property-white-space: New file.
14841         * modules/unictype/property-alphabetic: New file.
14842         * modules/unictype/property-other-alphabetic: New file.
14843         * modules/unictype/property-not-a-character: New file.
14844         * modules/unictype/property-default-ignorable-code-point: New file.
14845         * modules/unictype/property-other-default-ignorable-code-point: New
14846         file.
14847         * modules/unictype/property-deprecated: New file.
14848         * modules/unictype/property-logical-order-exception: New file.
14849         * modules/unictype/property-variation-selector: New file.
14850         * modules/unictype/property-private-use: New file.
14851         * modules/unictype/property-unassigned-code-value: New file.
14852         * modules/unictype/property-uppercase: New file.
14853         * modules/unictype/property-other-uppercase: New file.
14854         * modules/unictype/property-lowercase: New file.
14855         * modules/unictype/property-other-lowercase: New file.
14856         * modules/unictype/property-titlecase: New file.
14857         * modules/unictype/property-soft-dotted: New file.
14858         * modules/unictype/property-id-start: New file.
14859         * modules/unictype/property-other-id-start: New file.
14860         * modules/unictype/property-id-continue: New file.
14861         * modules/unictype/property-other-id-continue: New file.
14862         * modules/unictype/property-xid-start: New file.
14863         * modules/unictype/property-xid-continue: New file.
14864         * modules/unictype/property-pattern-white-space: New file.
14865         * modules/unictype/property-pattern-syntax: New file.
14866         * modules/unictype/property-join-control: New file.
14867         * modules/unictype/property-grapheme-base: New file.
14868         * modules/unictype/property-grapheme-extend: New file.
14869         * modules/unictype/property-other-grapheme-extend: New file.
14870         * modules/unictype/property-grapheme-link: New file.
14871         * modules/unictype/property-bidi-control: New file.
14872         * modules/unictype/property-bidi-left-to-right: New file.
14873         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
14874         * modules/unictype/property-bidi-arabic-right-to-left: New file.
14875         * modules/unictype/property-bidi-european-digit: New file.
14876         * modules/unictype/property-bidi-eur-num-separator: New file.
14877         * modules/unictype/property-bidi-eur-num-terminator: New file.
14878         * modules/unictype/property-bidi-arabic-digit: New file.
14879         * modules/unictype/property-bidi-common-separator: New file.
14880         * modules/unictype/property-bidi-block-separator: New file.
14881         * modules/unictype/property-bidi-segment-separator: New file.
14882         * modules/unictype/property-bidi-whitespace: New file.
14883         * modules/unictype/property-bidi-non-spacing-mark: New file.
14884         * modules/unictype/property-bidi-boundary-neutral: New file.
14885         * modules/unictype/property-bidi-pdf: New file.
14886         * modules/unictype/property-bidi-embedding-or-override: New file.
14887         * modules/unictype/property-bidi-other-neutral: New file.
14888         * modules/unictype/property-hex-digit: New file.
14889         * modules/unictype/property-ascii-hex-digit: New file.
14890         * modules/unictype/property-ideographic: New file.
14891         * modules/unictype/property-unified-ideograph: New file.
14892         * modules/unictype/property-radical: New file.
14893         * modules/unictype/property-ids-binary-operator: New file.
14894         * modules/unictype/property-ids-trinary-operator: New file.
14895         * modules/unictype/property-zero-width: New file.
14896         * modules/unictype/property-space: New file.
14897         * modules/unictype/property-non-break: New file.
14898         * modules/unictype/property-iso-control: New file.
14899         * modules/unictype/property-format-control: New file.
14900         * modules/unictype/property-dash: New file.
14901         * modules/unictype/property-hyphen: New file.
14902         * modules/unictype/property-punctuation: New file.
14903         * modules/unictype/property-line-separator: New file.
14904         * modules/unictype/property-paragraph-separator: New file.
14905         * modules/unictype/property-quotation-mark: New file.
14906         * modules/unictype/property-sentence-terminal: New file.
14907         * modules/unictype/property-terminal-punctuation: New file.
14908         * modules/unictype/property-currency-symbol: New file.
14909         * modules/unictype/property-math: New file.
14910         * modules/unictype/property-other-math: New file.
14911         * modules/unictype/property-paired-punctuation: New file.
14912         * modules/unictype/property-left-of-pair: New file.
14913         * modules/unictype/property-combining: New file.
14914         * modules/unictype/property-composite: New file.
14915         * modules/unictype/property-decimal-digit: New file.
14916         * modules/unictype/property-numeric: New file.
14917         * modules/unictype/property-diacritic: New file.
14918         * modules/unictype/property-extender: New file.
14919         * modules/unictype/property-ignorable-control: New file.
14920         * modules/unictype/property-test: New file.
14921         * modules/unictype/property-byname: New file.
14922         * modules/unictype/property-all: New file.
14923         * modules/unictype/scripts: New file.
14924         * modules/unictype/scripts-all: New file.
14925         * modules/unictype/block-of: New file.
14926         * modules/unictype/block-test: New file.
14927         * modules/unictype/block-list: New file.
14928         * modules/unictype/block-all: New file.
14929         * modules/unictype/syntax-c-whitespace: New file.
14930         * modules/unictype/syntax-java-whitespace: New file.
14931         * modules/unictype/syntax-c-ident: New file.
14932         * modules/unictype/syntax-java-ident: New file.
14933         * modules/unictype/ctype-alnum: New file.
14934         * modules/unictype/ctype-alpha: New file.
14935         * modules/unictype/ctype-cntrl: New file.
14936         * modules/unictype/ctype-digit: New file.
14937         * modules/unictype/ctype-graph: New file.
14938         * modules/unictype/ctype-lower: New file.
14939         * modules/unictype/ctype-print: New file.
14940         * modules/unictype/ctype-punct: New file.
14941         * modules/unictype/ctype-space: New file.
14942         * modules/unictype/ctype-upper: New file.
14943         * modules/unictype/ctype-xdigit: New file.
14944         * modules/unictype/ctype-blank: New file.
14945         * lib/unictype/bidi_byname.c: New file.
14946         * lib/unictype/bidi_name.c: New file.
14947         * lib/unictype/bidi_of.c: New file.
14948         * lib/unictype/bidi_test.c: New file.
14949         * lib/unictype/bitmap.h: New file.
14950         * lib/unictype/block_test.c: New file.
14951         * lib/unictype/blocks.c: New file.
14952         * lib/unictype/categ_C.c: New file.
14953         * lib/unictype/categ_Cc.c: New file.
14954         * lib/unictype/categ_Cf.c: New file.
14955         * lib/unictype/categ_Cn.c: New file.
14956         * lib/unictype/categ_Co.c: New file.
14957         * lib/unictype/categ_Cs.c: New file.
14958         * lib/unictype/categ_L.c: New file.
14959         * lib/unictype/categ_Ll.c: New file.
14960         * lib/unictype/categ_Lm.c: New file.
14961         * lib/unictype/categ_Lo.c: New file.
14962         * lib/unictype/categ_Lt.c: New file.
14963         * lib/unictype/categ_Lu.c: New file.
14964         * lib/unictype/categ_M.c: New file.
14965         * lib/unictype/categ_Mc.c: New file.
14966         * lib/unictype/categ_Me.c: New file.
14967         * lib/unictype/categ_Mn.c: New file.
14968         * lib/unictype/categ_N.c: New file.
14969         * lib/unictype/categ_Nd.c: New file.
14970         * lib/unictype/categ_Nl.c: New file.
14971         * lib/unictype/categ_No.c: New file.
14972         * lib/unictype/categ_P.c: New file.
14973         * lib/unictype/categ_Pc.c: New file.
14974         * lib/unictype/categ_Pd.c: New file.
14975         * lib/unictype/categ_Pe.c: New file.
14976         * lib/unictype/categ_Pf.c: New file.
14977         * lib/unictype/categ_Pi.c: New file.
14978         * lib/unictype/categ_Po.c: New file.
14979         * lib/unictype/categ_Ps.c: New file.
14980         * lib/unictype/categ_S.c: New file.
14981         * lib/unictype/categ_Sc.c: New file.
14982         * lib/unictype/categ_Sk.c: New file.
14983         * lib/unictype/categ_Sm.c: New file.
14984         * lib/unictype/categ_So.c: New file.
14985         * lib/unictype/categ_Z.c: New file.
14986         * lib/unictype/categ_Zl.c: New file.
14987         * lib/unictype/categ_Zp.c: New file.
14988         * lib/unictype/categ_Zs.c: New file.
14989         * lib/unictype/categ_and.c: New file.
14990         * lib/unictype/categ_and_not.c: New file.
14991         * lib/unictype/categ_byname.c: New file.
14992         * lib/unictype/categ_name.c: New file.
14993         * lib/unictype/categ_none.c: New file.
14994         * lib/unictype/categ_of.c: New file.
14995         * lib/unictype/categ_or.c: New file.
14996         * lib/unictype/categ_test.c: New file.
14997         * lib/unictype/combining.c: New file.
14998         * lib/unictype/ctype_alnum.c: New file.
14999         * lib/unictype/ctype_alpha.c: New file.
15000         * lib/unictype/ctype_blank.c: New file.
15001         * lib/unictype/ctype_cntrl.c: New file.
15002         * lib/unictype/ctype_digit.c: New file.
15003         * lib/unictype/ctype_graph.c: New file.
15004         * lib/unictype/ctype_lower.c: New file.
15005         * lib/unictype/ctype_print.c: New file.
15006         * lib/unictype/ctype_punct.c: New file.
15007         * lib/unictype/ctype_space.c: New file.
15008         * lib/unictype/ctype_upper.c: New file.
15009         * lib/unictype/ctype_xdigit.c: New file.
15010         * lib/unictype/decdigit.c: New file.
15011         * lib/unictype/digit.c: New file.
15012         * lib/unictype/identsyntaxmap.h: New file.
15013         * lib/unictype/mirror.c: New file.
15014         * lib/unictype/numeric.c: New file.
15015         * lib/unictype/pr_alphabetic.c: New file.
15016         * lib/unictype/pr_ascii_hex_digit.c: New file.
15017         * lib/unictype/pr_bidi_arabic_digit.c: New file.
15018         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
15019         * lib/unictype/pr_bidi_block_separator.c: New file.
15020         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
15021         * lib/unictype/pr_bidi_common_separator.c: New file.
15022         * lib/unictype/pr_bidi_control.c: New file.
15023         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
15024         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
15025         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
15026         * lib/unictype/pr_bidi_european_digit.c: New file.
15027         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
15028         * lib/unictype/pr_bidi_left_to_right.c: New file.
15029         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
15030         * lib/unictype/pr_bidi_other_neutral.c: New file.
15031         * lib/unictype/pr_bidi_pdf.c: New file.
15032         * lib/unictype/pr_bidi_segment_separator.c: New file.
15033         * lib/unictype/pr_bidi_whitespace.c: New file.
15034         * lib/unictype/pr_byname.c: New file.
15035         * lib/unictype/pr_byname.gperf: New file.
15036         * lib/unictype/pr_combining.c: New file.
15037         * lib/unictype/pr_composite.c: New file.
15038         * lib/unictype/pr_currency_symbol.c: New file.
15039         * lib/unictype/pr_dash.c: New file.
15040         * lib/unictype/pr_decimal_digit.c: New file.
15041         * lib/unictype/pr_default_ignorable_code_point.c: New file.
15042         * lib/unictype/pr_deprecated.c: New file.
15043         * lib/unictype/pr_diacritic.c: New file.
15044         * lib/unictype/pr_extender.c: New file.
15045         * lib/unictype/pr_format_control.c: New file.
15046         * lib/unictype/pr_grapheme_base.c: New file.
15047         * lib/unictype/pr_grapheme_extend.c: New file.
15048         * lib/unictype/pr_grapheme_link.c: New file.
15049         * lib/unictype/pr_hex_digit.c: New file.
15050         * lib/unictype/pr_hyphen.c: New file.
15051         * lib/unictype/pr_id_continue.c: New file.
15052         * lib/unictype/pr_id_start.c: New file.
15053         * lib/unictype/pr_ideographic.c: New file.
15054         * lib/unictype/pr_ids_binary_operator.c: New file.
15055         * lib/unictype/pr_ids_trinary_operator.c: New file.
15056         * lib/unictype/pr_ignorable_control.c: New file.
15057         * lib/unictype/pr_iso_control.c: New file.
15058         * lib/unictype/pr_join_control.c: New file.
15059         * lib/unictype/pr_left_of_pair.c: New file.
15060         * lib/unictype/pr_line_separator.c: New file.
15061         * lib/unictype/pr_logical_order_exception.c: New file.
15062         * lib/unictype/pr_lowercase.c: New file.
15063         * lib/unictype/pr_math.c: New file.
15064         * lib/unictype/pr_non_break.c: New file.
15065         * lib/unictype/pr_not_a_character.c: New file.
15066         * lib/unictype/pr_numeric.c: New file.
15067         * lib/unictype/pr_other_alphabetic.c: New file.
15068         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
15069         * lib/unictype/pr_other_grapheme_extend.c: New file.
15070         * lib/unictype/pr_other_id_continue.c: New file.
15071         * lib/unictype/pr_other_id_start.c: New file.
15072         * lib/unictype/pr_other_lowercase.c: New file.
15073         * lib/unictype/pr_other_math.c: New file.
15074         * lib/unictype/pr_other_uppercase.c: New file.
15075         * lib/unictype/pr_paired_punctuation.c: New file.
15076         * lib/unictype/pr_paragraph_separator.c: New file.
15077         * lib/unictype/pr_pattern_syntax.c: New file.
15078         * lib/unictype/pr_pattern_white_space.c: New file.
15079         * lib/unictype/pr_private_use.c: New file.
15080         * lib/unictype/pr_punctuation.c: New file.
15081         * lib/unictype/pr_quotation_mark.c: New file.
15082         * lib/unictype/pr_radical.c: New file.
15083         * lib/unictype/pr_sentence_terminal.c: New file.
15084         * lib/unictype/pr_soft_dotted.c: New file.
15085         * lib/unictype/pr_space.c: New file.
15086         * lib/unictype/pr_terminal_punctuation.c: New file.
15087         * lib/unictype/pr_test.c: New file.
15088         * lib/unictype/pr_titlecase.c: New file.
15089         * lib/unictype/pr_unassigned_code_value.c: New file.
15090         * lib/unictype/pr_unified_ideograph.c: New file.
15091         * lib/unictype/pr_uppercase.c: New file.
15092         * lib/unictype/pr_variation_selector.c: New file.
15093         * lib/unictype/pr_white_space.c: New file.
15094         * lib/unictype/pr_xid_continue.c: New file.
15095         * lib/unictype/pr_xid_start.c: New file.
15096         * lib/unictype/pr_zero_width.c: New file.
15097         * lib/unictype/scripts.c: New file.
15098         * lib/unictype/sy_c_ident.c: New file.
15099         * lib/unictype/sy_c_whitespace.c: New file.
15100         * lib/unictype/sy_java_ident.c: New file.
15101         * lib/unictype/sy_java_whitespace.c: New file.
15102
15103         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
15104         Unicode 5.0.0.
15105         * lib/unictype/blocks.h: Likewise.
15106         * lib/unictype/categ_C.h: Likewise.
15107         * lib/unictype/categ_Cc.h: Likewise.
15108         * lib/unictype/categ_Cf.h: Likewise.
15109         * lib/unictype/categ_Cn.h: Likewise.
15110         * lib/unictype/categ_Co.h: Likewise.
15111         * lib/unictype/categ_Cs.h: Likewise.
15112         * lib/unictype/categ_L.h: Likewise.
15113         * lib/unictype/categ_Ll.h: Likewise.
15114         * lib/unictype/categ_Lm.h: Likewise.
15115         * lib/unictype/categ_Lo.h: Likewise.
15116         * lib/unictype/categ_Lt.h: Likewise.
15117         * lib/unictype/categ_Lu.h: Likewise.
15118         * lib/unictype/categ_M.h: Likewise.
15119         * lib/unictype/categ_Mc.h: Likewise.
15120         * lib/unictype/categ_Me.h: Likewise.
15121         * lib/unictype/categ_Mn.h: Likewise.
15122         * lib/unictype/categ_N.h: Likewise.
15123         * lib/unictype/categ_Nd.h: Likewise.
15124         * lib/unictype/categ_Nl.h: Likewise.
15125         * lib/unictype/categ_No.h: Likewise.
15126         * lib/unictype/categ_P.h: Likewise.
15127         * lib/unictype/categ_Pc.h: Likewise.
15128         * lib/unictype/categ_Pd.h: Likewise.
15129         * lib/unictype/categ_Pe.h: Likewise.
15130         * lib/unictype/categ_Pf.h: Likewise.
15131         * lib/unictype/categ_Pi.h: Likewise.
15132         * lib/unictype/categ_Po.h: Likewise.
15133         * lib/unictype/categ_Ps.h: Likewise.
15134         * lib/unictype/categ_S.h: Likewise.
15135         * lib/unictype/categ_Sc.h: Likewise.
15136         * lib/unictype/categ_Sk.h: Likewise.
15137         * lib/unictype/categ_Sm.h: Likewise.
15138         * lib/unictype/categ_So.h: Likewise.
15139         * lib/unictype/categ_Z.h: Likewise.
15140         * lib/unictype/categ_Zl.h: Likewise.
15141         * lib/unictype/categ_Zp.h: Likewise.
15142         * lib/unictype/categ_Zs.h: Likewise.
15143         * lib/unictype/categ_of.h: Likewise.
15144         * lib/unictype/combining.h: Likewise.
15145         * lib/unictype/ctype_alnum.h: Likewise.
15146         * lib/unictype/ctype_alpha.h: Likewise.
15147         * lib/unictype/ctype_blank.h: Likewise.
15148         * lib/unictype/ctype_cntrl.h: Likewise.
15149         * lib/unictype/ctype_digit.h: Likewise.
15150         * lib/unictype/ctype_graph.h: Likewise.
15151         * lib/unictype/ctype_lower.h: Likewise.
15152         * lib/unictype/ctype_print.h: Likewise.
15153         * lib/unictype/ctype_punct.h: Likewise.
15154         * lib/unictype/ctype_space.h: Likewise.
15155         * lib/unictype/ctype_upper.h: Likewise.
15156         * lib/unictype/ctype_xdigit.h: Likewise.
15157         * lib/unictype/decdigit.h: Likewise.
15158         * lib/unictype/digit.h: Likewise.
15159         * lib/unictype/mirror.h: Likewise.
15160         * lib/unictype/numeric.h: Likewise.
15161         * lib/unictype/pr_alphabetic.h: Likewise.
15162         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
15163         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
15164         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
15165         * lib/unictype/pr_bidi_block_separator.h: Likewise.
15166         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
15167         * lib/unictype/pr_bidi_common_separator.h: Likewise.
15168         * lib/unictype/pr_bidi_control.h: Likewise.
15169         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
15170         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
15171         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
15172         * lib/unictype/pr_bidi_european_digit.h: Likewise.
15173         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
15174         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
15175         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
15176         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
15177         * lib/unictype/pr_bidi_pdf.h: Likewise.
15178         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
15179         * lib/unictype/pr_bidi_whitespace.h: Likewise.
15180         * lib/unictype/pr_combining.h: Likewise.
15181         * lib/unictype/pr_composite.h: Likewise.
15182         * lib/unictype/pr_currency_symbol.h: Likewise.
15183         * lib/unictype/pr_dash.h: Likewise.
15184         * lib/unictype/pr_decimal_digit.h: Likewise.
15185         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
15186         * lib/unictype/pr_deprecated.h: Likewise.
15187         * lib/unictype/pr_diacritic.h: Likewise.
15188         * lib/unictype/pr_extender.h: Likewise.
15189         * lib/unictype/pr_format_control.h: Likewise.
15190         * lib/unictype/pr_grapheme_base.h: Likewise.
15191         * lib/unictype/pr_grapheme_extend.h: Likewise.
15192         * lib/unictype/pr_grapheme_link.h: Likewise.
15193         * lib/unictype/pr_hex_digit.h: Likewise.
15194         * lib/unictype/pr_hyphen.h: Likewise.
15195         * lib/unictype/pr_id_continue.h: Likewise.
15196         * lib/unictype/pr_id_start.h: Likewise.
15197         * lib/unictype/pr_ideographic.h: Likewise.
15198         * lib/unictype/pr_ids_binary_operator.h: Likewise.
15199         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
15200         * lib/unictype/pr_ignorable_control.h: Likewise.
15201         * lib/unictype/pr_iso_control.h: Likewise.
15202         * lib/unictype/pr_join_control.h: Likewise.
15203         * lib/unictype/pr_left_of_pair.h: Likewise.
15204         * lib/unictype/pr_line_separator.h: Likewise.
15205         * lib/unictype/pr_logical_order_exception.h: Likewise.
15206         * lib/unictype/pr_lowercase.h: Likewise.
15207         * lib/unictype/pr_math.h: Likewise.
15208         * lib/unictype/pr_non_break.h: Likewise.
15209         * lib/unictype/pr_not_a_character.h: Likewise.
15210         * lib/unictype/pr_numeric.h: Likewise.
15211         * lib/unictype/pr_other_alphabetic.h: Likewise.
15212         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
15213         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
15214         * lib/unictype/pr_other_id_continue.h: Likewise.
15215         * lib/unictype/pr_other_id_start.h: Likewise.
15216         * lib/unictype/pr_other_lowercase.h: Likewise.
15217         * lib/unictype/pr_other_math.h: Likewise.
15218         * lib/unictype/pr_other_uppercase.h: Likewise.
15219         * lib/unictype/pr_paired_punctuation.h: Likewise.
15220         * lib/unictype/pr_paragraph_separator.h: Likewise.
15221         * lib/unictype/pr_pattern_syntax.h: Likewise.
15222         * lib/unictype/pr_pattern_white_space.h: Likewise.
15223         * lib/unictype/pr_private_use.h: Likewise.
15224         * lib/unictype/pr_punctuation.h: Likewise.
15225         * lib/unictype/pr_quotation_mark.h: Likewise.
15226         * lib/unictype/pr_radical.h: Likewise.
15227         * lib/unictype/pr_sentence_terminal.h: Likewise.
15228         * lib/unictype/pr_soft_dotted.h: Likewise.
15229         * lib/unictype/pr_space.h: Likewise.
15230         * lib/unictype/pr_terminal_punctuation.h: Likewise.
15231         * lib/unictype/pr_titlecase.h: Likewise.
15232         * lib/unictype/pr_unassigned_code_value.h: Likewise.
15233         * lib/unictype/pr_unified_ideograph.h: Likewise.
15234         * lib/unictype/pr_uppercase.h: Likewise.
15235         * lib/unictype/pr_variation_selector.h: Likewise.
15236         * lib/unictype/pr_white_space.h: Likewise.
15237         * lib/unictype/pr_xid_continue.h: Likewise.
15238         * lib/unictype/pr_xid_start.h: Likewise.
15239         * lib/unictype/pr_zero_width.h: Likewise.
15240         * lib/unictype/scripts.h: Likewise.
15241         * lib/unictype/scripts_byname.gperf: Likewise.
15242         * lib/unictype/sy_c_ident.h: Likewise.
15243         * lib/unictype/sy_c_whitespace.h: Likewise.
15244         * lib/unictype/sy_java_ident.h: Likewise.
15245         * lib/unictype/sy_java_whitespace.h: Likewise.
15246
15247         * lib/unictype/Makefile: New file.
15248         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
15249         glibc.
15250         * lib/unictype/3level.h: New file, copied from glibc.
15251         * lib/unictype/3levelbit.h: New file.
15252
15253 2007-11-11  Bruno Haible  <bruno@clisp.org>
15254
15255         * modules/gperf: New file.
15256         * modules/iconv_open (Depends-on): Add it.
15257         (Makefile.am): Remove the GPERF definition.
15258
15259 2007-11-11  Bruno Haible  <bruno@clisp.org>
15260
15261         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
15262         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
15263
15264 2007-11-11  Bruno Haible  <bruno@clisp.org>
15265
15266         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
15267         (usage): Remove function.
15268
15269 2007-11-11  Bruno Haible  <bruno@clisp.org>
15270
15271         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
15272         gl_FUNC_CEILF_LIBS.
15273         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
15274         gl_FUNC_CEIL_LIBS.
15275         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
15276         gl_FUNC_CEILL_LIBS.
15277         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
15278         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
15279         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
15280
15281 2007-11-11  Bruno Haible  <bruno@clisp.org>
15282
15283         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
15284         roundf were declared but do not exist on functions.
15285         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
15286         roundl were declared but do not exist on functions.
15287         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
15288         HAVE_FLOORL_AND_CEILL, respectively.
15289         Needed for Sun C on Solaris 10.
15290
15291 2007-11-11  Bruno Haible  <bruno@clisp.org>
15292
15293         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
15294         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
15295         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
15296         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
15297         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
15298         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
15299         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
15300         HAVE_DECL_ROUNDF.
15301         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
15302         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
15303         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
15304         of HAVE_DECL_ROUND*.
15305         * modules/math (Makefile.am): Update.
15306
15307 2007-11-10  Bruno Haible  <bruno@clisp.org>
15308
15309         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
15310         ptrdiff_t as m4/intl.m4.
15311
15312 2007-11-10  Jim Meyering  <meyering@redhat.com>
15313
15314         Avoid link failure for the argmatch test.
15315         * tests/test-argmatch.c (usage): Define function to avoid a link
15316         failure: argmatch_die requires a usage function.
15317
15318 2007-11-09  Bruno Haible  <bruno@clisp.org>
15319
15320         * doc/functions/snprintf.texi: Mention BeOS deficiency.
15321         * doc/functions/vsnprintf.texi: Likewise.
15322         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
15323         with a size argument < 2.
15324
15325 2007-11-09  Bruno Haible  <bruno@clisp.org>
15326
15327         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
15328         buffer. Fixes an inefficiency introduced on 2007-11-03.
15329
15330 2007-11-09  Bruno Haible  <bruno@clisp.org>
15331
15332         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
15333         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
15334
15335 2007-11-08  Jim Meyering  <meyering@redhat.com>
15336
15337         Change cache variable name prefix "jm_" to "gl_" everywhere.
15338         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
15339         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
15340         * m4/uptime.m4: s/gl_/jm_/
15341
15342 2007-11-07  Bruno Haible  <bruno@clisp.org>
15343
15344         Update to GNU gettext 0.17.
15345         * m4/intl.m4: Update to GNU gettext 0.17.
15346         * m4/po.m4: Likewise.
15347         * modules/gettext (Files): Remove m4/ulonglong.m4.
15348         (configure.ac): Require gettext infrastructure from version 0.17.
15349
15350 2007-11-06  Bruno Haible  <bruno@clisp.org>
15351
15352         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
15353         symbolic values are not defined in a public header.
15354         * lib/freadable.c (freadable) [QNX]: Likewise.
15355         * lib/freadahead.c (freadahead) [QNX]: Likewise.
15356         * lib/freading.c (freading) [QNX]: Likewise.
15357         * lib/fseterr.c (fseterr) [QNX]: Likewise.
15358         * lib/fwritable.c (fwritable) [QNX]: Likewise.
15359         * lib/fwriting.c (fwriting) [QNX]: Likewise.
15360         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
15361         Reported by Alain Magloire.
15362
15363         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
15364
15365 2007-11-05  Bruno Haible  <bruno@clisp.org>
15366
15367         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
15368         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
15369         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
15370         Reported by Eric Blake.
15371
15372 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15373             Bruno Haible  <bruno@clisp.org>
15374
15375         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
15376         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
15377         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
15378         (malloc): Undefine also before including <stdlib.h>.
15379         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
15380         Needed on OSF/1 4.0.
15381
15382 2007-11-05  Jim Meyering  <meyering@redhat.com>
15383
15384         git-version-gen: sync from coreutils.
15385         * build-aux/git-version-gen: Add comments.
15386         Change the first '-' to '.' in the snapshot version string,
15387         e.g., 6.9-377-08144 -> 6.9.377-08144
15388         Remove first parameter.
15389         Don't declare a version "-dirty" merely because a time
15390         stamp has changed.
15391
15392 2007-11-04  Bruno Haible  <bruno@clisp.org>
15393
15394         * lib/lock.h: Protect all macro definitions containing an 'if'
15395         statement through a "do { ... } while (0)".
15396         * lib/tls.h: Likewise.
15397
15398 2007-11-04  Bruno Haible  <bruno@clisp.org>
15399
15400         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
15401
15402 2007-11-04  Bruno Haible  <bruno@clisp.org>
15403
15404         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
15405         * modules/fprintf-posix (Depends-on): Add nocrash.
15406         * modules/snprintf-posix (Depends-on): Likewise.
15407         * modules/sprintf-posix (Depends-on): Likewise.
15408         * modules/vasnprintf-posix (Depends-on): Likewise.
15409         * modules/vasprintf-posix (Depends-on): Likewise.
15410         * modules/vfprintf-posix (Depends-on): Likewise.
15411         * modules/vsnprintf-posix (Depends-on): Likewise.
15412         * modules/vsprintf-posix (Depends-on): Likewise.
15413         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
15414         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
15415         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
15416         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
15417         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
15418         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
15419         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
15420
15421 2007-11-04  Bruno Haible  <bruno@clisp.org>
15422
15423         * modules/nocrash: New file.
15424         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
15425         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
15426
15427 2007-11-04  Bruno Haible  <bruno@clisp.org>
15428
15429         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
15430         precision handling.
15431         * tests/test-vasprintf-posix.c (test_function): Likewise.
15432         * tests/test-snprintf-posix.h (test_function): Likewise.
15433         * tests/test-sprintf-posix.h (test_function): Likewise.
15434
15435         Fix *printf behaviour for large precisions on mingw and BeOS.
15436         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
15437         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
15438         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
15439         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
15440         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
15441         gl_PRINTF_PRECISION and test its result. Invoke
15442         gl_PREREQ_VASNPRINTF_PRECISION.
15443         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
15444         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15445         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15446         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15447         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
15448         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15449         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15450         * doc/functions/fprintf.texi: Update.
15451         * doc/functions/printf.texi: Update.
15452         * doc/functions/snprintf.texi: Update.
15453         * doc/functions/sprintf.texi: Update.
15454         * doc/functions/vfprintf.texi: Update.
15455         * doc/functions/vprintf.texi: Update.
15456         * doc/functions/vsnprintf.texi: Update.
15457         * doc/functions/vsprintf.texi: Update.
15458
15459 2007-11-04  Bruno Haible  <bruno@clisp.org>
15460
15461         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
15462
15463 2007-11-04  Bruno Haible  <bruno@clisp.org>
15464
15465         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
15466         Reported by Sylvain Beucler <beuc@gnu.org>.
15467
15468 2007-11-03  Bruno Haible  <bruno@clisp.org>
15469
15470         * tests/test-fprintf-posix2.sh: New file.
15471         * tests/test-fprintf-posix2.c: New file.
15472         * modules/fprintf-posix-tests (Files): Add them.
15473         (TESTS): Add test-fprintf-posix2.sh.
15474         (configure.ac): Check for getrlimit and setrlimit.
15475         (check_PROGRAMS): Add test-fprintf-posix2.
15476
15477         * tests/test-printf-posix2.sh: New file.
15478         * tests/test-printf-posix2.c: New file.
15479         * modules/printf-posix-tests (Files): Add them.
15480         (TESTS): Add test-printf-posix2.sh.
15481         (configure.ac): Check for getrlimit and setrlimit.
15482         (check_PROGRAMS): Add test-printf-posix2.
15483
15484         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
15485         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
15486         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
15487         (decode_double): New function, copied from decode_long_double.
15488         (scale10_round_decimal_decoded): New function, extracted from
15489         scale10_round_decimal_long_double.
15490         (scale10_round_decimal_long_double): Use it.
15491         (scale10_round_decimal_double): New function.
15492         (floorlog10): New function.
15493         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
15494         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
15495         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
15496         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
15497         gl_PRINTF_ENOMEM and test its result. Invoke
15498         gl_PREREQ_VASNPRINTF_ENOMEM.
15499         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
15500         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
15501         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
15502         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
15503         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
15504         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
15505         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
15506         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
15507         * modules/snprintf-posix (Depends-on): Likewise.
15508         * modules/sprintf-posix (Depends-on): Likewise.
15509         * modules/vasnprintf-posix (Depends-on): Likewise.
15510         * modules/vasprintf-posix (Depends-on): Likewise.
15511         * modules/vfprintf-posix (Depends-on): Likewise.
15512         * modules/vsnprintf-posix (Depends-on): Likewise.
15513         * modules/vsprintf-posix (Depends-on): Likewise.
15514         * doc/functions/fprintf.texi: Update.
15515         * doc/functions/printf.texi: Update.
15516         * doc/functions/snprintf.texi: Update.
15517         * doc/functions/sprintf.texi: Update.
15518         * doc/functions/vfprintf.texi: Update.
15519         * doc/functions/vprintf.texi: Update.
15520         * doc/functions/vsnprintf.texi: Update.
15521         * doc/functions/vsprintf.texi: Update.
15522
15523 2007-11-03  Bruno Haible  <bruno@clisp.org>
15524
15525         * modules/frexp-nolibm-tests: New file.
15526
15527         * modules/frexp-nolibm: New file.
15528         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
15529
15530 2007-11-03  Bruno Haible  <bruno@clisp.org>
15531
15532         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
15533         value is C99 compliant.
15534         Needed for OSF/1 5.1.
15535
15536 2007-11-03  Bruno Haible  <bruno@clisp.org>
15537
15538         Fix out-of-memory handling of vasnprintf.
15539         * lib/printf-parse.c: Include <errno.h>.
15540         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
15541         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
15542         is already set.
15543
15544 2007-11-02  Eric Blake  <ebb9@byu.net>
15545
15546         Fix tests on cygwin.
15547         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
15548
15549 2007-11-01  Bruno Haible  <bruno@clisp.org>
15550
15551         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
15552         warning.
15553         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
15554         needed for POSIX compatibility.
15555
15556 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15557
15558         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
15559         for compatibility with GNU.
15560
15561 2007-11-01  Bruno Haible  <bruno@clisp.org>
15562
15563         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
15564         (putenv): Renamed from rpl_putenv. Change argument type from
15565         'const char *' to 'char *'.
15566         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
15567         of defining putenv in config.h, just set REPLACE_PUTENV.
15568         * modules/putenv (Depends-on): Add stdlib.
15569         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
15570         (Include): Use <stdlib.h>.
15571         * lib/stdlib.in.h (putenv): New declaration.
15572         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
15573         REPLACE_PUTENV.
15574         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
15575         REPLACE_PUTENV.
15576         Needed for MacOS X 10.5.0.
15577         Reported by Peter O'Gorman <peter@pogma.com>.
15578
15579 2007-11-01  Jim Meyering  <meyering@redhat.com>
15580
15581         Treat an empty date string exactly like "0".
15582         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
15583         if the remaining date string (to be parsed) is empty, use "0".
15584         Reported by Mischa Molhoek and discussed in this thread:
15585         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
15586
15587 2007-10-31  Bruno Haible  <bruno@clisp.org>
15588
15589         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
15590         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
15591         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
15592         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
15593         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
15594         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
15595
15596 2007-10-31  Bruno Haible  <bruno@clisp.org>
15597
15598         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
15599         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
15600         (AC_TYPE_LONG_LONG_INT): Use it.
15601         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
15602         it as well.
15603         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
15604         to m4/longlong.m4.
15605         * modules/stdint (Files): Remove m4/ulonglong.m4.
15606         * modules/strtoull (Files): Use m4/longlong.m4 instead of
15607         m4/ulonglong.m4.
15608         * modules/strtoumax (Files): Likewise.
15609
15610 2007-10-30  Bruno Haible  <bruno@clisp.org>
15611
15612         * modules/xvasprintf-posix: New file.
15613         Suggested by Eric Blake.
15614
15615 2007-10-30  Bruno Haible  <bruno@clisp.org>
15616
15617         * modules/xprintf-posix-tests: New file.
15618         * tests/test-xprintf-posix.sh: New file.
15619         * tests/test-xprintf-posix.c: New file.
15620         * tests/test-xfprintf-posix.c: New file.
15621
15622         * modules/xprintf-posix: New file.
15623
15624 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15625
15626         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
15627         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
15628         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
15629
15630 2007-10-29  Bruno Haible  <bruno@clisp.org>
15631
15632         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
15633         contain the special marker '_cv_'.
15634         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
15635         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
15636         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
15637         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
15638         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
15639         Reported by Ralf Wildenhues.
15640
15641 2007-10-29  Bruno Haible  <bruno@clisp.org>
15642
15643         * gnulib-tool (func_import): When --lgpl is not specified, set
15644         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
15645         GPLv3.
15646         Reported by Simon Josefsson.
15647
15648 2007-10-28  Bruno Haible  <bruno@clisp.org>
15649
15650         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
15651         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
15652         HAVE_DECL_ISFINITE.
15653         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
15654         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
15655         HAVE_DECL_ISFINITE.
15656
15657 2007-10-28  Bruno Haible  <bruno@clisp.org>
15658
15659         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
15660         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
15661
15662 2007-10-28  Bruno Haible  <bruno@clisp.org>
15663
15664         Fix link errors with Sun C 5.0 on Solaris 10.
15665         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
15666         function is declared but not present in the compiler's libm.
15667         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
15668         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
15669         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
15670         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
15671         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
15672         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
15673         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
15674         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
15675         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
15676         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
15677         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
15678         HAVE_DECL_FLOORL.
15679
15680 2007-10-28  Bruno Haible  <bruno@clisp.org>
15681
15682         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
15683         gl_FUNC_FLOORL. Cache the result.
15684         (gl_FUNC_FLOORL): Use it.
15685         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
15686         gl_FUNC_CEILL. Cache the result.
15687         (gl_FUNC_CEILL): Use it.
15688
15689         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
15690         gl_FUNC_FLOOR. Cache the result.
15691         (gl_FUNC_FLOOR): Use it.
15692         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
15693         gl_FUNC_CEIL. Cache the result.
15694         (gl_FUNC_CEIL): Use it.
15695
15696         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
15697         gl_FUNC_FLOORF. Cache the result.
15698         (gl_FUNC_FLOORF): Use it.
15699         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
15700         gl_FUNC_CEILF. Cache the result.
15701         (gl_FUNC_CEILF): Use it.
15702
15703 2007-10-28  Bruno Haible  <bruno@clisp.org>
15704
15705         * gnulib-tool: Allow specifying the LGPL version number through
15706         --lgpl=2 or --lgpl=3.
15707         (func_usage): Document --lgpl with argument.
15708         Handle --lgpl=... arguments.
15709         (func_import): Recognize also gl_LGPL calls with an argument. When
15710         --lgpl=2 is used and the module's license is just LGPL, report an
15711         error. Set sed_transform_lib_file according to the lgpl variable. In
15712         the generated files, use --lgpl or gl_LGPL invocations with argument,
15713         if necessary.
15714         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
15715         an LGPv2+ license.
15716         * doc/gnulib-tool.texi (Modified imports): Update explanation of
15717         gl_LGPL macro.
15718
15719 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15720             Bruno Haible  <bruno@clisp.org>
15721
15722         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
15723         (u16_uctomb_aux): Likewise.
15724         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
15725         !HAVE_INLINE.
15726         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
15727
15728 2007-10-28  Bruno Haible  <bruno@clisp.org>
15729
15730         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
15731         Invoke AM_GETTEXT_OPTION if it exists.
15732         * modules/vasprintf: Likewise.
15733         * modules/verror: Likewise.
15734         * modules/xprintf: Likewise.
15735         * modules/xvasprintf: Likewise.
15736
15737 2007-10-27  Ben Pfaff  <blp@gnu.org>
15738
15739         * lib/math.in.h: Define isfinite macro and prototypes for
15740         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
15741         implementations.
15742         * m4/math_h.m4: New substitutions for isfinite module.
15743         * lib/isfinite.c: New file.
15744         * m4/isfinite.m4: New file.
15745         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
15746         * modules/isfinite: New file.
15747         * modules/isfinite-tests: New file.
15748         * tests/tests-isfinite.c: New file.
15749         * doc/functions/isfinite.texi: Mention isfinite module.
15750         * MODULES.html.sh: Mention new module.
15751
15752 2007-10-27  Ben Pfaff  <blp@gnu.org>
15753
15754         Ralf Wildenhues reported that Tru64 4.0D declares the round
15755         functions but does not have definitions.
15756         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
15757         cannot be found in any library, set the output variable to
15758         "missing" instead of "".
15759         * m4/round.m4: Also use our substitute if we cannot find round in
15760         any library, even if it is declared.
15761         * m4/roundf.m4: Likewise for roundf.
15762         * m4/roundl.m4: Likewise for roundl.
15763         * lib/math.in.h: Undefine roundf, round, roundl before defining
15764         their replacements, to allow for hypothetical systems where these
15765         may be defined as macros but not available in libraries.
15766
15767 2007-10-27  Bruno Haible  <bruno@clisp.org>
15768
15769         * doc/gnulib.texi: Invoke @firstparagraphindent.
15770         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
15771         changes in gnulib.
15772         (Source changes): New section.
15773
15774 2007-10-26  Bruno Haible  <bruno@clisp.org>
15775
15776         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
15777         borrowed from autoconf.
15778
15779 2007-10-26  Bruno Haible  <bruno@clisp.org>
15780
15781         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
15782         strerror returned the empty string. Needed on HP-UX 11.00.
15783
15784 2007-10-24  Micah Cowan  <micah@cowan.name>
15785
15786         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
15787         * build-aux/bootstrap: Remove support for now-unnecessary option,
15788         --cvs-user, and envvars CVS_USER, CVS_RSH.
15789
15790 2007-10-24  Jim Meyering  <meyering@redhat.com>
15791
15792         Avoid diagnostics from sha1sum when there is no cached checksum.
15793         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
15794         if the po.s1 file hasn't been created yet.
15795
15796         * build-aux/bootstrap: Sync from coreutils:
15797         2007-10-24  Jim Meyering  <meyering@redhat.com>
15798         Get gnulib from the git repository, not from an obsolete cvs one.
15799         * build-aux/bootstrap: Suggestion from Micah Cowan.
15800         2007-10-04  Jim Meyering  <jim@meyering.net>
15801         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
15802         (update_po_files): Work also when there are no .po files in po/.
15803
15804 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15805
15806         * README: Append ".git" to git and cg examples.
15807         Problem reported by Benoit Sigoure.
15808
15809 2007-10-23  Micah Cowan  <micah@cowan.name>
15810
15811         * users.txt: Add wget.
15812
15813 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15814
15815         Fix linking of some unistdio tests on FreeBSD.
15816         * modules/unistdio/u16-vsnprintf-tests
15817         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
15818         * modules/unistdio/u16-vsprintf-tests
15819         (test_u16_vsnprintf1_LDADD): Likewise.
15820         * modules/unistdio/u32-vsnprintf-tests
15821         (test_u32_vsnprintf1_LDADD): Likewise.
15822         * modules/unistdio/u32-vsprintf-tests
15823         (test_u32_vsprintf1_LDADD): Likewise.
15824         * modules/unistdio/u8-vsnprintf-tests
15825         (test_u8_vsnprintf1_LDADD): Likewise.
15826         * modules/unistdio/u8-vsprintf-tests
15827         (test_u8_vsprintf1_LDADD): Likewise.
15828         * modules/unistdio/ulc-vsnprintf-tests
15829         (test_ulc_vsnprintf1_LDADD): Likewise.
15830         * modules/unistdio/ulc-vsprintf-tests
15831         (test_ulc_vsprintf1_LDADD): Likewise.
15832
15833         Fix linking of some uniconv tests on FreeBSD.
15834         * modules/uniconv/u16-conv-from-enc-tests
15835         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
15836         * modules/uniconv/u16-conv-to-enc-tests
15837         (test_u16_conv_to_enc_LDADD): Likewise.
15838         * modules/uniconv/u16-strconv-from-enc-tests
15839         (test_u16_strconv_from_enc_LDADD): Likewise.
15840         * modules/uniconv/u16-strconv-to-enc-tests
15841         (test_u16_strconv_to_enc_LDADD): Likewise.
15842         * modules/uniconv/u32-conv-from-enc-tests
15843         (test_u32_conv_from_enc_LDADD): Likewise.
15844         * modules/uniconv/u32-conv-to-enc-tests
15845         (test_u32_conv_to_enc_LDADD): Likewise.
15846         * modules/uniconv/u32-strconv-from-enc-tests
15847         (test_u32_strconv_from_enc_LDADD): Likewise.
15848         * modules/uniconv/u32-strconv-to-enc-tests
15849         (test_u32_strconv_to_enc_LDADD): Likewise.
15850         * modules/uniconv/u8-conv-from-enc-tests
15851         (test_u8_conv_from_enc_LDADD): Likewise.
15852         * modules/uniconv/u8-conv-to-enc-tests
15853         (test_u8_conv_to_enc_LDADD): Likewise.
15854         * modules/uniconv/u8-strconv-from-enc-tests
15855         (test_u8_strconv_from_enc_LDADD): Likewise.
15856         * modules/uniconv/u8-strconv-to-enc-tests
15857         (test_u8_strconv_to_enc_LDADD): Likewise.
15858
15859 2007-10-22  Bruno Haible  <bruno@clisp.org>
15860
15861         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
15862         size.
15863
15864 2007-10-22  Eric Blake  <ebb9@byu.net>
15865
15866         Tweak x*printf documentation.
15867         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
15868         variable name and comments.
15869         Suggested by Bruno Haible.
15870
15871 2007-10-22  Bruno Haible  <bruno@clisp.org>
15872
15873         * lib/acl.c (copy_acl): Fix file name in comment.
15874
15875 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15876
15877         Fix Tru64 problem with stdbool.h.
15878         * lib/stdbool.in.h (false, true):
15879         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
15880         Don't declare as an enum in this situation; it runs afoul of Tru64.
15881         Problem reported by Steven M. Schweda in
15882         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
15883
15884 2007-10-22  Eric Blake  <ebb9@byu.net>
15885
15886         Also wrap vf?printf.
15887         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
15888         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
15889         (xvprintf, xvfprintf): New functions.
15890
15891 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15892
15893         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
15894         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
15895
15896         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
15897         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
15898
15899 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15900
15901         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
15902         by Bruno Haible.
15903
15904 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15905
15906         * lib/getloadavg.c
15907         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
15908         Undef `sys' after including sys/table.h, for Tru64 4.0D.
15909
15910         * tests/test-i-ring.c: Work for C89.
15911
15912 2007-10-22  Bruno Haible  <bruno@clisp.org>
15913
15914         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
15915         -1u, in preprocessor expression, so that we don't test for the bug
15916         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
15917         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
15918
15919 2007-10-22  Eric Blake  <ebb9@byu.net>
15920
15921         * tests/test-yesno.sh: Silence stderr during test.
15922
15923 2007-10-22  Simon Josefsson  <simon@josefsson.org>
15924
15925         * modules/crypto/gc-camellia: New file.
15926
15927         * m4/gc-camellia.m4: New file.
15928
15929         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
15930
15931         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
15932
15933 2007-10-22  Simon Josefsson  <simon@josefsson.org>
15934
15935         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
15936         --help to stdout.  Reported by sms@antinode.org (Steven
15937         M. Schweda).
15938
15939 2007-10-22  Simon Josefsson  <simon@josefsson.org>
15940
15941         * users.txt: Fix link to libksba.
15942
15943 2007-10-21  Ben Pfaff  <blp@gnu.org>
15944
15945         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
15946         round.c roundf implementation that depends on floorf and ceilf to
15947         be tested unconditionally.
15948
15949 2007-10-21  Ben Pfaff  <blp@gnu.org>
15950
15951         * m4/check-libm-func.m4: Removed.
15952         * m4/check-math-lib.m4: New file.
15953         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
15954         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
15955         definition and lack of AC_LIBOBJ([roundf]).
15956         * m4/roundl.m4: Ditto, and similarly for roundl.
15957         * modules/round: Reference new m4 file.
15958         * modules/roundf: Ditto.
15959         * modules/roundl: Ditto.
15960         * tests/test-round2.c (main): Use ROUND instead of round.
15961         Bug report from Bruno Haible.
15962
15963 2007-10-21  Bruno Haible  <bruno@clisp.org>
15964
15965         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
15966         context.
15967
15968 2007-10-21  Bruno Haible  <bruno@clisp.org>
15969
15970         * tests/test-wcwidth.c (main): Allow negative result for some control
15971         characters.
15972
15973         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
15974         Needed on OSF/1 5.1.
15975
15976 2007-10-21  Bruno Haible  <bruno@clisp.org>
15977
15978         * tests/test-floorf1.c: Include isnanf.h.
15979         (main): Use isnanf() instead of isnan().
15980         * tests/test-ceilf1.c: Include isnanf.h.
15981         (main): Use isnanf() instead of isnan().
15982         * tests/test-truncf1.c: Include isnanf.h.
15983         (main): Use isnanf() instead of isnan().
15984         * tests/test-roundf1.c: Include isnanf.h.
15985         (main): Use isnanf() instead of isnan().
15986
15987 2007-10-21  Eric Blake  <ebb9@byu.net>
15988
15989         * users.txt: Update URL for m4.
15990
15991 2007-10-21  Bruno Haible  <bruno@clisp.org>
15992
15993         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
15994
15995 2007-10-21  Bruno Haible  <bruno@clisp.org>
15996
15997         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
15998         Git's management files if the CVS files are not present.
15999
16000 2007-10-20  Bruno Haible  <bruno@clisp.org>
16001
16002         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
16003         gcc-3.4.x.
16004
16005 2007-10-20  Ben Pfaff  <blp@gnu.org>
16006
16007         * lib/math.in.h: Declare round, roundf, roundl if we are providing
16008         implementations.
16009         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
16010         * lib/round.c: New file.
16011         * lib/roundf.c: New file.
16012         * lib/roundl.c: New file.
16013         * m4/round.m4: New file.
16014         * m4/roundf.m4: New file.
16015         * m4/roundl.m4: New file.
16016         * m4/check-libm-func-m4: New file.
16017         * modules/math: Replace round, roundf, roundl related @VARS@ in
16018         math.in.h.
16019         * modules/round: New file.
16020         * modules/round-tests: New file.
16021         * modules/roundf: New file.
16022         * modules/roundf-tests: New file.
16023         * modules/roundl: New file.
16024         * modules/roundl-tests: New file.
16025         * tests/test-round1.c: New file.
16026         * tests/test-round2.c: New file.
16027         * tests/test-roundf1.c: New file.
16028         * tests/test-roundf2.c: New file.
16029         * tests/test-roundl.c: New file.
16030         * doc/functions/round.texi: Mention round module.
16031         * doc/functions/roundf.texi: Mention roundf module.
16032         * doc/functions/roundl.texi: Mention roundl module.
16033         * MODULES.html.sh: Mention new modules.
16034         Thanks to Bruno Haible for suggestions.
16035
16036 2007-10-20  Jim Meyering  <meyering@redhat.com>
16037
16038         * lib/xprintf.c: Include <config.h> unconditionally.
16039
16040         Change xprintf's license to GPL.
16041         * modules/xprintf (License): s/LGPL/GPL/, since this module
16042         depends on modules (exit and exitfail) which are GPL.
16043         Suggestion from Bruno Haible.
16044
16045         xprintf fixes.
16046         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
16047         Use a clearer diagnostic.
16048         Patch from Bruno Haible.
16049
16050 2007-10-20  Bruno Haible  <bruno@clisp.org>
16051
16052         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
16053         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
16054         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16055
16056 2007-10-20  Bruno Haible  <bruno@clisp.org>
16057
16058         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
16059         precision in the comparison result > x - 1 or similar.
16060         * tests/test-ceilf2.c (correct_result_p): Likewise.
16061         * tests/test-truncf2.c (correct_result_p): Likewise.
16062         * tests/test-trunc2.c (correct_result_p): Likewise.
16063         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
16064
16065 2007-10-20  Bruno Haible  <bruno@clisp.org>
16066
16067         * modules/ceil: New file.
16068         * m4/ceil.m4: New file.
16069         * doc/functions/ceil.texi: Mention the 'ceil' module.
16070
16071 2007-10-20  Bruno Haible  <bruno@clisp.org>
16072
16073         * modules/floor: New file.
16074         * m4/floor.m4: New file.
16075         * doc/functions/floor.texi: Mention the 'floor' module.
16076
16077 2007-10-20  Bruno Haible  <bruno@clisp.org>
16078
16079         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
16080         of %a.
16081         * modules/floorf-tests (Depends-on): Likewise.
16082         * modules/truncf-tests (Depends-on): Likewise.
16083         * modules/trunc-tests (Depends-on): Likewise.
16084         Reported by Ben Pfaff.
16085
16086 2007-10-19  Jim Meyering  <meyering@redhat.com>
16087
16088         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
16089         Don't bother testing specific errno values.  Just test ferror.
16090
16091         New module: xprintf
16092         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
16093
16094 2007-10-19  Bruno Haible  <bruno@clisp.org>
16095
16096         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
16097         syntax.
16098         * modules/javaexec (Makefile.am): Likewise.
16099         * modules/relocatable-prog (Makefile.am): Likewise.
16100         Suggested by Jim Meyering.
16101
16102 2007-10-18  Bruno Haible  <bruno@clisp.org>
16103
16104         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
16105         Reported by Jim Meyering.
16106
16107 2007-10-18  Eric Blake  <ebb9@byu.net>
16108
16109         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
16110
16111 2007-10-18  Bruno Haible  <bruno@clisp.org>
16112
16113         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
16114         the format string into writable memory. Needed in Fortify conditions.
16115
16116 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
16117             Bruno Haible  <bruno@clisp.org>
16118
16119         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
16120         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
16121         * modules/trim (Depends-on): Add mbchar.
16122         (configure.ac): Add gl_FUNC_MBRTOWC.
16123         (Makefile.am): Augment lib_SOURCES.
16124
16125 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16126
16127         Modify glob.c to use fstatat and dirfd, to simplify it.
16128         Suggested by Eric Blake.
16129         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
16130         Don't include <stdbool.h>; not used.
16131         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
16132         (link_exists_p): Simplify implementation, since we can now assume
16133         dirfd and fstatat.
16134         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
16135
16136 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16137
16138         * gnulib-tool (func_get_dependencies): Fix sed script to
16139         match only tests.
16140
16141 2007-10-17  Bruno Haible  <bruno@clisp.org>
16142
16143         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
16144         allow locale names without encoding suffix.
16145         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
16146         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
16147
16148 2007-10-16  Bruno Haible  <bruno@clisp.org>
16149
16150         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
16151         * lib/getgroups.c (getgroups): Likewise.
16152         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
16153
16154 2007-10-16  Bruno Haible  <bruno@clisp.org>
16155
16156         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
16157         * modules/malloc-posix (License): Likewise.
16158         * modules/realloc-posix (License): Likewise.
16159         * modules/calloc-posix (License): Likewise.
16160         * modules/intprops (License): Change from GPL to LGPL, with
16161         Paul Eggert's approval.
16162
16163 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
16164
16165         Merge glibc changes into lib/glob.c.
16166
16167         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
16168         2007-10-15 04:59:03 UTC.  Here are the changes:
16169
16170         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
16171
16172         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
16173
16174         * lib/glob.c: Add some branch prediction throughout.
16175
16176         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
16177
16178         [BZ #5103]
16179         * lib/glob.c (glob): Recognize patterns starting \/.
16180
16181         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
16182
16183         [BZ #3996]
16184         * lib/glob.c (attribute_hidden): Define if not defined.
16185         (glob): Unescape dirname, filename or username when needed and not
16186         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
16187         is NULL.  Handle unescaped [ in pattern without closing ].
16188         Don't pass GLOB_CHECK down to recursive glob for directories.
16189         (__glob_pattern_type): New function.
16190         (__glob_pattern_p): Implement using __glob_pattern_type.
16191         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
16192         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
16193         Remove unreachable code.
16194
16195         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
16196
16197         * lib/glob.c (glob_in_dir): Add some comments and asserts to
16198         explain why there are no leaks.
16199
16200         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
16201
16202         [BZ #3253]
16203         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
16204         time, rather allocate increasingly bigger arrays of pointers, if
16205         possible with alloca, if too large with malloc.
16206
16207 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
16208
16209         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
16210         Problem reported by H.Merijn Brand in
16211         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
16212         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
16213         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
16214
16215 2007-10-15  Bruno Haible  <bruno@clisp.org>
16216
16217         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
16218         with explicit rpl_ prefix.
16219         * lib/fopen.c (fopen): Likewise.
16220         * lib/freopen.c (freopen): Likewise.
16221         * lib/iconv.c (iconv): Likewise.
16222         * lib/iconv_close.c (iconv_close): Likewise.
16223
16224 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16225
16226         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
16227
16228 2007-10-15  Bruno Haible  <bruno@clisp.org>
16229
16230         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
16231         <stddef.h> instead of <stdlib.h> since we only need NULL.
16232         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16233
16234 2007-10-15  Bruno Haible  <bruno@clisp.org>
16235
16236         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
16237         Replace paragraph talking about LIBOBJS.
16238         Reported by Colin Watson <cjwatson@debian.org>.
16239
16240 2007-10-15  Bruno Haible  <bruno@clisp.org>
16241
16242         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
16243         <stdlib.h> before using NULL.
16244
16245 2007-10-15  Simon Josefsson  <simon@josefsson.org>
16246
16247         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
16248         Reported by Albert Chin <china@thewrittenword.com>.
16249
16250 2007-10-14  Bruno Haible  <bruno@clisp.org>
16251
16252         * modules/iconv_open-utf-tests: New file.
16253         * tests/test-iconv-utf.c: New file.
16254
16255         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
16256         * modules/iconv_open-utf: New file.
16257         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
16258         (iconv, iconv_close): New declarations.
16259         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
16260         be defined.
16261         (iconv_open): Add special handling of conversion between UTF-8 and
16262         UTF-{16,32}{BE,LE}.
16263         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
16264         * lib/iconv_close.c: New file.
16265         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
16266         gl_FUNC_ICONV_OPEN.
16267         (gl_FUNC_ICONV_OPEN): Use it.
16268         (gl_FUNC_ICONV_OPEN_UTF): New macro.
16269         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
16270         and REPLACE_ICONV_UTF.
16271         * modules/iconv_open (Depends-on): Add c-strcase.
16272         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
16273         ICONV_CONST.
16274         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
16275
16276 2007-10-13  Albert Chin  <china@thewrittenword.com>
16277             Bruno Haible  <bruno@clisp.org>
16278
16279         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
16280         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
16281
16282 2007-10-13  Bruno Haible  <bruno@clisp.org>
16283
16284         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
16285         defined, use the ISO C99 inline semantics.
16286         * lib/argp.h (ARGP_EI): Likewise.
16287
16288 2007-10-13  Bruno Haible  <bruno@clisp.org>
16289
16290         Handle 'inline' change in gcc 4.3.0.
16291         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
16292         argp_fmtstream_write, argp_fmtstream_set_lmargin,
16293         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
16294         argp_fmtstream_point): Disable 'extern' declaration if the function
16295         definition is going to be provided inline.
16296         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
16297         semantics, not the ISO C99 inline semantics.
16298         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
16299         'extern' declaration if the function definition is going to be provided
16300         inline.
16301         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
16302         the GNU C inline semantics, not the ISO C99 inline semantics. With
16303         GCC 4.2, avoid a warning.
16304
16305 2007-10-13  Bruno Haible  <bruno@clisp.org>
16306
16307         * lib/freading.h (freading): Enable the use of __freading for
16308         glibc >= 2.7.
16309         * lib/freading.c (freading): Likewise.
16310
16311 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
16312
16313         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
16314         "warning: C99 inline functions are not supported; using GNU89".
16315
16316 2007-10-12  Bruno Haible  <bruno@clisp.org>
16317
16318         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
16319         of 2.
16320         * tests/test-ceilf2.c: New file.
16321         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
16322
16323         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
16324         * modules/ceilf-tests: Update.
16325
16326 2007-10-12  Bruno Haible  <bruno@clisp.org>
16327
16328         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
16329         of 2.
16330         * tests/test-floorf2.c: New file.
16331         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
16332
16333         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
16334         * modules/floorf-tests: Update.
16335
16336 2007-10-12  Bruno Haible  <bruno@clisp.org>
16337
16338         * tests/test-trunc2.c: New file.
16339         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
16340
16341         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
16342         * modules/trunc-tests: Update.
16343
16344 2007-10-12  Bruno Haible  <bruno@clisp.org>
16345
16346         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
16347         of 2.
16348         * tests/test-truncf2.c: New file.
16349         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
16350
16351         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
16352         * modules/truncf-tests: Update.
16353
16354 2007-10-11  Eric Blake  <ebb9@byu.net>
16355
16356         Don't claim strerror is broken on Interix.
16357         * doc/functions/strerror.texi (strerror): Known broken systems are
16358         now Solaris 8, and not Interix.
16359         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
16360         Interix on cross-compile.
16361         Reported by Martin Koeppe in
16362         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
16363
16364 2007-10-11  Bruno Haible  <bruno@clisp.org>
16365
16366         * modules/i-ring-tests: New file.
16367         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
16368         instead of assert.
16369
16370 2007-10-11  Bruno Haible  <bruno@clisp.org>
16371
16372         * modules/filenamecat-tests: New file.
16373         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
16374         * lib/filenamecat.c: Remove test code.
16375
16376 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
16377
16378         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
16379
16380         * lib/strerror.c: Include <string.h> always, to test interface,
16381         and to remove the need for the dummy.
16382         Include intprops.h to compute width instead of doing it ourselves
16383         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
16384         (strerror): Define it to return NULL if there's no system strerror.
16385         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
16386         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
16387         ancient pre-strerror Unix systems well any more.  Saying "unknown
16388         system error" is enough.
16389         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
16390         simpler strerror.c implementation.
16391         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
16392         Simplify the tests to reflect the simpler strerror implementation.
16393         * modules/strerror (Depends-on): Add intprops.
16394
16395 2007-10-09  Eric Blake  <ebb9@byu.net>
16396
16397         Silence test-fpending.
16398         * modules/fpending-tests (Files): Add wrapper script.
16399         * tests/test-fpending.sh: New file.
16400
16401 2007-10-09  Bruno Haible  <bruno@clisp.org>
16402
16403         * MODULES.html.sh (func_module): Don't create a hyperlink for
16404         function names like 'printf_frexp'.
16405         (Misc): Add crc, memxor.
16406         (Characteristics of floating types): New section.
16407         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
16408         isnanf-nolibm, signbit, trunc, truncf, truncl.
16409         (Enhancements for ISO C 99 functions): New subsection Input/output.
16410         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
16411         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
16412         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
16413         (Compatibility checks for POSIX:2001 functions): Add clock-time.
16414         (Enhancements for POSIX:2001 functions): Add chdir-long.
16415         (File system functions): Add areadlink, chdir-safer, read-file.
16416         Remove cycle-check.
16417         (File system as inode set): New section.
16418         (Date and time): Add gethrxtime.
16419         (Multithreading): Add openmp.
16420         (Internationalization functions): Add localename.
16421         (Unicode string functions): Add unistr/u*-mbsnlen.
16422         (Support for maintaining and releasing projects): Add git-version-gen.
16423         (Lone files): Remove directories.
16424
16425 2007-10-08  Ben Pfaff  <blp@gnu.org>
16426
16427         * lib/xmalloca.h: Fix typo in comment.
16428
16429 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
16430
16431         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
16432         when avoiding problems with integer overflow.  Use a portable test
16433         instead.
16434
16435 2007-10-08  Simon Josefsson  <simon@josefsson.org>
16436
16437         * modules/dummy (License): Change to LGPLv2+.
16438         * modules/float (License): Likewise
16439         * modules/realloc (License): Likewise
16440         * modules/stdlib (License): Likewise
16441
16442 2007-10-07  Bruno Haible  <bruno@clisp.org>
16443
16444         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
16445         * floor.c (TWO_MANT_DIG): Likewise.
16446         * ceil.c (TWO_MANT_DIG): Likewise.
16447         Reported by Ben Pfaff.
16448
16449 2007-10-07  Bruno Haible  <bruno@clisp.org>
16450
16451         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
16452         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
16453         * lib/frexp.c (FUNC): Likewise.
16454         * lib/printf-frexp.h (printf_frexp): Likewise.
16455         * lib/printf-frexpl.h (printf_frexpl): Likewise.
16456         * lib/printf-frexp.c (FUNC): Likewise.
16457         Suggested by Jim Meyering.
16458
16459 2007-10-07  Jim Meyering  <meyering@redhat.com>
16460
16461         Make xnanosleep's integer overflow test more robust.
16462         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
16463         so that gcc-4.3.0 doesn't optimize away this test for overflow.
16464
16465 2007-10-07  Bruno Haible  <bruno@clisp.org>
16466
16467         * NEWS: Mention the license change.
16468
16469         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
16470         abbreviations in the modules files.
16471
16472         Change copyright notice from GPLv2+ to GPLv3+.
16473         * README: Change copyright notice.
16474         * MODULES.html.sh: Likewise.
16475         * build-aux/bootstrap.conf: Likewise.
16476         * build-aux/config.libpath: Likewise.
16477         * build-aux/csharpcomp.sh.in: Likewise.
16478         * build-aux/csharpexec.sh.in: Likewise.
16479         * build-aux/install-reloc: Likewise.
16480         * build-aux/javacomp.sh.in: Likewise.
16481         * build-aux/javaexec.sh.in: Likewise.
16482         * build-aux/ldd.sh.in: Likewise.
16483         * build-aux/reloc-ldflags: Likewise.
16484         * build-aux/relocatable.sh.in: Likewise.
16485         * build-aux/x-to-1.in: Likewise.
16486         * check-module: Likewise.
16487         * config/srclistvars.sh: Likewise.
16488         * gnulib-tool: Likewise.
16489         * lib/acl-internal.h: Likewise.
16490         * lib/acl.c: Likewise.
16491         * lib/acl.h: Likewise.
16492         * lib/acl_entries.c: Likewise.
16493         * lib/areadlink-with-size.c: Likewise.
16494         * lib/areadlink.c: Likewise.
16495         * lib/areadlink.h: Likewise.
16496         * lib/argmatch.c: Likewise.
16497         * lib/argmatch.h: Likewise.
16498         * lib/argp-ba.c: Likewise.
16499         * lib/argp-eexst.c: Likewise.
16500         * lib/argp-fmtstream.c: Likewise.
16501         * lib/argp-fmtstream.h: Likewise.
16502         * lib/argp-fs-xinl.c: Likewise.
16503         * lib/argp-help.c: Likewise.
16504         * lib/argp-namefrob.h: Likewise.
16505         * lib/argp-parse.c: Likewise.
16506         * lib/argp-pin.c: Likewise.
16507         * lib/argp-pv.c: Likewise.
16508         * lib/argp-pvh.c: Likewise.
16509         * lib/argp-xinl.c: Likewise.
16510         * lib/argp.h: Likewise.
16511         * lib/at-func.c: Likewise.
16512         * lib/atanl.c: Likewise.
16513         * lib/backupfile.c: Likewise.
16514         * lib/backupfile.h: Likewise.
16515         * lib/basename.c: Likewise.
16516         * lib/binary-io.h: Likewise.
16517         * lib/byteswap.in.h: Likewise.
16518         * lib/c-stack.c: Likewise.
16519         * lib/c-stack.h: Likewise.
16520         * lib/c-strcasestr.c: Likewise.
16521         * lib/c-strcasestr.h: Likewise.
16522         * lib/c-strstr.c: Likewise.
16523         * lib/c-strstr.h: Likewise.
16524         * lib/c-strtod.c: Likewise.
16525         * lib/calloc.c: Likewise.
16526         * lib/canon-host.c: Likewise.
16527         * lib/canon-host.h: Likewise.
16528         * lib/canonicalize-lgpl.c: Likewise.
16529         * lib/canonicalize.c: Likewise.
16530         * lib/canonicalize.h: Likewise.
16531         * lib/ceil.c: Likewise.
16532         * lib/ceilf.c: Likewise.
16533         * lib/ceill.c: Likewise.
16534         * lib/chdir-long.c: Likewise.
16535         * lib/chdir-long.h: Likewise.
16536         * lib/chdir-safer.c: Likewise.
16537         * lib/chdir-safer.h: Likewise.
16538         * lib/chown.c: Likewise.
16539         * lib/classpath.c: Likewise.
16540         * lib/classpath.h: Likewise.
16541         * lib/clean-temp.c: Likewise.
16542         * lib/clean-temp.h: Likewise.
16543         * lib/cloexec.c: Likewise.
16544         * lib/close-stream.c: Likewise.
16545         * lib/closein.c: Likewise.
16546         * lib/closein.h: Likewise.
16547         * lib/closeout.c: Likewise.
16548         * lib/closeout.h: Likewise.
16549         * lib/concat-filename.c: Likewise.
16550         * lib/copy-file.c: Likewise.
16551         * lib/copy-file.h: Likewise.
16552         * lib/count-one-bits.h: Likewise.
16553         * lib/crc.c: Likewise.
16554         * lib/crc.h: Likewise.
16555         * lib/creat-safer.c: Likewise.
16556         * lib/csharpcomp.c: Likewise.
16557         * lib/csharpcomp.h: Likewise.
16558         * lib/csharpexec.c: Likewise.
16559         * lib/csharpexec.h: Likewise.
16560         * lib/cycle-check.c: Likewise.
16561         * lib/cycle-check.h: Likewise.
16562         * lib/diacrit.c: Likewise.
16563         * lib/diacrit.h: Likewise.
16564         * lib/diffseq.h: Likewise.
16565         * lib/dirchownmod.c: Likewise.
16566         * lib/dirent.in.h: Likewise.
16567         * lib/dirfd.c: Likewise.
16568         * lib/dirfd.h: Likewise.
16569         * lib/dirname.c: Likewise.
16570         * lib/dirname.h: Likewise.
16571         * lib/dummy.c: Likewise.
16572         * lib/dup-safer.c: Likewise.
16573         * lib/dup2.c: Likewise.
16574         * lib/eealloc.h: Likewise.
16575         * lib/error.c: Likewise.
16576         * lib/error.h: Likewise.
16577         * lib/euidaccess.c: Likewise.
16578         * lib/exclude.c: Likewise.
16579         * lib/exclude.h: Likewise.
16580         * lib/execute.c: Likewise.
16581         * lib/execute.h: Likewise.
16582         * lib/exitfail.c: Likewise.
16583         * lib/exitfail.h: Likewise.
16584         * lib/expl.c: Likewise.
16585         * lib/fatal-signal.c: Likewise.
16586         * lib/fatal-signal.h: Likewise.
16587         * lib/fbufmode.c: Likewise.
16588         * lib/fbufmode.h: Likewise.
16589         * lib/fchdir.c: Likewise.
16590         * lib/fchmodat.c: Likewise.
16591         * lib/fchownat.c: Likewise.
16592         * lib/fcntl--.h: Likewise.
16593         * lib/fcntl-safer.h: Likewise.
16594         * lib/fcntl.in.h: Likewise.
16595         * lib/fd-safer.c: Likewise.
16596         * lib/fflush.c: Likewise.
16597         * lib/file-has-acl.c: Likewise.
16598         * lib/file-set.c: Likewise.
16599         * lib/file-type.c: Likewise.
16600         * lib/file-type.h: Likewise.
16601         * lib/fileblocks.c: Likewise.
16602         * lib/filemode.c: Likewise.
16603         * lib/filemode.h: Likewise.
16604         * lib/filename.h: Likewise.
16605         * lib/filenamecat.c: Likewise.
16606         * lib/filenamecat.h: Likewise.
16607         * lib/findprog.c: Likewise.
16608         * lib/findprog.h: Likewise.
16609         * lib/float.in.h: Likewise.
16610         * lib/floor.c: Likewise.
16611         * lib/floorf.c: Likewise.
16612         * lib/floorl.c: Likewise.
16613         * lib/fopen-safer.c: Likewise.
16614         * lib/fopen.c: Likewise.
16615         * lib/fpending.c: Likewise.
16616         * lib/fpending.h: Likewise.
16617         * lib/fprintf.c: Likewise.
16618         * lib/fprintftime.h: Likewise.
16619         * lib/fpucw.h: Likewise.
16620         * lib/fpurge.c: Likewise.
16621         * lib/fpurge.h: Likewise.
16622         * lib/freadable.c: Likewise.
16623         * lib/freadable.h: Likewise.
16624         * lib/freadahead.c: Likewise.
16625         * lib/freadahead.h: Likewise.
16626         * lib/freading.c: Likewise.
16627         * lib/freading.h: Likewise.
16628         * lib/free.c: Likewise.
16629         * lib/freopen.c: Likewise.
16630         * lib/frexp.c: Likewise.
16631         * lib/frexpl.c: Likewise.
16632         * lib/fseek.c: Likewise.
16633         * lib/fseterr.c: Likewise.
16634         * lib/fseterr.h: Likewise.
16635         * lib/fstatat.c: Likewise.
16636         * lib/fstrcmp.c: Likewise.
16637         * lib/fstrcmp.h: Likewise.
16638         * lib/fsusage.c: Likewise.
16639         * lib/fsusage.h: Likewise.
16640         * lib/ftell.c: Likewise.
16641         * lib/ftello.c: Likewise.
16642         * lib/fts-cycle.c: Likewise.
16643         * lib/fts.c: Likewise.
16644         * lib/fts_.h: Likewise.
16645         * lib/full-read.c: Likewise.
16646         * lib/full-read.h: Likewise.
16647         * lib/full-write.c: Likewise.
16648         * lib/full-write.h: Likewise.
16649         * lib/fwritable.c: Likewise.
16650         * lib/fwritable.h: Likewise.
16651         * lib/fwriteerror.c: Likewise.
16652         * lib/fwriteerror.h: Likewise.
16653         * lib/fwriting.c: Likewise.
16654         * lib/fwriting.h: Likewise.
16655         * lib/gcd.c: Likewise.
16656         * lib/gcd.h: Likewise.
16657         * lib/getcwd.c: Likewise.
16658         * lib/getdate.h: Likewise.
16659         * lib/getdate.y: Likewise.
16660         * lib/getdomainname.c: Likewise.
16661         * lib/getdomainname.h: Likewise.
16662         * lib/getgroups.c: Likewise.
16663         * lib/gethostname.c: Likewise.
16664         * lib/gethrxtime.c: Likewise.
16665         * lib/gethrxtime.h: Likewise.
16666         * lib/getloadavg.c: Likewise.
16667         * lib/getndelim2.c: Likewise.
16668         * lib/getndelim2.h: Likewise.
16669         * lib/getnline.c: Likewise.
16670         * lib/getnline.h: Likewise.
16671         * lib/getopt.c: Likewise.
16672         * lib/getopt.in.h: Likewise.
16673         * lib/getopt1.c: Likewise.
16674         * lib/getopt_int.h: Likewise.
16675         * lib/getpagesize.h: Likewise.
16676         * lib/getsubopt.c: Likewise.
16677         * lib/gettime.c: Likewise.
16678         * lib/getugroups.c: Likewise.
16679         * lib/getugroups.h: Likewise.
16680         * lib/getusershell.c: Likewise.
16681         * lib/gl_anyavltree_list1.h: Likewise.
16682         * lib/gl_anyavltree_list2.h: Likewise.
16683         * lib/gl_anyhash_list1.h: Likewise.
16684         * lib/gl_anyhash_list2.h: Likewise.
16685         * lib/gl_anylinked_list1.h: Likewise.
16686         * lib/gl_anylinked_list2.h: Likewise.
16687         * lib/gl_anyrbtree_list1.h: Likewise.
16688         * lib/gl_anyrbtree_list2.h: Likewise.
16689         * lib/gl_anytree_list1.h: Likewise.
16690         * lib/gl_anytree_list2.h: Likewise.
16691         * lib/gl_anytree_oset.h: Likewise.
16692         * lib/gl_anytreehash_list1.h: Likewise.
16693         * lib/gl_anytreehash_list2.h: Likewise.
16694         * lib/gl_array_list.c: Likewise.
16695         * lib/gl_array_list.h: Likewise.
16696         * lib/gl_array_oset.c: Likewise.
16697         * lib/gl_array_oset.h: Likewise.
16698         * lib/gl_avltree_list.c: Likewise.
16699         * lib/gl_avltree_list.h: Likewise.
16700         * lib/gl_avltree_oset.c: Likewise.
16701         * lib/gl_avltree_oset.h: Likewise.
16702         * lib/gl_avltreehash_list.c: Likewise.
16703         * lib/gl_avltreehash_list.h: Likewise.
16704         * lib/gl_carray_list.c: Likewise.
16705         * lib/gl_carray_list.h: Likewise.
16706         * lib/gl_linked_list.c: Likewise.
16707         * lib/gl_linked_list.h: Likewise.
16708         * lib/gl_linkedhash_list.c: Likewise.
16709         * lib/gl_linkedhash_list.h: Likewise.
16710         * lib/gl_list.c: Likewise.
16711         * lib/gl_list.h: Likewise.
16712         * lib/gl_oset.c: Likewise.
16713         * lib/gl_oset.h: Likewise.
16714         * lib/gl_rbtree_list.c: Likewise.
16715         * lib/gl_rbtree_list.h: Likewise.
16716         * lib/gl_rbtree_oset.c: Likewise.
16717         * lib/gl_rbtree_oset.h: Likewise.
16718         * lib/gl_rbtreehash_list.c: Likewise.
16719         * lib/gl_rbtreehash_list.h: Likewise.
16720         * lib/gl_sublist.c: Likewise.
16721         * lib/gl_sublist.h: Likewise.
16722         * lib/group-member.c: Likewise.
16723         * lib/group-member.h: Likewise.
16724         * lib/hard-locale.c: Likewise.
16725         * lib/hard-locale.h: Likewise.
16726         * lib/hash-pjw.c: Likewise.
16727         * lib/hash-pjw.h: Likewise.
16728         * lib/hash-triple.c: Likewise.
16729         * lib/hash.c: Likewise.
16730         * lib/hash.h: Likewise.
16731         * lib/human.c: Likewise.
16732         * lib/human.h: Likewise.
16733         * lib/i-ring.c: Likewise.
16734         * lib/i-ring.h: Likewise.
16735         * lib/idcache.c: Likewise.
16736         * lib/imaxabs.c: Likewise.
16737         * lib/imaxdiv.c: Likewise.
16738         * lib/inet_pton.c: Likewise.
16739         * lib/inet_pton.h: Likewise.
16740         * lib/intprops.h: Likewise.
16741         * lib/inttostr.c: Likewise.
16742         * lib/inttostr.h: Likewise.
16743         * lib/inttypes.in.h: Likewise.
16744         * lib/isapipe.c: Likewise.
16745         * lib/isdir.c: Likewise.
16746         * lib/isnan.c: Likewise.
16747         * lib/isnan.h: Likewise.
16748         * lib/isnanf.c: Likewise.
16749         * lib/isnanf.h: Likewise.
16750         * lib/isnanl-nolibm.h: Likewise.
16751         * lib/isnanl.c: Likewise.
16752         * lib/isnanl.h: Likewise.
16753         * lib/javacomp.c: Likewise.
16754         * lib/javacomp.h: Likewise.
16755         * lib/javaexec.c: Likewise.
16756         * lib/javaexec.h: Likewise.
16757         * lib/javaversion.c: Likewise.
16758         * lib/javaversion.h: Likewise.
16759         * lib/javaversion.java: Likewise.
16760         * lib/lbrkprop.h: Likewise.
16761         * lib/lchmod.h: Likewise.
16762         * lib/lchown.c: Likewise.
16763         * lib/ldexpl.c: Likewise.
16764         * lib/linebreak.c: Likewise.
16765         * lib/linebreak.h: Likewise.
16766         * lib/linebuffer.c: Likewise.
16767         * lib/linebuffer.h: Likewise.
16768         * lib/locale.in.h: Likewise.
16769         * lib/logl.c: Likewise.
16770         * lib/long-options.c: Likewise.
16771         * lib/long-options.h: Likewise.
16772         * lib/lstat.c: Likewise.
16773         * lib/lstat.h: Likewise.
16774         * lib/math.in.h: Likewise.
16775         * lib/mbchar.c: Likewise.
16776         * lib/mbchar.h: Likewise.
16777         * lib/mbfile.h: Likewise.
16778         * lib/mbiter.h: Likewise.
16779         * lib/mbscasecmp.c: Likewise.
16780         * lib/mbscasestr.c: Likewise.
16781         * lib/mbschr.c: Likewise.
16782         * lib/mbscspn.c: Likewise.
16783         * lib/mbslen.c: Likewise.
16784         * lib/mbsncasecmp.c: Likewise.
16785         * lib/mbsnlen.c: Likewise.
16786         * lib/mbspbrk.c: Likewise.
16787         * lib/mbspcasecmp.c: Likewise.
16788         * lib/mbsrchr.c: Likewise.
16789         * lib/mbssep.c: Likewise.
16790         * lib/mbsspn.c: Likewise.
16791         * lib/mbsstr.c: Likewise.
16792         * lib/mbstok_r.c: Likewise.
16793         * lib/mbswidth.c: Likewise.
16794         * lib/mbswidth.h: Likewise.
16795         * lib/mbuiter.h: Likewise.
16796         * lib/memcasecmp.c: Likewise.
16797         * lib/memcasecmp.h: Likewise.
16798         * lib/memchr.c: Likewise.
16799         * lib/memcmp.c: Likewise.
16800         * lib/memcoll.c: Likewise.
16801         * lib/memcoll.h: Likewise.
16802         * lib/memcpy.c: Likewise.
16803         * lib/memrchr.c: Likewise.
16804         * lib/mkancesdirs.c: Likewise.
16805         * lib/mkdir-p.c: Likewise.
16806         * lib/mkdir-p.h: Likewise.
16807         * lib/mkdir.c: Likewise.
16808         * lib/mkdirat.c: Likewise.
16809         * lib/mkdtemp.c: Likewise.
16810         * lib/mkstemp-safer.c: Likewise.
16811         * lib/mkstemp.c: Likewise.
16812         * lib/modechange.c: Likewise.
16813         * lib/modechange.h: Likewise.
16814         * lib/mountlist.c: Likewise.
16815         * lib/mountlist.h: Likewise.
16816         * lib/mpsort.c: Likewise.
16817         * lib/nanosleep.c: Likewise.
16818         * lib/obstack.c: Likewise.
16819         * lib/obstack.h: Likewise.
16820         * lib/open-safer.c: Likewise.
16821         * lib/open.c: Likewise.
16822         * lib/openat-die.c: Likewise.
16823         * lib/openat-priv.h: Likewise.
16824         * lib/openat-proc.c: Likewise.
16825         * lib/openat.c: Likewise.
16826         * lib/openat.h: Likewise.
16827         * lib/pagealign_alloc.c: Likewise.
16828         * lib/pagealign_alloc.h: Likewise.
16829         * lib/physmem.c: Likewise.
16830         * lib/physmem.h: Likewise.
16831         * lib/pipe-safer.c: Likewise.
16832         * lib/pipe.c: Likewise.
16833         * lib/pipe.h: Likewise.
16834         * lib/posixtm.c: Likewise.
16835         * lib/posixtm.h: Likewise.
16836         * lib/posixver.c: Likewise.
16837         * lib/printf-frexp.c: Likewise.
16838         * lib/printf-frexp.h: Likewise.
16839         * lib/printf-frexpl.c: Likewise.
16840         * lib/printf-frexpl.h: Likewise.
16841         * lib/printf.c: Likewise.
16842         * lib/progname.c: Likewise.
16843         * lib/progname.h: Likewise.
16844         * lib/progreloc.c: Likewise.
16845         * lib/putenv.c: Likewise.
16846         * lib/quote.c: Likewise.
16847         * lib/quote.h: Likewise.
16848         * lib/quotearg.c: Likewise.
16849         * lib/quotearg.h: Likewise.
16850         * lib/raise.c: Likewise.
16851         * lib/readline.c: Likewise.
16852         * lib/readline.h: Likewise.
16853         * lib/readlink.c: Likewise.
16854         * lib/readtokens.c: Likewise.
16855         * lib/readtokens.h: Likewise.
16856         * lib/readtokens0.c: Likewise.
16857         * lib/readtokens0.h: Likewise.
16858         * lib/readutmp.c: Likewise.
16859         * lib/readutmp.h: Likewise.
16860         * lib/realloc.c: Likewise.
16861         * lib/relocwrapper.c: Likewise.
16862         * lib/rename-dest-slash.c: Likewise.
16863         * lib/rename.c: Likewise.
16864         * lib/rmdir.c: Likewise.
16865         * lib/rpmatch.c: Likewise.
16866         * lib/safe-read.c: Likewise.
16867         * lib/safe-read.h: Likewise.
16868         * lib/safe-write.c: Likewise.
16869         * lib/safe-write.h: Likewise.
16870         * lib/same-inode.h: Likewise.
16871         * lib/same.c: Likewise.
16872         * lib/same.h: Likewise.
16873         * lib/save-cwd.c: Likewise.
16874         * lib/save-cwd.h: Likewise.
16875         * lib/savedir.c: Likewise.
16876         * lib/savedir.h: Likewise.
16877         * lib/savewd.c: Likewise.
16878         * lib/savewd.h: Likewise.
16879         * lib/search.in.h: Likewise.
16880         * lib/setenv.c: Likewise.
16881         * lib/setenv.h: Likewise.
16882         * lib/settime.c: Likewise.
16883         * lib/sh-quote.c: Likewise.
16884         * lib/sh-quote.h: Likewise.
16885         * lib/sig2str.c: Likewise.
16886         * lib/sig2str.h: Likewise.
16887         * lib/signal.in.h: Likewise.
16888         * lib/signbitd.c: Likewise.
16889         * lib/signbitf.c: Likewise.
16890         * lib/signbitl.c: Likewise.
16891         * lib/sigprocmask.c: Likewise.
16892         * lib/sincosl.c: Likewise.
16893         * lib/sleep.c: Likewise.
16894         * lib/sprintf.c: Likewise.
16895         * lib/sqrtl.c: Likewise.
16896         * lib/stat-time.h: Likewise.
16897         * lib/stdio--.h: Likewise.
16898         * lib/stdio-safer.h: Likewise.
16899         * lib/stdlib--.h: Likewise.
16900         * lib/stdlib-safer.h: Likewise.
16901         * lib/stdlib.in.h: Likewise.
16902         * lib/stpcpy.c: Likewise.
16903         * lib/stpncpy.c: Likewise.
16904         * lib/strchrnul.c: Likewise.
16905         * lib/strcspn.c: Likewise.
16906         * lib/strerror.c: Likewise.
16907         * lib/strftime.c: Likewise.
16908         * lib/strftime.h: Likewise.
16909         * lib/striconveh.c: Likewise.
16910         * lib/striconveh.h: Likewise.
16911         * lib/striconveha.c: Likewise.
16912         * lib/striconveha.h: Likewise.
16913         * lib/stripslash.c: Likewise.
16914         * lib/strnlen1.c: Likewise.
16915         * lib/strnlen1.h: Likewise.
16916         * lib/strtod.c: Likewise.
16917         * lib/strtoimax.c: Likewise.
16918         * lib/strtok_r.c: Likewise.
16919         * lib/strtol.c: Likewise.
16920         * lib/strtoll.c: Likewise.
16921         * lib/strtoul.c: Likewise.
16922         * lib/strtoull.c: Likewise.
16923         * lib/sysexits.in.h: Likewise.
16924         * lib/tempname.c: Likewise.
16925         * lib/tempname.h: Likewise.
16926         * lib/timespec.h: Likewise.
16927         * lib/tls.c: Likewise.
16928         * lib/tls.h: Likewise.
16929         * lib/tmpdir.c: Likewise.
16930         * lib/tmpdir.h: Likewise.
16931         * lib/tmpfile-safer.c: Likewise.
16932         * lib/tmpfile.c: Likewise.
16933         * lib/trigl.c: Likewise.
16934         * lib/trigl.h: Likewise.
16935         * lib/trim.c: Likewise.
16936         * lib/trim.h: Likewise.
16937         * lib/trunc.c: Likewise.
16938         * lib/truncf.c: Likewise.
16939         * lib/truncl.c: Likewise.
16940         * lib/tsearch.c: Likewise.
16941         * lib/unicodeio.c: Likewise.
16942         * lib/unicodeio.h: Likewise.
16943         * lib/unistd--.h: Likewise.
16944         * lib/unistd-safer.h: Likewise.
16945         * lib/unistdio/ulc-fprintf.c: Likewise.
16946         * lib/unistdio/ulc-vfprintf.c: Likewise.
16947         * lib/unlinkdir.c: Likewise.
16948         * lib/unlinkdir.h: Likewise.
16949         * lib/unlocked-io.h: Likewise.
16950         * lib/unsetenv.c: Likewise.
16951         * lib/userspec.c: Likewise.
16952         * lib/utime.c: Likewise.
16953         * lib/utimecmp.c: Likewise.
16954         * lib/utimecmp.h: Likewise.
16955         * lib/utimens.c: Likewise.
16956         * lib/verify.h: Likewise.
16957         * lib/verror.c: Likewise.
16958         * lib/verror.h: Likewise.
16959         * lib/version-etc-fsf.c: Likewise.
16960         * lib/version-etc.c: Likewise.
16961         * lib/version-etc.h: Likewise.
16962         * lib/vfprintf.c: Likewise.
16963         * lib/vprintf.c: Likewise.
16964         * lib/vsprintf.c: Likewise.
16965         * lib/w32spawn.h: Likewise.
16966         * lib/wait-process.c: Likewise.
16967         * lib/wait-process.h: Likewise.
16968         * lib/wcwidth.c: Likewise.
16969         * lib/write-any-file.c: Likewise.
16970         * lib/xalloc-die.c: Likewise.
16971         * lib/xalloc.h: Likewise.
16972         * lib/xasprintf.c: Likewise.
16973         * lib/xgetcwd.c: Likewise.
16974         * lib/xgetcwd.h: Likewise.
16975         * lib/xgetdomainname.c: Likewise.
16976         * lib/xgetdomainname.h: Likewise.
16977         * lib/xgethostname.c: Likewise.
16978         * lib/xmalloc.c: Likewise.
16979         * lib/xmalloca.c: Likewise.
16980         * lib/xmalloca.h: Likewise.
16981         * lib/xmemcoll.c: Likewise.
16982         * lib/xnanosleep.c: Likewise.
16983         * lib/xreadlink.c: Likewise.
16984         * lib/xreadlink.h: Likewise.
16985         * lib/xsetenv.c: Likewise.
16986         * lib/xsetenv.h: Likewise.
16987         * lib/xstriconv.c: Likewise.
16988         * lib/xstriconv.h: Likewise.
16989         * lib/xstrndup.c: Likewise.
16990         * lib/xstrndup.h: Likewise.
16991         * lib/xstrtod.c: Likewise.
16992         * lib/xstrtod.h: Likewise.
16993         * lib/xstrtol-error.c: Likewise.
16994         * lib/xstrtol.c: Likewise.
16995         * lib/xstrtol.h: Likewise.
16996         * lib/xtime.h: Likewise.
16997         * lib/xvasprintf.c: Likewise.
16998         * lib/xvasprintf.h: Likewise.
16999         * lib/yesno.c: Likewise.
17000         * lib/yesno.h: Likewise.
17001         * posix-modules: Likewise.
17002         * tests/test-alloca-opt.c: Likewise.
17003         * tests/test-arcfour.c: Likewise.
17004         * tests/test-arctwo.c: Likewise.
17005         * tests/test-argmatch.c: Likewise.
17006         * tests/test-argp-2.sh: Likewise.
17007         * tests/test-argp.c: Likewise.
17008         * tests/test-arpa_inet.c: Likewise.
17009         * tests/test-array_list.c: Likewise.
17010         * tests/test-array_oset.c: Likewise.
17011         * tests/test-atexit.c: Likewise.
17012         * tests/test-avltree_list.c: Likewise.
17013         * tests/test-avltree_oset.c: Likewise.
17014         * tests/test-avltreehash_list.c: Likewise.
17015         * tests/test-base64.c: Likewise.
17016         * tests/test-binary-io.c: Likewise.
17017         * tests/test-byteswap.c: Likewise.
17018         * tests/test-c-ctype.c: Likewise.
17019         * tests/test-c-strcasecmp.c: Likewise.
17020         * tests/test-c-strcasestr.c: Likewise.
17021         * tests/test-c-strncasecmp.c: Likewise.
17022         * tests/test-c-strstr.c: Likewise.
17023         * tests/test-canonicalize-lgpl.c: Likewise.
17024         * tests/test-canonicalize.c: Likewise.
17025         * tests/test-carray_list.c: Likewise.
17026         * tests/test-ceilf.c: Likewise.
17027         * tests/test-ceill.c: Likewise.
17028         * tests/test-count-one-bits.c: Likewise.
17029         * tests/test-crc.c: Likewise.
17030         * tests/test-dirname.c: Likewise.
17031         * tests/test-fbufmode.c: Likewise.
17032         * tests/test-fcntl.c: Likewise.
17033         * tests/test-fflush.c: Likewise.
17034         * tests/test-floorf.c: Likewise.
17035         * tests/test-floorl.c: Likewise.
17036         * tests/test-fopen.c: Likewise.
17037         * tests/test-fprintf-posix.c: Likewise.
17038         * tests/test-fprintf-posix.h: Likewise.
17039         * tests/test-fpurge.c: Likewise.
17040         * tests/test-freadable.c: Likewise.
17041         * tests/test-freadahead.c: Likewise.
17042         * tests/test-freading.c: Likewise.
17043         * tests/test-freopen.c: Likewise.
17044         * tests/test-frexp.c: Likewise.
17045         * tests/test-frexpl.c: Likewise.
17046         * tests/test-fseek.c: Likewise.
17047         * tests/test-fseeko.c: Likewise.
17048         * tests/test-fseterr.c: Likewise.
17049         * tests/test-fstrcmp.c: Likewise.
17050         * tests/test-ftell.c: Likewise.
17051         * tests/test-ftello.c: Likewise.
17052         * tests/test-fwritable.c: Likewise.
17053         * tests/test-fwriting.c: Likewise.
17054         * tests/test-getaddrinfo.c: Likewise.
17055         * tests/test-getpass.c: Likewise.
17056         * tests/test-gettimeofday.c: Likewise.
17057         * tests/test-hmac-md5.c: Likewise.
17058         * tests/test-hmac-sha1.c: Likewise.
17059         * tests/test-iconv.c: Likewise.
17060         * tests/test-iconvme.c: Likewise.
17061         * tests/test-inttypes.c: Likewise.
17062         * tests/test-isnan.c: Likewise.
17063         * tests/test-isnanf.c: Likewise.
17064         * tests/test-isnanl-nolibm.c: Likewise.
17065         * tests/test-isnanl.c: Likewise.
17066         * tests/test-isnanl.h: Likewise.
17067         * tests/test-ldexpl.c: Likewise.
17068         * tests/test-linked_list.c: Likewise.
17069         * tests/test-linkedhash_list.c: Likewise.
17070         * tests/test-locale.c: Likewise.
17071         * tests/test-localename.c: Likewise.
17072         * tests/test-lock.c: Likewise.
17073         * tests/test-lseek.c: Likewise.
17074         * tests/test-malloca.c: Likewise.
17075         * tests/test-math.c: Likewise.
17076         * tests/test-mbscasecmp.c: Likewise.
17077         * tests/test-mbscasestr1.c: Likewise.
17078         * tests/test-mbscasestr2.c: Likewise.
17079         * tests/test-mbscasestr3.c: Likewise.
17080         * tests/test-mbscasestr4.c: Likewise.
17081         * tests/test-mbschr.c: Likewise.
17082         * tests/test-mbscspn.c: Likewise.
17083         * tests/test-mbsncasecmp.c: Likewise.
17084         * tests/test-mbspbrk.c: Likewise.
17085         * tests/test-mbspcasecmp.c: Likewise.
17086         * tests/test-mbsrchr.c: Likewise.
17087         * tests/test-mbsspn.c: Likewise.
17088         * tests/test-mbsstr1.c: Likewise.
17089         * tests/test-mbsstr2.c: Likewise.
17090         * tests/test-mbsstr3.c: Likewise.
17091         * tests/test-md5.c: Likewise.
17092         * tests/test-memmem.c: Likewise.
17093         * tests/test-netinet_in.c: Likewise.
17094         * tests/test-open.c: Likewise.
17095         * tests/test-printf-frexp.c: Likewise.
17096         * tests/test-printf-frexpl.c: Likewise.
17097         * tests/test-printf-posix.c: Likewise.
17098         * tests/test-printf-posix.h: Likewise.
17099         * tests/test-rbtree_list.c: Likewise.
17100         * tests/test-rbtree_oset.c: Likewise.
17101         * tests/test-rbtreehash_list.c: Likewise.
17102         * tests/test-read-file.c: Likewise.
17103         * tests/test-rijndael.c: Likewise.
17104         * tests/test-search.c: Likewise.
17105         * tests/test-signbit.c: Likewise.
17106         * tests/test-sleep.c: Likewise.
17107         * tests/test-snprintf-posix.c: Likewise.
17108         * tests/test-snprintf-posix.h: Likewise.
17109         * tests/test-snprintf.c: Likewise.
17110         * tests/test-sprintf-posix.c: Likewise.
17111         * tests/test-sprintf-posix.h: Likewise.
17112         * tests/test-stat-time.c: Likewise.
17113         * tests/test-stdbool.c: Likewise.
17114         * tests/test-stdint.c: Likewise.
17115         * tests/test-stdio.c: Likewise.
17116         * tests/test-stdlib.c: Likewise.
17117         * tests/test-stpncpy.c: Likewise.
17118         * tests/test-strcasestr.c: Likewise.
17119         * tests/test-striconv.c: Likewise.
17120         * tests/test-striconveh.c: Likewise.
17121         * tests/test-striconveha.c: Likewise.
17122         * tests/test-string.c: Likewise.
17123         * tests/test-sys_select.c: Likewise.
17124         * tests/test-sys_socket.c: Likewise.
17125         * tests/test-sys_stat.c: Likewise.
17126         * tests/test-sys_time.c: Likewise.
17127         * tests/test-sysexits.c: Likewise.
17128         * tests/test-time.c: Likewise.
17129         * tests/test-tls.c: Likewise.
17130         * tests/test-trunc.c: Likewise.
17131         * tests/test-truncf.c: Likewise.
17132         * tests/test-truncl.c: Likewise.
17133         * tests/test-unistd.c: Likewise.
17134         * tests/test-vasnprintf-posix.c: Likewise.
17135         * tests/test-vasnprintf-posix2.c: Likewise.
17136         * tests/test-vasnprintf.c: Likewise.
17137         * tests/test-vasprintf-posix.c: Likewise.
17138         * tests/test-vasprintf.c: Likewise.
17139         * tests/test-verify.c: Likewise.
17140         * tests/test-vfprintf-posix.c: Likewise.
17141         * tests/test-vprintf-posix.c: Likewise.
17142         * tests/test-vsnprintf-posix.c: Likewise.
17143         * tests/test-vsnprintf.c: Likewise.
17144         * tests/test-vsprintf-posix.c: Likewise.
17145         * tests/test-wchar.c: Likewise.
17146         * tests/test-wctype.c: Likewise.
17147         * tests/test-wcwidth.c: Likewise.
17148         * tests/test-xstrtol.c: Likewise.
17149         * tests/test-xvasprintf.c: Likewise.
17150         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
17151         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
17152         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
17153         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
17154         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
17155         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
17156         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
17157         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
17158         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
17159         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
17160         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
17161         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
17162         * tests/uniname/test-uninames.c: Likewise.
17163         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
17164         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
17165         * tests/unistdio/test-u16-printf1.h: Likewise.
17166         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
17167         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
17168         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
17169         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
17170         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
17171         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
17172         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
17173         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
17174         * tests/unistdio/test-u32-printf1.h: Likewise.
17175         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
17176         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
17177         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
17178         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
17179         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
17180         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
17181         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
17182         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
17183         * tests/unistdio/test-u8-printf1.h: Likewise.
17184         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
17185         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
17186         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
17187         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
17188         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
17189         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
17190         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
17191         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
17192         * tests/unistdio/test-ulc-printf1.h: Likewise.
17193         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
17194         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
17195         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
17196         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
17197         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
17198         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
17199         * tests/uniwidth/test-u16-strwidth.c: Likewise.
17200         * tests/uniwidth/test-u16-width.c: Likewise.
17201         * tests/uniwidth/test-u32-strwidth.c: Likewise.
17202         * tests/uniwidth/test-u32-width.c: Likewise.
17203         * tests/uniwidth/test-u8-strwidth.c: Likewise.
17204         * tests/uniwidth/test-u8-width.c: Likewise.
17205         * tests/uniwidth/test-uc_width.c: Likewise.
17206         * config/srclist-update: Likewise.
17207         (fixlicense): Update to GPLv3+.
17208
17209         Change copyright notice from LGPLv2.1+ to LGPLv3+.
17210         * tests/test-tsearch.c: Change copyright notice.
17211
17212         Change copyright notice from LGPLv2.0+ to LGPLv3+.
17213         * lib/c-strcaseeq.h: Change copyright notice.
17214         * lib/streq.h: Likewise.
17215         * lib/uniconv.h: Likewise.
17216         * lib/uniconv/u-conv-from-enc.h: Likewise.
17217         * lib/uniconv/u-conv-to-enc.h: Likewise.
17218         * lib/uniconv/u-strconv-from-enc.h: Likewise.
17219         * lib/uniconv/u-strconv-to-enc.h: Likewise.
17220         * lib/uniconv/u16-conv-from-enc.c: Likewise.
17221         * lib/uniconv/u16-conv-to-enc.c: Likewise.
17222         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
17223         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
17224         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
17225         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
17226         * lib/uniconv/u32-conv-from-enc.c: Likewise.
17227         * lib/uniconv/u32-conv-to-enc.c: Likewise.
17228         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
17229         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
17230         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
17231         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
17232         * lib/uniconv/u8-conv-from-enc.c: Likewise.
17233         * lib/uniconv/u8-conv-to-enc.c: Likewise.
17234         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
17235         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
17236         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
17237         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
17238         * lib/uniname.h: Likewise.
17239         * lib/uniname/uniname.c: Likewise.
17240         * lib/unistdio.h: Likewise.
17241         * lib/unistdio/u-asnprintf.h: Likewise.
17242         * lib/unistdio/u-asprintf.h: Likewise.
17243         * lib/unistdio/u-printf-args.c: Likewise.
17244         * lib/unistdio/u-printf-args.h: Likewise.
17245         * lib/unistdio/u-printf-parse.h: Likewise.
17246         * lib/unistdio/u-snprintf.h: Likewise.
17247         * lib/unistdio/u-sprintf.h: Likewise.
17248         * lib/unistdio/u-vasprintf.h: Likewise.
17249         * lib/unistdio/u-vsnprintf.h: Likewise.
17250         * lib/unistdio/u-vsprintf.h: Likewise.
17251         * lib/unistdio/u16-asnprintf.c: Likewise.
17252         * lib/unistdio/u16-asprintf.c: Likewise.
17253         * lib/unistdio/u16-printf-parse.c: Likewise.
17254         * lib/unistdio/u16-snprintf.c: Likewise.
17255         * lib/unistdio/u16-sprintf.c: Likewise.
17256         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
17257         * lib/unistdio/u16-u16-asprintf.c: Likewise.
17258         * lib/unistdio/u16-u16-snprintf.c: Likewise.
17259         * lib/unistdio/u16-u16-sprintf.c: Likewise.
17260         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
17261         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
17262         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
17263         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
17264         * lib/unistdio/u16-vasnprintf.c: Likewise.
17265         * lib/unistdio/u16-vasprintf.c: Likewise.
17266         * lib/unistdio/u16-vsnprintf.c: Likewise.
17267         * lib/unistdio/u16-vsprintf.c: Likewise.
17268         * lib/unistdio/u32-asnprintf.c: Likewise.
17269         * lib/unistdio/u32-asprintf.c: Likewise.
17270         * lib/unistdio/u32-printf-parse.c: Likewise.
17271         * lib/unistdio/u32-snprintf.c: Likewise.
17272         * lib/unistdio/u32-sprintf.c: Likewise.
17273         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
17274         * lib/unistdio/u32-u32-asprintf.c: Likewise.
17275         * lib/unistdio/u32-u32-snprintf.c: Likewise.
17276         * lib/unistdio/u32-u32-sprintf.c: Likewise.
17277         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
17278         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
17279         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
17280         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
17281         * lib/unistdio/u32-vasnprintf.c: Likewise.
17282         * lib/unistdio/u32-vasprintf.c: Likewise.
17283         * lib/unistdio/u32-vsnprintf.c: Likewise.
17284         * lib/unistdio/u32-vsprintf.c: Likewise.
17285         * lib/unistdio/u8-asnprintf.c: Likewise.
17286         * lib/unistdio/u8-asprintf.c: Likewise.
17287         * lib/unistdio/u8-printf-parse.c: Likewise.
17288         * lib/unistdio/u8-snprintf.c: Likewise.
17289         * lib/unistdio/u8-sprintf.c: Likewise.
17290         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
17291         * lib/unistdio/u8-u8-asprintf.c: Likewise.
17292         * lib/unistdio/u8-u8-snprintf.c: Likewise.
17293         * lib/unistdio/u8-u8-sprintf.c: Likewise.
17294         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
17295         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
17296         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
17297         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
17298         * lib/unistdio/u8-vasnprintf.c: Likewise.
17299         * lib/unistdio/u8-vasprintf.c: Likewise.
17300         * lib/unistdio/u8-vsnprintf.c: Likewise.
17301         * lib/unistdio/u8-vsprintf.c: Likewise.
17302         * lib/unistdio/ulc-asnprintf.c: Likewise.
17303         * lib/unistdio/ulc-asprintf.c: Likewise.
17304         * lib/unistdio/ulc-printf-parse.c: Likewise.
17305         * lib/unistdio/ulc-snprintf.c: Likewise.
17306         * lib/unistdio/ulc-sprintf.c: Likewise.
17307         * lib/unistdio/ulc-vasnprintf.c: Likewise.
17308         * lib/unistdio/ulc-vasprintf.c: Likewise.
17309         * lib/unistdio/ulc-vsnprintf.c: Likewise.
17310         * lib/unistdio/ulc-vsprintf.c: Likewise.
17311         * lib/unistr.h: Likewise.
17312         * lib/unistr/u-cpy-alloc.h: Likewise.
17313         * lib/unistr/u-cpy.h: Likewise.
17314         * lib/unistr/u-endswith.h: Likewise.
17315         * lib/unistr/u-move.h: Likewise.
17316         * lib/unistr/u-set.h: Likewise.
17317         * lib/unistr/u-startswith.h: Likewise.
17318         * lib/unistr/u-stpcpy.h: Likewise.
17319         * lib/unistr/u-stpncpy.h: Likewise.
17320         * lib/unistr/u-strcat.h: Likewise.
17321         * lib/unistr/u-strcpy.h: Likewise.
17322         * lib/unistr/u-strcspn.h: Likewise.
17323         * lib/unistr/u-strdup.h: Likewise.
17324         * lib/unistr/u-strlen.h: Likewise.
17325         * lib/unistr/u-strncat.h: Likewise.
17326         * lib/unistr/u-strncpy.h: Likewise.
17327         * lib/unistr/u-strnlen.h: Likewise.
17328         * lib/unistr/u-strpbrk.h: Likewise.
17329         * lib/unistr/u-strspn.h: Likewise.
17330         * lib/unistr/u-strstr.h: Likewise.
17331         * lib/unistr/u-strtok.h: Likewise.
17332         * lib/unistr/u16-check.c: Likewise.
17333         * lib/unistr/u16-chr.c: Likewise.
17334         * lib/unistr/u16-cmp.c: Likewise.
17335         * lib/unistr/u16-cpy-alloc.c: Likewise.
17336         * lib/unistr/u16-cpy.c: Likewise.
17337         * lib/unistr/u16-endswith.c: Likewise.
17338         * lib/unistr/u16-mblen.c: Likewise.
17339         * lib/unistr/u16-mbsnlen.c: Likewise.
17340         * lib/unistr/u16-mbtouc-aux.c: Likewise.
17341         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
17342         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
17343         * lib/unistr/u16-mbtouc.c: Likewise.
17344         * lib/unistr/u16-mbtoucr.c: Likewise.
17345         * lib/unistr/u16-move.c: Likewise.
17346         * lib/unistr/u16-next.c: Likewise.
17347         * lib/unistr/u16-prev.c: Likewise.
17348         * lib/unistr/u16-set.c: Likewise.
17349         * lib/unistr/u16-startswith.c: Likewise.
17350         * lib/unistr/u16-stpcpy.c: Likewise.
17351         * lib/unistr/u16-stpncpy.c: Likewise.
17352         * lib/unistr/u16-strcat.c: Likewise.
17353         * lib/unistr/u16-strchr.c: Likewise.
17354         * lib/unistr/u16-strcmp.c: Likewise.
17355         * lib/unistr/u16-strcpy.c: Likewise.
17356         * lib/unistr/u16-strcspn.c: Likewise.
17357         * lib/unistr/u16-strdup.c: Likewise.
17358         * lib/unistr/u16-strlen.c: Likewise.
17359         * lib/unistr/u16-strmblen.c: Likewise.
17360         * lib/unistr/u16-strmbtouc.c: Likewise.
17361         * lib/unistr/u16-strncat.c: Likewise.
17362         * lib/unistr/u16-strncmp.c: Likewise.
17363         * lib/unistr/u16-strncpy.c: Likewise.
17364         * lib/unistr/u16-strnlen.c: Likewise.
17365         * lib/unistr/u16-strpbrk.c: Likewise.
17366         * lib/unistr/u16-strrchr.c: Likewise.
17367         * lib/unistr/u16-strspn.c: Likewise.
17368         * lib/unistr/u16-strstr.c: Likewise.
17369         * lib/unistr/u16-strtok.c: Likewise.
17370         * lib/unistr/u16-to-u32.c: Likewise.
17371         * lib/unistr/u16-to-u8.c: Likewise.
17372         * lib/unistr/u16-uctomb-aux.c: Likewise.
17373         * lib/unistr/u16-uctomb.c: Likewise.
17374         * lib/unistr/u32-check.c: Likewise.
17375         * lib/unistr/u32-chr.c: Likewise.
17376         * lib/unistr/u32-cmp.c: Likewise.
17377         * lib/unistr/u32-cpy-alloc.c: Likewise.
17378         * lib/unistr/u32-cpy.c: Likewise.
17379         * lib/unistr/u32-endswith.c: Likewise.
17380         * lib/unistr/u32-mblen.c: Likewise.
17381         * lib/unistr/u32-mbsnlen.c: Likewise.
17382         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
17383         * lib/unistr/u32-mbtouc.c: Likewise.
17384         * lib/unistr/u32-mbtoucr.c: Likewise.
17385         * lib/unistr/u32-move.c: Likewise.
17386         * lib/unistr/u32-next.c: Likewise.
17387         * lib/unistr/u32-prev.c: Likewise.
17388         * lib/unistr/u32-set.c: Likewise.
17389         * lib/unistr/u32-startswith.c: Likewise.
17390         * lib/unistr/u32-stpcpy.c: Likewise.
17391         * lib/unistr/u32-stpncpy.c: Likewise.
17392         * lib/unistr/u32-strcat.c: Likewise.
17393         * lib/unistr/u32-strchr.c: Likewise.
17394         * lib/unistr/u32-strcmp.c: Likewise.
17395         * lib/unistr/u32-strcpy.c: Likewise.
17396         * lib/unistr/u32-strcspn.c: Likewise.
17397         * lib/unistr/u32-strdup.c: Likewise.
17398         * lib/unistr/u32-strlen.c: Likewise.
17399         * lib/unistr/u32-strmblen.c: Likewise.
17400         * lib/unistr/u32-strmbtouc.c: Likewise.
17401         * lib/unistr/u32-strncat.c: Likewise.
17402         * lib/unistr/u32-strncmp.c: Likewise.
17403         * lib/unistr/u32-strncpy.c: Likewise.
17404         * lib/unistr/u32-strnlen.c: Likewise.
17405         * lib/unistr/u32-strpbrk.c: Likewise.
17406         * lib/unistr/u32-strrchr.c: Likewise.
17407         * lib/unistr/u32-strspn.c: Likewise.
17408         * lib/unistr/u32-strstr.c: Likewise.
17409         * lib/unistr/u32-strtok.c: Likewise.
17410         * lib/unistr/u32-to-u16.c: Likewise.
17411         * lib/unistr/u32-to-u8.c: Likewise.
17412         * lib/unistr/u32-uctomb.c: Likewise.
17413         * lib/unistr/u8-check.c: Likewise.
17414         * lib/unistr/u8-chr.c: Likewise.
17415         * lib/unistr/u8-cmp.c: Likewise.
17416         * lib/unistr/u8-cpy-alloc.c: Likewise.
17417         * lib/unistr/u8-cpy.c: Likewise.
17418         * lib/unistr/u8-endswith.c: Likewise.
17419         * lib/unistr/u8-mblen.c: Likewise.
17420         * lib/unistr/u8-mbsnlen.c: Likewise.
17421         * lib/unistr/u8-mbtouc-aux.c: Likewise.
17422         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
17423         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
17424         * lib/unistr/u8-mbtouc.c: Likewise.
17425         * lib/unistr/u8-mbtoucr.c: Likewise.
17426         * lib/unistr/u8-move.c: Likewise.
17427         * lib/unistr/u8-next.c: Likewise.
17428         * lib/unistr/u8-prev.c: Likewise.
17429         * lib/unistr/u8-set.c: Likewise.
17430         * lib/unistr/u8-startswith.c: Likewise.
17431         * lib/unistr/u8-stpcpy.c: Likewise.
17432         * lib/unistr/u8-stpncpy.c: Likewise.
17433         * lib/unistr/u8-strcat.c: Likewise.
17434         * lib/unistr/u8-strchr.c: Likewise.
17435         * lib/unistr/u8-strcmp.c: Likewise.
17436         * lib/unistr/u8-strcpy.c: Likewise.
17437         * lib/unistr/u8-strcspn.c: Likewise.
17438         * lib/unistr/u8-strdup.c: Likewise.
17439         * lib/unistr/u8-strlen.c: Likewise.
17440         * lib/unistr/u8-strmblen.c: Likewise.
17441         * lib/unistr/u8-strmbtouc.c: Likewise.
17442         * lib/unistr/u8-strncat.c: Likewise.
17443         * lib/unistr/u8-strncmp.c: Likewise.
17444         * lib/unistr/u8-strncpy.c: Likewise.
17445         * lib/unistr/u8-strnlen.c: Likewise.
17446         * lib/unistr/u8-strpbrk.c: Likewise.
17447         * lib/unistr/u8-strrchr.c: Likewise.
17448         * lib/unistr/u8-strspn.c: Likewise.
17449         * lib/unistr/u8-strstr.c: Likewise.
17450         * lib/unistr/u8-strtok.c: Likewise.
17451         * lib/unistr/u8-to-u16.c: Likewise.
17452         * lib/unistr/u8-to-u32.c: Likewise.
17453         * lib/unistr/u8-uctomb-aux.c: Likewise.
17454         * lib/unistr/u8-uctomb.c: Likewise.
17455         * lib/unitypes.h: Likewise.
17456         * lib/uniwidth.h: Likewise.
17457         * lib/uniwidth/cjk.h: Likewise.
17458         * lib/uniwidth/u16-strwidth.c: Likewise.
17459         * lib/uniwidth/u16-width.c: Likewise.
17460         * lib/uniwidth/u32-strwidth.c: Likewise.
17461         * lib/uniwidth/u32-width.c: Likewise.
17462         * lib/uniwidth/u8-strwidth.c: Likewise.
17463         * lib/uniwidth/u8-width.c: Likewise.
17464         * lib/uniwidth/width.c: Likewise.
17465
17466 2007-10-07  Bruno Haible  <bruno@clisp.org>
17467
17468         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
17469         The file is still under LGPL (see modules/inttypes).
17470
17471 2007-10-06  Bruno Haible  <bruno@clisp.org>
17472
17473         * modules/trunc (Dependencies): Add 'extensions'.
17474         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
17475         Reported by Ben Pfaff <blp@gnu.org>.
17476
17477 2007-10-06  Bruno Haible  <bruno@clisp.org>
17478
17479         * modules/freopen-tests: New file.
17480         * tests/test-freopen.c: New file.
17481
17482         * modules/fopen-tests: New file.
17483         * tests/test-fopen.c: New file.
17484
17485         * modules/fopen: New file.
17486         * lib/fopen.c: New file.
17487         * m4/fopen.m4: New file.
17488         * modules/freopen: New file.
17489         * lib/freopen.c: New file.
17490         * m4/freopen.m4: New file.
17491         * lib/stdio.in.h (fopen, freopen): New declarations.
17492         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
17493         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
17494         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
17495         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
17496         * doc/functions/fopen.texi: Mention the 'fopen' module.
17497         * doc/functions/freopen.texi: Mention the 'freopen' module.
17498
17499 2007-10-06  Bruno Haible  <bruno@clisp.org>
17500
17501         * modules/open-tests: New file.
17502         * tests/test-open.c: New file.
17503
17504         * modules/open: New file.
17505         * lib/open.c: New file.
17506         * m4/open.m4: New file.
17507         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
17508         lib/open.c does.
17509         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
17510         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
17511         macros.
17512         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
17513         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
17514         REPLACE_OPEN.
17515         * doc/functions/open.texi: Mention the 'open' module.
17516
17517 2007-10-04  Bruno Haible  <bruno@clisp.org>
17518
17519         * modules/ceill-tests: New file.
17520         * tests/test-ceill.c: New file.
17521
17522         * modules/ceill: New file.
17523         * lib/ceill.c: Replace entire file.
17524         * m4/ceill.m4: New file.
17525         * lib/math.in.h (ceill): Replace declaration.
17526         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
17527         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
17528         * doc/functions/ceill.texi: Mention the 'ceill' module.
17529         * modules/mathl (Files): Remove lib/ceill.c.
17530         (Depends-on): Add ceill.
17531
17532 2007-10-04  Bruno Haible  <bruno@clisp.org>
17533
17534         * modules/ceilf-tests: New file.
17535         * tests/test-ceilf.c: New file.
17536
17537         * modules/ceilf: New file.
17538         * lib/ceil.c: New file.
17539         * lib/ceilf.c: New file.
17540         * m4/ceilf.m4: New file.
17541         * lib/math.in.h (ceilf): New declaration.
17542         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
17543         HAVE_DECL_CEILF.
17544         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
17545         HAVE_DECL_CEILF.
17546         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
17547
17548 2007-10-04  Bruno Haible  <bruno@clisp.org>
17549
17550         * modules/floorl-tests: New file.
17551         * tests/test-floorl.c: New file.
17552
17553         * modules/floorl: New file.
17554         * lib/floorl.c: Replace entire file.
17555         * m4/floorl.m4: New file.
17556         * lib/math.in.h (floorl): Replace declaration.
17557         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
17558         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
17559         * doc/functions/floorl.texi: Mention the 'floorl' module.
17560         * modules/mathl (Files): Remove lib/floorl.c.
17561         (Depends-on): Add floorl.
17562
17563 2007-10-04  Bruno Haible  <bruno@clisp.org>
17564
17565         * modules/floorf-tests: New file.
17566         * tests/test-floorf.c: New file.
17567
17568         * modules/floorf: New file.
17569         * lib/floor.c: New file.
17570         * lib/floorf.c: New file.
17571         * m4/floorf.m4: New file.
17572         * lib/math.in.h (floorf): New declaration.
17573         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
17574         HAVE_DECL_FLOORF.
17575         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
17576         HAVE_DECL_FLOORF.
17577         * doc/functions/floorf.texi: Mention the 'floorf' module.
17578
17579 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
17580             Bruno Haible  <bruno@clisp.org>
17581
17582         Advertise for the Git server instead of the CVS server.
17583         * doc/gnulib-intro.texi (Steady Development): Mention the Git
17584         repository instead of the CVS one.
17585         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
17586         about all VCS systems generically.
17587         * doc/gnulib.texi (Introduction): Capitalize `Git'.
17588
17589 2007-10-04  Bruno Haible  <bruno@clisp.org>
17590
17591         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
17592         means.
17593         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
17594
17595 2007-10-04  Bruno Haible  <bruno@clisp.org>
17596
17597         * modules/truncl-tests: New file.
17598         * tests/test-truncl.c: New file.
17599
17600         * modules/truncl: New file.
17601         * lib/truncl.c: New file.
17602         * m4/truncl.m4: New file.
17603         * lib/math.in.h (truncl): New declaration.
17604         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
17605         HAVE_DECL_TRUNCL.
17606         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
17607         HAVE_DECL_TRUNCL.
17608         * doc/functions/truncl.texi: Mention the 'truncl' module.
17609
17610 2007-10-04  Bruno Haible  <bruno@clisp.org>
17611
17612         * modules/truncf-tests: New file.
17613         * tests/test-truncf.c: New file.
17614
17615         * modules/truncf: New file.
17616         * lib/trunc.c: Make paramerizable through USE_* macros.
17617         * lib/truncf.c: New file.
17618         * m4/truncf.m4: New file.
17619         * lib/math.in.h (truncf): New declaration.
17620         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
17621         HAVE_DECL_TRUNCF.
17622         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
17623         HAVE_DECL_TRUNCF.
17624         * doc/functions/truncf.texi: Mention the 'truncf' module.
17625
17626 2007-10-03  Bruno Haible  <bruno@clisp.org>
17627
17628         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
17629         augmentation also for tests modules.
17630         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
17631         * modules/atexit-tests (Makefile.am): Likewise.
17632         * modules/binary-io-tests (Makefile.am): Likewise.
17633         * modules/c-strcase-tests (Makefile.am): Likewise.
17634         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
17635         * modules/canonicalize-tests (Makefile.am): Likewise.
17636         * modules/closein-tests (Makefile.am): Likewise.
17637         * modules/fprintf-posix-tests (Makefile.am): Likewise.
17638         * modules/freadahead-tests (Makefile.am): Likewise.
17639         * modules/fseek-tests (Makefile.am): Likewise.
17640         * modules/fseeko-tests (Makefile.am): Likewise.
17641         * modules/ftell-tests (Makefile.am): Likewise.
17642         * modules/ftello-tests (Makefile.am): Likewise.
17643         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
17644         * modules/isnanl-tests (Makefile.am): Likewise.
17645         * modules/lseek-tests (Makefile.am): Likewise.
17646         * modules/mbscasecmp-tests (Makefile.am): Likewise.
17647         * modules/mbscasestr-tests (Makefile.am): Likewise.
17648         * modules/mbschr-tests (Makefile.am): Likewise.
17649         * modules/mbscspn-tests (Makefile.am): Likewise.
17650         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
17651         * modules/mbspbrk-tests (Makefile.am): Likewise.
17652         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
17653         * modules/mbsrchr-tests (Makefile.am): Likewise.
17654         * modules/mbsspn-tests (Makefile.am): Likewise.
17655         * modules/mbsstr-tests (Makefile.am): Likewise.
17656         * modules/printf-posix-tests (Makefile.am): Likewise.
17657         * modules/snprintf-posix-tests (Makefile.am): Likewise.
17658         * modules/sprintf-posix-tests (Makefile.am): Likewise.
17659         * modules/tsearch-tests (Makefile.am): Likewise.
17660         * modules/uniname/uniname-tests (Makefile.am): Likewise.
17661         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
17662         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
17663         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
17664         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
17665         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
17666         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
17667         * modules/vprintf-posix-tests (Makefile.am): Likewise.
17668         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
17669         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
17670         * modules/xstrtoimax-tests (Makefile.am): Likewise.
17671         * modules/xstrtol-tests (Makefile.am): Likewise.
17672         * modules/xstrtoumax-tests (Makefile.am): Likewise.
17673         * modules/yesno-tests (Makefile.am): Likewise.
17674
17675 2007-10-03  Bruno Haible  <bruno@clisp.org>
17676
17677         * modules/trunc-tests: New file.
17678         * tests/test-trunc.c: New file.
17679
17680         * modules/trunc: New file.
17681         * lib/trunc.c: New file.
17682         * m4/trunc.m4: New file.
17683         * lib/math.in.h (trunc): New declaration.
17684         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
17685         HAVE_DECL_TRUNC.
17686         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
17687         HAVE_DECL_TRUNC.
17688         * doc/functions/trunc.texi: Mention the 'trunc' module.
17689
17690 2007-10-03  Bruno Haible  <bruno@clisp.org>
17691
17692         * tests/test-fpending.c: New file, mostly copied
17693         from coreutils/lib/t-fpending.c.
17694         * modules/fpending-tests: New file.
17695
17696 2007-10-03  Bruno Haible  <bruno@clisp.org>
17697
17698         Port the stdio extensions to QNX (untested).
17699         * lib/fseterr.c (fseterr): Add support for QNX.
17700         * lib/fbufmode.c (fbufmode): Likewise.
17701         * lib/freadable.c (freadable): Likewise.
17702         * lib/fwritable.c (fwritable): Likewise.
17703         * lib/freading.c (freading): Likewise.
17704         * lib/fwriting.c (fwriting): Likewise.
17705         * lib/freadahead.c (freadahed): Likewise.
17706         * lib/fpurge.c (fpurge): Likewise.
17707         * lib/fseeko.c (rpl_fseeko): Likewise.
17708
17709 2007-10-03  Bruno Haible  <bruno@clisp.org>
17710             Jim Meyering  <jim@meyering.net>
17711             Eric Blake  <ebb9@byu.net>
17712
17713         * doc/relocatable.texi: Use @command instead of @program.
17714
17715 2007-10-02  Jim Meyering  <jim@meyering.net>
17716
17717         Perform one more "_.h" -> ".in.h" substitution.
17718         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
17719         instead of unistd_.h here, too.
17720
17721 2007-10-01  Bruno Haible  <bruno@clisp.org>
17722
17723         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
17724         Needed for the alloca-opt module.
17725
17726 2007-09-30  Bruno Haible  <bruno@clisp.org>
17727
17728         * lib/alloca.in.h: Renamed from lib/alloca_.h.
17729         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
17730         alloca_.h.
17731         * lib/argz.in.h: Renamed from lib/argz_.h.
17732         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
17733         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
17734         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
17735         byteswap_.h.
17736         * lib/dirent.in.h: Renamed from lib/dirent_.h.
17737         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
17738         dirent_.h.
17739         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
17740         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
17741         fcntl_.h.
17742         * lib/float.in.h: Renamed from lib/float_.h.
17743         * modules/float (Files, Makefile.am): Use float.in.h instead of
17744         float_.h.
17745         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
17746         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
17747         fnmatch_.h.
17748         * lib/getopt.in.h: Renamed from lib/getopt_.h.
17749         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
17750         getopt_.h.
17751         * lib/glob.in.h: Renamed from lib/glob_.h.
17752         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
17753         * lib/iconv.in.h: Renamed from lib/iconv_.h.
17754         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
17755         iconv_.h.
17756         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
17757         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
17758         inttypes_.h.
17759         * lib/locale.in.h: Renamed from lib/locale_.h.
17760         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
17761         locale_.h.
17762         * lib/math.in.h: Renamed from lib/math_.h.
17763         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
17764         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
17765         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
17766         of netinet_in_.h. Add dependency.
17767         * lib/poll.in.h: Renamed from lib/poll_.h.
17768         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
17769         * lib/search.in.h: Renamed from lib/search_.h.
17770         * modules/search (Files, Makefile.am): Use search.in.h instead of
17771         search_.h.
17772         * lib/signal.in.h: Renamed from lib/signal_.h.
17773         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
17774         _signal.h.
17775         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
17776         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
17777         stdbool_.h.
17778         * lib/stdint.in.h: Renamed from lib/stdint_.h.
17779         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
17780         stdint_.h.
17781         * lib/stdio.in.h: Renamed from lib/stdio_.h.
17782         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
17783         stdio_.h.
17784         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
17785         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
17786         stdlib_.h.
17787         * lib/string.in.h: Renamed from lib/string_.h.
17788         * modules/string (Files, Makefile.am): Use string.in.h instead of
17789         string_.h.
17790         * doc/gnulib-tool.texi (Initial import): Update.
17791         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
17792         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
17793         of sys_select_.h. Add dependency.
17794         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
17795         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
17796         of sys_socket_.h.
17797         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
17798         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
17799         sys_stat_.h.
17800         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
17801         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
17802         sys_time_.h.
17803         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
17804         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
17805         sysexits_.h.
17806         * lib/time.in.h: Renamed from lib/time_.h.
17807         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
17808         * lib/unistd.in.h: Renamed from lib/unistd_.h.
17809         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
17810         unistd_.h.
17811         * lib/wchar.in.h: Renamed from lib/wchar_.h.
17812         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
17813         wchar_.h.
17814         * lib/wctype.in.h: Renamed from lib/wctype_.h.
17815         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
17816         wctype_.h.
17817         * build-aux/bootstrap (slurp): Update.
17818         * lib/.cppi-disable: Update.
17819
17820 2007-09-30  Bruno Haible  <bruno@clisp.org>
17821
17822         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
17823         Needed on BeOS.
17824
17825 2007-09-30  Bruno Haible  <bruno@clisp.org>
17826
17827         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
17828
17829 2007-09-29  Bruno Haible  <bruno@clisp.org>
17830
17831         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
17832
17833 2007-09-29  Bruno Haible  <bruno@clisp.org>
17834
17835         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
17836         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
17837         * build-aux/install-reloc: Compile also areadlink.c.
17838         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
17839
17840 2007-09-29  Bruno Haible  <bruno@clisp.org>
17841
17842         * gnulib-tool (func_emit_initmacro_done): Indentation.
17843
17844 2007-09-29  Bruno Haible  <bruno@clisp.org>
17845
17846         * README: Add CVS checkout update instructions.
17847         Info from Bob Proulx <bob@proulx.com>.
17848
17849 2007-09-28  Eric Blake  <ebb9@byu.net>
17850
17851         Provide move-if-change.
17852         * build-aux/move-if-change: New file, based on best practice
17853         rather than any canonical upstream location.
17854
17855 2007-09-28  Jim Meyering  <jim@meyering.net>
17856
17857         Fix canonicalize loop-detection corner case.
17858         Do not attempt to stat the symlink values stored via seen_triple.
17859         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
17860         on linux-2.6.18, (but not 2.6.22).
17861         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
17862         triple_compare.  The former compares dev,ino,filename, while the latter
17863         would actually stat dirname(filename) when dev and ino were equal.
17864         * lib/hash-triple.c: Install <string.h>.
17865         (STREQ): Define.
17866         (triple_compare_ino_str): New function.
17867         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
17868
17869 2007-09-28  Eric Blake  <ebb9@byu.net>
17870
17871         Enforce that AC_REPLACE_FUNCS files exist.
17872         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
17873         override check for typos.
17874
17875         Fix test-closein on Solaris 10.
17876         * tests/test-closein.c (main): Don't assume stdin can be inherited
17877         closed on all systems.
17878         * tests/test-closein.sh: Likewise.
17879         Reported by Piotr Tarnowski.
17880
17881 2007-09-28  Jim Meyering  <jim@meyering.net>
17882
17883         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
17884
17885 2007-09-27  Jim Meyering  <jim@meyering.net>
17886
17887         canonicalize: Avoid a false-positive cycle failure.
17888         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
17889         Sort.  Remove cycle-check.
17890         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
17891         not cycle-check.h.
17892         (seen_triple): New function.
17893         (canonicalize_filename_mode): Use it instead of cycle-check.
17894         * tests/test-canonicalize.c: Add a test for this bug.
17895         * tests/test-canonicalize.sh: Set up and run the test.
17896
17897         New module, file-set, from coreutils.
17898         * modules/file-set: Define it.
17899         * lib/file-set.c, lib/file-set.h: Implement.
17900
17901         New module, hash-triple, from coreutils.
17902         * modules/hash-triple: Define it.
17903         * lib/hash-triple.c, lib/hash-triple.h: Implement.
17904
17905 2007-09-25  Eric Blake  <ebb9@byu.net>
17906
17907         Fix strerror on Interix.
17908         * lib/string_.h (strerror): Declare replacement.
17909         * doc/functions/strerror.texi (strerror): Document the Interix
17910         shortcoming.
17911         * modules/string (Makefile.am): Support new hooks.
17912         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
17913         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
17914         gl_FUNC_STRERROR_SEPARATE.
17915         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
17916         * lib/strerror.c (rpl_strerror): Provide replacement.
17917         * modules/strerror (Depends-on): Add string.
17918         (configure.ac): Detect use of module.
17919         * tests/test-strerror.c: New file.
17920         * modules/strerror-tests: New test module.
17921         * modules/argp (Depends-on): Add strerror.
17922         * modules/error (Depends-on): Likewise.
17923         Reported by Martin Koeppe.
17924
17925 2007-09-24  Bruno Haible  <bruno@clisp.org>
17926
17927         * README: Update git instructions.
17928
17929 2007-09-24  Eric Blake  <ebb9@byu.net>
17930
17931         Revert fpending breakage from 2007-09-08.
17932         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
17933         __fpending.c.
17934
17935 2007-09-24  Jim Meyering  <jim@meyering.net>
17936
17937         filenamecat.c: Add a test.
17938         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
17939         showing how the function works when DIR is the empty string.
17940
17941 2007-09-21  Simon Josefsson  <simon@josefsson.org>
17942
17943         * tests/test-canonicalize.sh: Turn on executable bit.
17944
17945 2007-09-19  Eric Blake  <ebb9@byu.net>
17946
17947         * README: Update CVS instructions.
17948
17949 2007-09-18  Bruno Haible  <bruno@clisp.org>
17950
17951         * modules/areadlink: New file.
17952         * lib/areadlink.h (areadlink): New declaration.
17953         * lib/areadlink.c: New file, based on lib/xreadlink.c.
17954
17955 2007-09-17  Jim Meyering  <jim@meyering.net>
17956
17957         * lib/savewd.c (ESTALE) [!defined]: Define.
17958         Reported to be required on Interix by Martin Koeppe.
17959
17960 2007-09-17  Bruno Haible  <bruno@clisp.org>
17961
17962         * gnulib-tool (func_version): Use $version.
17963
17964 2007-09-16  Bruno Haible  <bruno@clisp.org>
17965
17966         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
17967         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
17968         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
17969         Reported by Greg Schafer <gschafer@zip.com.au>.
17970
17971 2007-09-15  Bruno Haible  <bruno@clisp.org>
17972
17973         * gnulib-tool (sed): Try a little harder to make bash understand the
17974         alias.
17975         Reported by Bruce Korb <bruce.korb@gmail.com>.
17976
17977 2007-09-13  Eric Blake  <ebb9@byu.net>
17978
17979         * ChangeLog: Remove conflict markers.
17980
17981 2007-09-13  Simon Josefsson  <simon@josefsson.org>
17982
17983         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
17984         Reported by Bruno Haible <bruno@clisp.org>.
17985
17986 2007-09-12  Bruno Haible  <bruno@clisp.org>
17987
17988         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
17989         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
17990         is not defined.
17991
17992 2007-09-12  Eric Blake  <ebb9@byu.net>
17993
17994         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
17995         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
17996         Autoconf definition.
17997         * modules/euidaccess (Depends-on): Add extensions, for
17998         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
17999         * modules/fnmatch (Depends-on): Likewise.
18000         * modules/getaddrinfo (Depends-on): Likewise.
18001         * modules/getdelim (Depends-on): Likewise.
18002         * modules/getline (Depends-on): Likewise.
18003         * modules/getsubopt (Depends-on): Likewise.
18004         * modules/gettext (Depends-on): Likewise.
18005         * modules/group-member (Depends-on): Likewise.
18006         * modules/mbchar (Depends-on): Likewise.
18007         * modules/memmem (Depends-on): Likewise.
18008         * modules/mempcpy (Depends-on): Likewise.
18009         * modules/memrchr (Depends-on): Likewise.
18010         * modules/pagealign_alloc (Depends-on): Likewise.
18011         * modules/readutmp (Depends-on): Likewise.
18012         * modules/stpcpy (Depends-on): Likewise.
18013         * modules/stpncpy (Depends-on): Likewise.
18014         * modules/strchrnul (Depends-on): Likewise.
18015         * modules/strndup (Depends-on): Likewise.
18016         * modules/strsep (Depends-on): Likewise.
18017         * modules/strverscmp (Depends-on): Likewise.
18018         * modules/vasprintf (Depends-on): Likewise.
18019         * modules/wcwidth (Depends-on): Likewise.
18020         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
18021         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
18022         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
18023         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
18024         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
18025         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
18026         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
18027         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
18028         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
18029         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
18030         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18031         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
18032         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
18033         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
18034         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
18035         * m4/readutmp.m4 (gl_READUTMP): Likewise.
18036         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
18037         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
18038         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
18039         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
18040         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
18041         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
18042         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
18043         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
18044         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
18045         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
18046         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
18047         so that lock.m4 can be used in gettext without extensions module.
18048
18049 2007-09-11  Bruno Haible  <bruno@clisp.org>
18050
18051         * m4/isc-posix.m4: Remove file.
18052         Suggested by Eric Blake.
18053
18054 2007-09-11  Eric Blake  <ebb9@byu.net>
18055
18056         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
18057
18058 2007-09-10  Bruno Haible  <bruno@clisp.org>
18059
18060         * posix-modules: Fix typo in error message.
18061         Reported by Matt <mkraai@beckman.com>.
18062
18063 2007-09-09  Bruno Haible  <bruno@clisp.org>
18064
18065         * doc/functions/getdelim.texi: Update list of platforms lacking the
18066         function.
18067         * doc/functions/getline.texi: Likewise.
18068
18069 2007-09-09  Jim Meyering  <jim@meyering.net>
18070
18071         * lib/hash.c (hash_initialize): Detect calloc failure.
18072         Reported by Bruno Haible.
18073
18074 2007-09-09  Bruno Haible  <bruno@clisp.org>
18075
18076         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
18077         malloc or realloc fails.
18078
18079 2007-09-09  Bruno Haible  <bruno@clisp.org>
18080
18081         * modules/getcwd (Depends-on): Add malloc-posix.
18082         * modules/glob (Depends-on): Likewise.
18083         * modules/putenv (Depends-on): Likewise.
18084         * modules/strdup (Depends-on): Likewise.
18085         * modules/getdelim (Depends-on): Add realloc-posix.
18086         * modules/read-file (Depends-on): Likewise.
18087
18088 2007-09-09  Bruno Haible  <bruno@clisp.org>
18089
18090         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
18091         (gl_FUNC_MALLOC_POSIX): Require it.
18092         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
18093         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
18094         * modules/realloc (Files): Add m4/malloc.m4.
18095         * modules/calloc (Files): Likewise.
18096
18097 2007-09-09  Bruno Haible  <bruno@clisp.org>
18098
18099         * modules/malloc-posix: New file.
18100         * modules/malloc (Depends-on): Add malloc-posix.
18101         * lib/malloc.c: Include errno.h.
18102         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
18103         and a POSIX-compatible malloc into a single function. Set ENOMEM
18104         when returning NULL.
18105         * m4/malloc.m4: New file.
18106         * doc/functions/malloc.texi: Mention the malloc-posix module.
18107         * lib/stdlib_.h (malloc): New declaration.
18108         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
18109         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
18110         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
18111         and HAVE_MALLOC_POSIX.
18112
18113 2007-09-09  Bruno Haible  <bruno@clisp.org>
18114
18115         * modules/realloc-posix: New file.
18116         * modules/realloc (Depends-on): Add realloc-posix.
18117         * lib/realloc.c: Include errno.h.
18118         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
18119         and a POSIX-compatible realloc into a single function. Set ENOMEM
18120         when returning NULL.
18121         * m4/realloc.m4: New file.
18122         * doc/functions/realloc.texi: Mention the realloc-posix module.
18123         * lib/stdlib_.h (realloc): New declaration.
18124         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
18125         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
18126         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
18127         and HAVE_REALLOC_POSIX.
18128
18129 2007-09-09  Bruno Haible  <bruno@clisp.org>
18130
18131         * modules/calloc-posix: New file.
18132         * modules/calloc (Depends-on): Add calloc-posix.
18133         * lib/calloc.c: Include errno.h.
18134         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
18135         and a POSIX-compatible calloc into a single function. Set ENOMEM
18136         when returning NULL.
18137         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
18138         * doc/functions/calloc.texi: Mention the calloc-posix module.
18139         * lib/stdlib_.h (calloc): New declaration.
18140         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
18141         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
18142         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
18143         and HAVE_CALLOC_POSIX.
18144
18145 2007-09-09  Bruno Haible  <bruno@clisp.org>
18146
18147         Allow for modules to show an arbitrary notice.
18148         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
18149         * gnulib-tool: New option --extract-notice.
18150         (func_usage): Document it.
18151         (sed_extract_prog): Update.
18152         (func_get_notice): New function.
18153         (func_modules_notice): New function.
18154         (func_import, func_create_testdir): Invoke it.
18155         Suggested by Jim Meyering.
18156
18157 2007-09-09  Bruno Haible  <bruno@clisp.org>
18158
18159         * gnulib-tool: New options --verbose, --quiet.
18160         (func_usage): Document them.
18161         (verbose): New variable.
18162         (func_execute_command): New function.
18163         (func_import): Don't show the module list and the file list if
18164         $verbose < 0.
18165         (func_create_testdir): Likewise. Use func_execute_command.
18166         (func_create_megatestdir): Use func_execute_command.
18167
18168 2007-09-08  Bruno Haible  <bruno@clisp.org>
18169
18170         * gnulib-tool (func_import): Prefer rsync over wget when available,
18171         for fetching the PO files.
18172
18173 2007-09-08  Bruno Haible  <bruno@clisp.org>
18174
18175         * posix-modules: New file. Portions copied from gnulib-tool.
18176         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
18177
18178 2007-09-08  Jim Meyering  <jim@meyering.net>
18179
18180         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
18181         * lib/fpending.h: Rename from __fpending.h.
18182         * lib/fpending.c: Rename from __fpending.c.
18183         Include "fpending.h", not "__fpending.h".
18184         * lib/__fpending.h, lib/__fpending.c: Remove files.
18185         * modules/fpending (Files): Reflect new file names.
18186         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
18187
18188 2007-09-08  Bruno Haible  <bruno@clisp.org>
18189
18190         * m4/inttypes-h.m4: Remove stub file.
18191
18192 2007-09-07  Simon Josefsson  <simon@josefsson.org>
18193
18194         * doc/headers/stdint.texi: Discuss #include_next issue.
18195
18196 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
18197
18198         * build-aux/bootstrap: Remove obsolete comment about wget --help.
18199
18200 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18201
18202         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
18203         in variable name.
18204
18205 2007-09-03  Jim Meyering  <jim@meyering.net>
18206
18207         New module: git-version-gen.
18208         * modules/git-version-gen: New file.
18209
18210         Import changes from coreutils for bootstrap script.
18211
18212         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
18213
18214         bootstrap: uses rsync to download the .po files
18215         * build-aux/bootstrap (po_download_command_format): New global.
18216         (download_po_files): Use rsync.
18217         (update_po_files): Don't remove .po files after download,
18218         so future rsync runs can take advantage of the copies.
18219
18220         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
18221
18222         Solve the unnecessary-.po-file-regeneration problem once and for all.
18223         * build-aux/bootstrap (download_po_files): New function, renamed from
18224         get_translations.  Now, downloads, but doesn't update LINGUAS.
18225         (update_po_files): New function.
18226
18227         bootstrap: Ignore more.
18228         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
18229         uniwidth to e.g., lib/.gitignore.
18230         (slurp): Handle the sys_stat_.h -> sys mapping, too.
18231
18232         * build-aux/bootstrap: New setting: vc_ignore.
18233         (insert_sorted_if_absent): Create $file if absent.
18234         Adapt to new, possibly empty, list: $vc_ignore.
18235
18236         bootstrap: generate more ignorable names
18237         * build-aux/bootstrap (slurp): When generating ignorable names,
18238         also map .sin to .sed, .gperf to .c, and .y to .c.
18239
18240 2007-09-03  Jim Meyering  <jim@meyering.net>
18241
18242         * build-aux/git-version-gen: New file, from coreutils.  For details, see
18243         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
18244
18245 2007-09-02  Bruno Haible  <bruno@clisp.org>
18246
18247         Fix mis-recognition of 'mcs' on QNX 6.
18248         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
18249         output contains the string "Mono".
18250         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
18251         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
18252
18253 2007-09-01  Bruno Haible  <bruno@clisp.org>
18254
18255         Fix collision between uniwidth/* and linebreak modules.
18256         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
18257         u32_width): Remove declarations.
18258         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
18259         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
18260         streq3, streq2, streq1, streq0): Remove functions.
18261         (STREQ): Remove macro.
18262         (is_cjk_encoding): Remove function.
18263         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
18264         (uc_width, u8_width, u16_width, u32_width): Remove functions.
18265         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
18266         * NEWS: Document the change.
18267
18268 2007-09-01  Bruno Haible  <bruno@clisp.org>
18269
18270         * lib/streq.h: Add double-inclusion guard.
18271
18272 2007-09-01  Karl Berry  <karl@gnu.org>
18273
18274         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
18275
18276 2007-08-28  Jim Meyering  <jim@meyering.net>
18277
18278         Rename mreadlink_with_size to areadlink_with_size.
18279         * NEWS: Document the change.
18280         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
18281         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
18282         * lib/mreadlink.h: Rename this to...
18283         * lib/areadlink.h: ...this.
18284         * modules/mreadlink-with-size: Rename this to...
18285         * modules/areadlink-with-size: ...this.
18286         * lib/canonicalize.c: Reflect the renaming.
18287         * modules/canonicalize: Likewise.
18288
18289 2007-08-26  Bruno Haible  <bruno@clisp.org>
18290
18291         * gnulib-tool (func_import): When deciding which files to remove,
18292         consider also dangling symbolic links.
18293         Reported by Eric Blake.
18294
18295 2007-08-26  Bruno Haible  <bruno@clisp.org>
18296
18297         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
18298
18299 2007-08-23  Simon Josefsson  <simon@josefsson.org>
18300
18301         * lib/readline.c: Don't include getline.h, the prototype is now
18302         found in stdio.h.
18303
18304 2007-08-23  Jim Meyering  <jim@meyering.net>
18305
18306         Getdelim touchup.
18307         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
18308         around the funlockfile call, since funlockfile never sets errno.
18309         Don't set errno upon failed realloc.
18310
18311 2007-08-22  Eric Blake  <ebb9@byu.net>
18312
18313         Getline touchups.
18314         * lib/getdelim.c (getdelim): Revert regression that required *n to
18315         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
18316         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
18317         getdelim, rather than whether implementation is missing.
18318         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
18319         * lib/stdio_.h (getline): Also declare if replacement is
18320         required.
18321         * doc/functions/getdelim.texi: New file.
18322         * doc/functions/getline.texi: Likewise.
18323         * doc/gnulib.texi (Function Substitutes): Add new files.
18324         Reported by Bruno Haible.
18325
18326 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
18327
18328         * users.txt: Add Guile.
18329
18330 2007-08-22  Eric Blake  <ebb9@byu.net>
18331
18332         * tests/test-getdelim.c (main): Use remove, not unlink.
18333         * tests/test-getline.c (main): Likewise.
18334
18335         Move getline and getdelim into stdio.h, per POSIX 200x.
18336         * modules/getline (Files): Remove getline.h.
18337         (Depends-on): Add stdio.
18338         (configure.ac): Add module indicator.
18339         * modules/getdelim (Files): Remove getdelim.h.
18340         (Depends-on): Add stdio.
18341         (configure.ac): Add module indicator.
18342         * modules/stdio (Makefile.am): Work with new indicators.
18343         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
18344         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
18345         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
18346         * lib/getdelim.h: Delete.
18347         * lib/getline.h: Delete.
18348         * lib/stdio_.h (getdelim, getline): Declare.
18349         * modules/getdelim-tests: New module.
18350         * modules/getline-tests: Likewise.
18351         * tests/test-getdelim.c: New file.
18352         * tests/test-getline.c: Likewise.
18353         * NEWS: Document the change.
18354         * lib/getline.c: Update choice of header.
18355         * lib/csharpcomp.c: Likewise.
18356         * lib/getpass.c: Likewise.
18357         * lib/javacomp.c: Likewise.
18358         * lib/javaversion.c: Likewise.
18359         * lib/yesno.c: Likewise.
18360         * lib/getdelim.c: Likewise.
18361         (getdelim): Set errno on failure, and avoid memory leak.
18362
18363 2007-08-19  Bruno Haible  <bruno@clisp.org>
18364
18365         * modules/closein (Depends-on): Add freadahead.
18366         * lib/closein.c: Include freadahead.h.
18367         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
18368         is zero.
18369
18370 2007-08-19  Bruno Haible  <bruno@clisp.org>
18371
18372         * modules/freadahead-tests: New file.
18373         * tests/test-freadahead.sh: New file.
18374         * tests/test-freadahead.c: New file.
18375
18376         * modules/freadahead: New file.
18377         * lib/freadahead.h: New file.
18378         * lib/freadahead.c: New file.
18379         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
18380         fbufmode, fpurge, freadable, fwritable.
18381
18382 2007-08-19  Eric Blake  <ebb9@byu.net>
18383
18384         Test yesno in combination with closein.
18385         * lib/yesno.c (yesno): Document use of stdin.
18386         * modules/yesno-tests (Files): New module.
18387         * tests/test-yesno.c (main): New file.
18388         * tests/test-yesno.sh: Likewise.
18389
18390 2007-08-19  Bruno Haible  <bruno@clisp.org>
18391
18392         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
18393         * lib/fseeko.c (rpl_fseeko): Likewise.
18394         * lib/fseterr.c (fseterr): Likewise.
18395
18396 2007-08-19  Bruno Haible  <bruno@clisp.org>
18397
18398         * tests/test-lseek.c (main): Disable a test for BeOS.
18399         * doc/functions/lseek.texi: Document the BeOS bug.
18400
18401 2007-08-19  Bruno Haible  <bruno@clisp.org>
18402             Eric Blake  <ebb9@byu.net>
18403
18404         * lib/lseek.c: Include <sys/stat.h>.
18405         (rpl_lseek): Add workaround code also for Unix platforms.
18406         Needed for BeOS.
18407         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
18408         * doc/functions/lseek.texi: Document BeOS definiency.
18409
18410 2007-08-18  Bruno Haible  <bruno@clisp.org>
18411
18412         * modules/fstrcmp-tests: New file.
18413         * tests/test-fstrcmp.c: New file.
18414
18415 2007-08-18  Bruno Haible  <bruno@clisp.org>
18416
18417         * modules/fstrcmp: New file, from GNU gettext with modifications.
18418         * lib/fstrcmp.h: New file, from GNU gettext.
18419         * lib/fstrcmp.c: New file, from GNU gettext.
18420         * MODULES.html.sh (String handling): Add fstrcmp.
18421
18422 2007-08-18  Bruno Haible  <bruno@clisp.org>
18423
18424         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
18425         'bool'.
18426         (diag, compareseq): Remove const from the ctxt argument.
18427         (USE_HEURISTIC): Undefine at the end.
18428
18429 2007-08-18  Jim Meyering  <jim@meyering.net>
18430
18431         New file: lib/idcache.h
18432         * NEWS: Mention the addition.
18433         * modules/idcache (Files): Add lib/idcache.h
18434         * lib/idcache.c: Include "idcache.h".
18435         Don't include <sys/types.h>.
18436         Add a FIXME comment.
18437         Move file-scoped "static" declarations to the top.
18438         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
18439
18440 2007-08-17  Bruno Haible  <bruno@clisp.org>
18441         and Paul Eggert  <eggert@cs.ucla.edu>
18442
18443         * MODULES.html.sh: Add diffseq.
18444         * modules/diffseq: New file.
18445         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
18446         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
18447
18448 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
18449
18450         Import changes from coreutils for bootstrap script.
18451
18452         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
18453
18454         * build-aux/bootstrap (slurp): Work even in environments where
18455         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
18456         current code does not slurp files whose names start with ".", and
18457         this looks like it might be a troublesome area.
18458
18459         2007-07-11  Jim Meyering  <jim@meyering.net>
18460
18461         If there's a GPL vN copyright comment, require that N == 3.
18462
18463         2007-07-08  Jim Meyering  <jim@meyering.net>
18464
18465         Run the coreutils-specific code only if tests/Makefile.am.in exists.
18466         * build-aux/bootstrap (mam_template): Move definition out of loop.
18467
18468         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
18469
18470         * build-aux/bootstrap (symlink_to_dir): Rename function from
18471         symlink_to_gnulib.  Add a directory parameter.  Update all
18472         callers.
18473         (cp_mark_as_generated): Also check for -- and link to -- files in
18474         gl/.
18475
18476         2007-07-08  Jim Meyering  <jim@meyering.net>
18477
18478         Adapt to deeper hierarchy in gnulib.
18479         * build-aux/bootstrap (symlink_to_dir): If the destination
18480         directory doesn't exist, create it. This is required at least for
18481         "lib/uniwidth/cjk.h".
18482
18483         2007-05-15  Jim Meyering  <jim@meyering.net>
18484
18485         * build-aux/bootstrap: Now that generated Makefile.am files
18486         are no longer under version control, they must be created at
18487         bootstrap time.
18488
18489 2007-08-14  Ben Pfaff  <blp@gnu.org>
18490
18491         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
18492
18493 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
18494
18495         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
18496         given the changes below.
18497         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
18498         even on hosts that have padding bits beyond the supported 64.
18499
18500 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
18501
18502         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
18503         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
18504         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
18505         depends on it.
18506         (xstrtol_error): Remove.
18507         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
18508         but with a different signature.
18509         (ATTRIBUTE_NORETURN, __attribute__): New macros.
18510         * lib/xstrtol-error.c: Include exitfail.h.
18511         (xstrtol_fatal): New function, with a different signature from the
18512         old xstrtol_error, so that the caller need not worry about passing
18513         in an exit status, or about storage management of the option argument.
18514         (xstrtol_error): Now a static function.  Redo signature to
18515         implement xstrtol_fatal.  Output the correct number of hyphens in
18516         front of the option so that the caller need not worry about
18517         storage management.
18518         (N_): New macro.
18519         (_): Remove; not used now.
18520         * modules/xstrtol: Depend on getopt.
18521         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
18522         of old STRTOL_FATAL_ERROR macro.
18523         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
18524         of test program.
18525         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
18526         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
18527
18528 2007-08-08  Eric Blake  <ebb9@byu.net>
18529
18530         * lib/xstrtol-error.c: Add missing include.
18531
18532         Move xstrtol messages into gnulib domain, when --pobase is used.
18533         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
18534         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
18535         * modules/xstrtol (Files): Distribute new file.
18536         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
18537         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
18538         * tests/test-xstrtol.c: ...into new file.
18539         * tests/test-xstrtoul.c: Also test xstrtoul.
18540         * tests/test-xstrtoimax.c: Also test xstrtoimax.
18541         * tests/test-xstrtoumax.c: Also test xstrtoumax.
18542         * tests/test-xstrtol.sh: Drive the tests.
18543         * tests/test-xstrtoimax.sh: Likewise.
18544         * tests/test-xstrtoumax.sh: Likewise.
18545         * modules/xstrtol-tests: New module.
18546         * modules/xstrtoimax-tests: Likewise.
18547         * modules/xstrtoumax-tests: Likewise.
18548
18549 2007-08-08  Jim Meyering  <jim@meyering.net>
18550
18551         New function: mfile_name_concat.
18552         * lib/filenamecat.c (mfile_name_concat): New function, just like
18553         file_name_concat, but return NULL upon failure rather than exiting
18554         with a diagnostic.
18555         * lib/filenamecat.h: Declare it.
18556
18557 2007-08-07  Bruno Haible  <bruno@clisp.org>
18558
18559         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
18560         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
18561         warning from gcc.
18562         Reported by Eric Blake.
18563
18564 2007-08-07  Simon Josefsson  <simon@josefsson.org>
18565
18566         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
18567         * modules/crypto/arcfour (License): Likewise.
18568         * modules/crypto/des-tests (License): Likewise.
18569         * modules/crypto/gc-arctwo-tests (License): Likewise.
18570         * modules/crypto/gc-des-tests (License): Likewise.
18571         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
18572         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
18573         * modules/crypto/gc-md2-tests (License): Likewise.
18574         * modules/crypto/gc-md4-tests (License): Likewise.
18575         * modules/crypto/gc-md5-tests (License): Likewise.
18576         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
18577         * modules/crypto/gc-rijndael-tests (License): Likewise.
18578         * modules/crypto/gc-sha1-tests (License): Likewise.
18579         * modules/crypto/gc-tests (License): Likewise.
18580         * modules/crypto/hmac-md5 (License): Likewise.
18581         * modules/crypto/hmac-sha1 (License): Likewise.
18582         * modules/crypto/md2-tests (License): Likewise.
18583         * modules/crypto/md4-tests (License): Likewise.
18584         * modules/crypto/md5 (License): Likewise.
18585         * modules/crypto/rijndael (License): Likewise.
18586         * modules/crypto/sha1 (License): Likewise.
18587         * modules/memxor (License): Likewise.
18588
18589 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
18590         and Bruno Haible  <bruno@clisp.org>
18591
18592         * NEWS: Describe interface changes to human, xstrtol.
18593         * lib/human.h: Include <xstrtol.h>.
18594         (human_options): Return enum strtol_error, not int.  Remove
18595         bool arg; take int * instead.
18596         * lib/human.c: Don't include "gettext.h".
18597         (_): Remove; no longer used.
18598         Don't include <xstrtol.h>, since human.h does it.
18599         (human_options): Adjust to abovementioned interface changes.
18600         Do not report error to stderr; that's now the caller's
18601         responsibility.
18602         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
18603         interface change.
18604         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
18605         Str, Argument_type_string.  All uses changed.  Put " argument"
18606         in diagnostics to make them clearer.  Change wording of suffix
18607         message for clarity.
18608         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
18609         Argument_type_string.
18610         (STRTOL_FATAL_WARN): Remove; no longer used.
18611         * modules/human (Depends-on): Remove gettext-h.
18612
18613 2007-08-06  Simon Josefsson  <simon@josefsson.org>
18614
18615         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
18616
18617 2007-07-31  Bruno Haible  <bruno@clisp.org>
18618
18619         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
18620         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
18621         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
18622
18623 2007-07-31  Bruno Haible  <bruno@clisp.org>
18624
18625         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
18626         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
18627
18628 2007-07-30  Bruno Haible  <bruno@clisp.org>
18629
18630         * modules/base64 (License): Use the synonymous term "LGPLv2+".
18631         * modules/c-ctype (License): Likewise.
18632         * modules/c-strcase (License): Likewise.
18633         * modules/check-version (License): Likewise.
18634         * modules/iconv (License): Likewise.
18635         * modules/iconv_open (License): Likewise.
18636         * modules/read-file (License): Likewise.
18637         * modules/striconv (License): Likewise.
18638         * modules/strverscmp (License): Likewise.
18639         * modules/vasprintf (License): Likewise.
18640         * modules/crypto/des (License): Likewise.
18641         * modules/crypto/gc (License): Likewise.
18642         * modules/crypto/gc-arcfour (License): Likewise.
18643         * modules/crypto/gc-arctwo (License): Likewise.
18644         * modules/crypto/gc-des (License): Likewise.
18645         * modules/crypto/gc-hmac-md5 (License): Likewise.
18646         * modules/crypto/gc-hmac-sha1 (License): Likewise.
18647         * modules/crypto/gc-md2 (License): Likewise.
18648         * modules/crypto/gc-md4 (License): Likewise.
18649         * modules/crypto/gc-md5 (License): Likewise.
18650         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
18651         * modules/crypto/gc-random (License): Likewise.
18652         * modules/crypto/gc-rijndael (License): Likewise.
18653         * modules/crypto/gc-sha1 (License): Likewise.
18654         * modules/crypto/md2 (License): Likewise.
18655         * modules/crypto/md4 (License): Likewise.
18656
18657 2007-07-30  Jim Meyering  <jim@meyering.net>
18658
18659         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
18660         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
18661         it has valid stat data.  This bug would cause du not to count the
18662         sizes of inaccessible directories.
18663         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
18664         in <http://bugzilla.redhat.com/250077>.
18665
18666 2007-07-25  Peter O'Gorman  <peter@pogma.com>
18667             Bruno Haible  <bruno@clisp.org>
18668
18669         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
18670         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
18671         #include_next, gives a diagnostic about it, but reports no error in
18672         the exit code.
18673         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
18674
18675 2007-07-24  Ben Pfaff  <blp@gnu.org>
18676
18677         Improve name: "count-one-bits" is better than "popcount".
18678         * MODULES.html.sh: Update name.
18679         * lib/popcount.h: Renamed lib/count-one-bits.h.
18680         (popcount): Renamed count_one_bits.
18681         (popcountl): Renamed count_one_bits_l.
18682         (popcountll): Renamed count_one_bits_ll.
18683         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
18684         * modules/popcount: Renamed module/count-one-bits.
18685         * modules/popcount-tests: Renamed module/count-one-bits-tests.
18686         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
18687
18688 2007-07-23  Ben Pfaff  <blp@gnu.org>
18689
18690         * lib/popcount.h (popcount32): Reduce size of constants, to allow
18691         better code generation, and add U to large constants to avoid
18692         warnings, in non-GCC case.
18693         Suggested by Bruno Haible.
18694
18695 2007-07-23  Ben Pfaff  <blp@gnu.org>
18696
18697         * lib/popcount.h: Use verify_true instead of if...abort.
18698         * modules/popcount: Depend on verify module.
18699         Suggested by Jim Meyering.
18700
18701 2007-07-23  Bruno Haible  <bruno@clisp.org>
18702
18703         * gnulib-tool (func_import): Create a .cvsignore file also when the
18704         directory is not yet in CVS but the toplevel directory is. When
18705         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
18706         Reported by Karl Berry.
18707
18708 2007-07-22  Ben Pfaff  <blp@gnu.org>
18709
18710         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
18711         case.
18712         Suggested by Eric Blake.
18713
18714 2007-07-22  Ben Pfaff  <blp@gnu.org>
18715
18716         New module: popcount.
18717         * MODULES.html.sh: Add popcount.
18718         * modules/popcount: New file.
18719         * modules/popcount-tests: New file.
18720         * tests/test-popcount.c: New file.
18721         * lib/popcount.h: New file.
18722         * m4/popcount.m4: New file.
18723
18724 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
18725
18726         * build-aux/announce-gen: Update to GPLv3.
18727
18728         * build-aux/config.guess: Update from config.
18729
18730 2007-07-21  Bruno Haible  <bruno@clisp.org>
18731
18732         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
18733         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
18734
18735 2007-07-20  Jim Meyering  <jim@meyering.net>
18736
18737         * check-module: Diagnose a self-dependency.
18738
18739 2007-07-19  Bruno Haible  <bruno@clisp.org>
18740
18741         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
18742         empty.
18743         Reported by Eric Blake.
18744
18745 2007-07-18  Bruno Haible  <bruno@clisp.org>
18746
18747         * gnulib-tool: New options --po-base, --po-domain.
18748         (func_usage): Document them.
18749         (pobase, po_domain): New variables.
18750         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
18751         DEFAULT_TEXT_DOMAIN.
18752         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
18753         (func_import): Consider pobase and po_domain. Create a po/ directory.
18754         (func_create_testdir): Set pobase and po_domain to empty.
18755         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
18756         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
18757
18758 2007-07-18  Bruno Haible  <bruno@clisp.org>
18759
18760         * gnulib-tool (func_get_automake_snippet): Synthesize also an
18761         EXTRA_DIST augmentation for files in build-aux/.
18762
18763 2007-07-16  Bruno Haible  <bruno@clisp.org>
18764
18765         * modules/lseek (License): Use the synonymous term "LGPLv2+".
18766         * modules/getdelim (License): Likewise.
18767
18768 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
18769
18770         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
18771         * modules/d-type (License): Likewise.
18772         * modules/extensions (License): Likewise.
18773         * modules/fnmatch (License): Likewise.
18774         * modules/fseeko (License): Likewise.
18775         * modules/getaddrinfo (License): Likewise.
18776         * modules/getline (License): Likewise.
18777         * modules/getlogin_r (License): Likewise.
18778         * modules/getpass (License): Likewise.
18779         * modules/gettimeofday (License): Likewise.
18780         * modules/glob (License): Likewise.
18781         * modules/inet_ntop (License): Likewise.
18782         * modules/malloc (License): Likewise.
18783         * modules/malloca (License): Likewise.
18784         * modules/memmem (License): Likewise.
18785         * modules/mempcpy (License): Likewise.
18786         * modules/memset (License): Likewise.
18787         * modules/minmax (License): Likewise.
18788         * modules/mktime (License): Likewise.
18789         * modules/netinet_in (License): Likewise.
18790         * modules/pathmax (License): Likewise.
18791         * modules/poll (License): Likewise.
18792         * modules/regex (License): Likewise.
18793         * modules/snprintf (License): Likewise.
18794         * modules/stdbool (License): Likewise.
18795         * modules/stdint (License): Likewise.
18796         * modules/stdio (License): Likewise.
18797         * modules/strcase (License): Likewise.
18798         * modules/strcasestr (License): Likewise.
18799         * modules/strdup (License): Likewise.
18800         * modules/string (License): Likewise.
18801         * modules/strndup (License): Likewise.
18802         * modules/strnlen (License): Likewise.
18803         * modules/strpbrk (License): Likewise.
18804         * modules/strptime (License): Likewise.
18805         * modules/strsep (License): Likewise.
18806         * modules/sys_select (License): Likewise.
18807         * modules/sys_socket (License): Likewise.
18808         * modules/sys_stat (License): Likewise.
18809         * modules/sys_time (License): Likewise.
18810         * modules/time (License): Likewise.
18811         * modules/time_r (License): Likewise.
18812         * modules/timegm (License): Likewise.
18813         * modules/unistd (License): Likewise.
18814         * modules/vsnprintf (License): Likewise.
18815         * modules/wctype (License): Likewise.
18816
18817 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18818
18819         * modules/argz (License): LGPLv2+.
18820
18821 2007-07-15  Karl Berry  <karl@gnu.org>
18822
18823         * doc/gnulib.texi: revise node structure per new fdl.texi.
18824
18825 2007-07-14  Bruno Haible  <bruno@clisp.org>
18826
18827         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
18828         the output file.
18829         * lib/uniname/uninames.h: Regenerated.
18830
18831 2007-07-14  Karl Berry  <karl@gnu.org>
18832
18833         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
18834         omitting sectioning and index commands.
18835
18836 2007-07-13  Bruno Haible  <bruno@clisp.org>
18837
18838         New gnulib-tool option --more-symlinks.
18839         * gnulib-tool (func_usage): Document --more-symlinks.
18840         (do_copyrights): New variable.
18841         Recognize option --more-symlinks.
18842         (func_import): Don't add a copyright notice transform to
18843         sed_transform_lib_file if do_copyrights is empty.
18844
18845 2007-07-13  Bruno Haible  <bruno@clisp.org>
18846
18847         * lib/vasnprintf.c (decimal_point_char): Define also if
18848         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
18849         && !NEED_PRINTF_DIRECTIVE_A.
18850         Reported by Clemens Koller <clemens.koller@anagramm.de> via
18851         Gary V. Vaughan <gary@gnu.org>.
18852
18853 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
18854
18855         * lib/inttypes_.h: Undo previous change, since it was fixed
18856         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
18857
18858 2007-07-13  Bruno Haible  <bruno@clisp.org>
18859
18860         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
18861         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
18862
18863 2007-07-13  Jim Meyering  <jim@meyering.net>
18864
18865         df: Don't fail for Tru64's "file-on-file mount".
18866         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
18867         so we fall through and use statfs instead.  Details here:
18868         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
18869         Reported by Albert Chin.
18870
18871 2007-07-13  Bruno Haible  <bruno@clisp.org>
18872
18873         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
18874         * modules/configmake (License): Likewise.
18875         * modules/gettext (License): Likewise.
18876         * modules/gettext-h (License): Likewise.
18877         * modules/include_next (License): Likewise.
18878         * modules/link-warning (License): Likewise.
18879         * modules/localcharset (License): Likewise.
18880         * modules/localename (License): Likewise.
18881         * modules/lock (License): Likewise.
18882         * modules/relocatable-lib-lgpl (License): Likewise.
18883         * modules/size_max (License): Likewise.
18884         * modules/vasnprintf (License): Likewise.
18885         * modules/wchar (License): Likewise.
18886         * modules/xsize (License): Likewise.
18887
18888 2007-07-13  Bruno Haible  <bruno@clisp.org>
18889
18890         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
18891         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
18892
18893 2007-07-12  Bruno Haible  <bruno@clisp.org>
18894
18895         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
18896         in the modules files.
18897
18898 2007-07-11  Karl Berry  <karl@gnu.org>
18899
18900         * MODULES.html.sh (func_module): use
18901          sed -e '\|^'"${includefile}"'$|d'
18902          instead of /.../d, to avoid errors on $includefile's containing /.
18903
18904 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
18905
18906         * gnulib-tool (func_import): Avoid duplication of --avoid
18907         statements
18908         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
18909         names to `_' in variable names.
18910
18911 2007-07-10  Eric Blake  <ebb9@byu.net>
18912
18913         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
18914         * NEWS: Document this change.
18915
18916 2007-07-08  Bruno Haible  <bruno@clisp.org>
18917
18918         Update to Unicode 5.0.
18919         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
18920         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
18921         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
18922         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
18923         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
18924         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
18925         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
18926         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
18927         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
18928         U+10A3F, U+1D242..U+1D244.
18929         (nonspacing_table_ind): Update.
18930         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
18931         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
18932
18933 2007-07-08  Bruno Haible  <bruno@clisp.org>
18934
18935         Update to Unicode 5.0.
18936         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
18937         code transform. Extend the name index field of unicode_name_to_code and
18938         unicode_code_to_name from 16 to 24 bits.
18939         * lib/uniname/uniname.c (unicode_character_name,
18940         unicode_name_character): Add the range 0x12xxx to the code transform.
18941         * lib/uniname/uninames.h: Regenerated.
18942         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
18943
18944 2007-07-07  Bruno Haible  <bruno@clisp.org>
18945
18946         * modules/wcwidth-tests: New file.
18947         * tests/test-wcwidth.c: New file.
18948
18949         Work around MacOS X wcwidth() bug.
18950         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
18951         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
18952         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
18953         original wcwidth in non-UTF-8 locales.
18954         * modules/wcwidth (Depends-on): Add localcharset, streq,
18955         uniwidth/width.
18956         * doc/functions/wcwidth.texi: Update.
18957
18958 2007-07-07  Bruno Haible  <bruno@clisp.org>
18959
18960         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
18961         (wcwidth): New declaration.
18962         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
18963         macros.
18964         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
18965         here. Prepare for creating <wchar.h> unconditionally.
18966         * modules/wchar (Depends-on): Add link-warning.
18967         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
18968         REPLACE_WCWIDTH, and GL_LINK_WARNING.
18969         * lib/wcwidth.h: Remove file.
18970         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
18971         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
18972         * modules/wcwidth (Files): Remove lib/wcwidth.h.
18973         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
18974         (Include): Replace wcwidth.h with <wchar.h>.
18975         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
18976         * lib/mbchar.h: Don't include wcwidth.h.
18977         * lib/mbswidth.c: Likewise.
18978         * NEWS: Mention the change.
18979
18980 2007-07-07  Bruno Haible  <bruno@clisp.org>
18981
18982         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
18983         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
18984         definition with an external declaration.
18985         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
18986         defined as a function. Remove AC_C_INLINE requirement.
18987         * modules/wcwidth (Files): Add lib/wcwidth.c.
18988         (Makefile.am): Remove redundant statement.
18989
18990 2007-07-07  Bruno Haible  <bruno@clisp.org>
18991
18992         * MODULES.html.sh (Unicode string functions): Add the new modules.
18993
18994         * tests/uniwidth/test-u32-strwidth.c: New file.
18995         * modules/uniwidth/u32-strwidth-tests: New file.
18996
18997         * lib/uniwidth/u32-strwidth.c: New file.
18998         * modules/uniwidth/u32-strwidth: New file.
18999
19000         * tests/uniwidth/test-u16-strwidth.c: New file.
19001         * modules/uniwidth/u16-strwidth-tests: New file.
19002
19003         * lib/uniwidth/u16-strwidth.c: New file.
19004         * modules/uniwidth/u16-strwidth: New file.
19005
19006         * tests/uniwidth/test-u8-strwidth.c: New file.
19007         * modules/uniwidth/u8-strwidth-tests: New file.
19008
19009         * lib/uniwidth/u8-strwidth.c: New file.
19010         * modules/uniwidth/u8-strwidth: New file.
19011
19012         * tests/uniwidth/test-u32-width.c: New file.
19013         * modules/uniwidth/u32-width-tests: New file.
19014
19015         * lib/uniwidth/u32-width.c: New file.
19016         * modules/uniwidth/u32-width: New file.
19017
19018         * tests/uniwidth/test-u16-width.c: New file.
19019         * modules/uniwidth/u16-width-tests: New file.
19020
19021         * lib/uniwidth/u16-width.c: New file.
19022         * modules/uniwidth/u16-width: New file.
19023
19024         * tests/uniwidth/test-u8-width.c: New file.
19025         * modules/uniwidth/u8-width-tests: New file.
19026
19027         * lib/uniwidth/u8-width.c: New file.
19028         * modules/uniwidth/u8-width: New file.
19029
19030         * tests/uniwidth/test-uc_width.c: New file.
19031         * modules/uniwidth/width-tests: New file.
19032
19033         * lib/uniwidth/width.c: New file, from GNU libiconv.
19034         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
19035         * modules/uniwidth/width: New file.
19036
19037         * lib/uniwidth.h: New file, from GNU libiconv.
19038         * modules/uniwidth/base: New file.
19039
19040 2007-07-07  Bruno Haible  <bruno@clisp.org>
19041
19042         * lib/uniname.h: New file, from GNU gettext.
19043         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
19044         * lib/uniname/uninames.h: New file, from GNU gettext.
19045         * lib/uniname/uniname.c: New file, from GNU gettext.
19046         * tests/uniname/test-uninames.sh: New file.
19047         * tests/uniname/test-uninames.c: New file, from GNU gettext.
19048         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
19049         * modules/uniname/base: New file.
19050         * modules/uniname/uniname: New file.
19051         * modules/uniname/uniname-tests: New file.
19052         * MODULES.html.sh (Unicode string functions): Add the new modules.
19053
19054 2007-07-06  Bruno Haible  <bruno@clisp.org>
19055
19056         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
19057
19058 2007-07-06  Bruno Haible  <bruno@clisp.org>
19059
19060         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
19061         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
19062         includes <cygwin/sys_time.h> which includes <sys/select.h> which
19063         include <sys/time.h>.
19064         Reported by Eric Blake.
19065
19066 2007-07-06  Eric Blake  <ebb9@byu.net>
19067
19068         Fix testing canonicalize on cygwin.
19069         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
19070         Revert patch from 2007-06-19.
19071         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
19072         canonicalize module is also in use.
19073         * tests/test-canonicalize.c: New file.
19074         * tests/test-canonicalize.sh: Likewise.
19075         * modules/canonicalize-tests: Likewise.
19076
19077 2007-07-06  Jim Meyering  <jim@meyering.net>
19078
19079         * lib/getugroups.c (getugroups): Detect getgrent failure.
19080         Adjust comment to reflect reality: this function may return -1.
19081
19082 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
19083
19084         * build-aux/bootstrap (TP_URL,get_translations): Update to use
19085         the new TP address.
19086         (usage): Fix typo
19087         (gnulib_mk): New variable.
19088
19089 2007-07-05  Jim Meyering  <jim@meyering.net>
19090
19091         Don't let endgrent clobber errno, no matter how improbable.
19092         * lib/getugroups.c (getugroups): Save and restore errno around
19093         endgrent call.
19094
19095         Close the group DB even when failing with 2^31 or more members.
19096         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
19097
19098 2007-07-04  Jim Meyering  <jim@meyering.net>
19099
19100         * lib/getugroups.h: New file.
19101         * lib/getugroups.c: Include "getugroups.h".
19102         Remove uses of "register" keyword.
19103         Move local variable, "cp", down into scope where used.
19104         Give "username" parameter the "const" attribute.
19105         * modules/getugroups (Files): Add lib/getugroups.h
19106
19107 2007-07-04  Karl Berry  <karl@gnu.org>
19108
19109         * MODULES.html.sh (func_all_modules): Complete rename of
19110         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
19111
19112 2007-07-02  Bruno Haible  <bruno@clisp.org>
19113
19114         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
19115         mode, when inttypes.h comes from gnulib.
19116         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
19117
19118 2007-07-02  Simon Josefsson  <simon@josefsson.org>
19119
19120         * NEWS: Mention lgpl module name change.
19121
19122         * modules/lgpl-2.1: Renamed from lgpl.
19123
19124         * NEWS: Mention gpl module name change.
19125
19126         * modules/gpl-3.0: New file, based on gpl-2.0.
19127
19128         * modules/gpl-2.0: Renamed from gpl.
19129
19130         * modules/gpl: Fix filename, doc/gpl.texi is now found at
19131         doc/gpl-2.0.texi.
19132
19133 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
19134
19135         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
19136         #define __STDC_LIMIT_MACROS temporarily while including
19137         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
19138         Problem reported by Joel E. Denny in
19139         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
19140
19141 2007-07-01  Bruno Haible  <bruno@clisp.org>
19142
19143         * lib/unistdio.h: New file.
19144         * lib/unistdio/u-asnprintf.h: New file.
19145         * lib/unistdio/u-asprintf.h: New file.
19146         * lib/unistdio/u-printf-args.c: New file.
19147         * lib/unistdio/u-printf-args.h: New file.
19148         * lib/unistdio/u-printf-parse.h: New file.
19149         * lib/unistdio/u-snprintf.h: New file.
19150         * lib/unistdio/u-sprintf.h: New file.
19151         * lib/unistdio/u-vasprintf.h: New file.
19152         * lib/unistdio/u-vsnprintf.h: New file.
19153         * lib/unistdio/u-vsprintf.h: New file.
19154         * lib/unistdio/ulc-asnprintf.c: New file.
19155         * lib/unistdio/ulc-asprintf.c: New file.
19156         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
19157         * lib/unistdio/ulc-printf-parse.c: New file.
19158         * lib/unistdio/ulc-snprintf.c: New file.
19159         * lib/unistdio/ulc-sprintf.c: New file.
19160         * lib/unistdio/ulc-vasnprintf.c: New file.
19161         * lib/unistdio/ulc-vasprintf.c: New file.
19162         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
19163         * lib/unistdio/ulc-vsnprintf.c: New file.
19164         * lib/unistdio/ulc-vsprintf.c: New file.
19165         * lib/unistdio/u8-asnprintf.c: New file.
19166         * lib/unistdio/u8-asprintf.c: New file.
19167         * lib/unistdio/u8-printf-parse.c: New file.
19168         * lib/unistdio/u8-snprintf.c: New file.
19169         * lib/unistdio/u8-sprintf.c: New file.
19170         * lib/unistdio/u8-vasnprintf.c: New file.
19171         * lib/unistdio/u8-vasprintf.c: New file.
19172         * lib/unistdio/u8-vsnprintf.c: New file.
19173         * lib/unistdio/u8-vsprintf.c: New file.
19174         * lib/unistdio/u8-u8-asnprintf.c: New file.
19175         * lib/unistdio/u8-u8-asprintf.c: New file.
19176         * lib/unistdio/u8-u8-snprintf.c: New file.
19177         * lib/unistdio/u8-u8-sprintf.c: New file.
19178         * lib/unistdio/u8-u8-vasnprintf.c: New file.
19179         * lib/unistdio/u8-u8-vasprintf.c: New file.
19180         * lib/unistdio/u8-u8-vsnprintf.c: New file.
19181         * lib/unistdio/u8-u8-vsprintf.c: New file.
19182         * lib/unistdio/u16-asnprintf.c: New file.
19183         * lib/unistdio/u16-asprintf.c: New file.
19184         * lib/unistdio/u16-printf-parse.c: New file.
19185         * lib/unistdio/u16-snprintf.c: New file.
19186         * lib/unistdio/u16-sprintf.c: New file.
19187         * lib/unistdio/u16-vasnprintf.c: New file.
19188         * lib/unistdio/u16-vasprintf.c: New file.
19189         * lib/unistdio/u16-vsnprintf.c: New file.
19190         * lib/unistdio/u16-vsprintf.c: New file.
19191         * lib/unistdio/u16-u16-asnprintf.c: New file.
19192         * lib/unistdio/u16-u16-asprintf.c: New file.
19193         * lib/unistdio/u16-u16-snprintf.c: New file.
19194         * lib/unistdio/u16-u16-sprintf.c: New file.
19195         * lib/unistdio/u16-u16-vasnprintf.c: New file.
19196         * lib/unistdio/u16-u16-vasprintf.c: New file.
19197         * lib/unistdio/u16-u16-vsnprintf.c: New file.
19198         * lib/unistdio/u16-u16-vsprintf.c: New file.
19199         * lib/unistdio/u32-asnprintf.c: New file.
19200         * lib/unistdio/u32-asprintf.c: New file.
19201         * lib/unistdio/u32-printf-parse.c: New file.
19202         * lib/unistdio/u32-snprintf.c: New file.
19203         * lib/unistdio/u32-sprintf.c: New file.
19204         * lib/unistdio/u32-vasnprintf.c: New file.
19205         * lib/unistdio/u32-vasprintf.c: New file.
19206         * lib/unistdio/u32-vsnprintf.c: New file.
19207         * lib/unistdio/u32-vsprintf.c: New file.
19208         * lib/unistdio/u32-u32-asnprintf.c: New file.
19209         * lib/unistdio/u32-u32-asprintf.c: New file.
19210         * lib/unistdio/u32-u32-snprintf.c: New file.
19211         * lib/unistdio/u32-u32-sprintf.c: New file.
19212         * lib/unistdio/u32-u32-vasnprintf.c: New file.
19213         * lib/unistdio/u32-u32-vasprintf.c: New file.
19214         * lib/unistdio/u32-u32-vsnprintf.c: New file.
19215         * lib/unistdio/u32-u32-vsprintf.c: New file.
19216         * tests/unistdio/test-ulc-asnprintf1.c: New file.
19217         * tests/unistdio/test-ulc-asnprintf1.h: New file.
19218         * tests/unistdio/test-ulc-printf1.h: New file.
19219         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
19220         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
19221         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
19222         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
19223         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
19224         * tests/unistdio/test-ulc-vasprintf1.c: New file.
19225         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
19226         * tests/unistdio/test-ulc-vsprintf1.c: New file.
19227         * tests/unistdio/test-u8-asnprintf1.c: New file.
19228         * tests/unistdio/test-u8-asnprintf1.h: New file.
19229         * tests/unistdio/test-u8-printf1.h: New file.
19230         * tests/unistdio/test-u8-vasnprintf1.c: New file.
19231         * tests/unistdio/test-u8-vasnprintf2.c: New file.
19232         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
19233         * tests/unistdio/test-u8-vasnprintf3.c: New file.
19234         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
19235         * tests/unistdio/test-u8-vasprintf1.c: New file.
19236         * tests/unistdio/test-u8-vsnprintf1.c: New file.
19237         * tests/unistdio/test-u8-vsprintf1.c: New file.
19238         * tests/unistdio/test-u16-asnprintf1.c: New file.
19239         * tests/unistdio/test-u16-asnprintf1.h: New file.
19240         * tests/unistdio/test-u16-printf1.h: New file.
19241         * tests/unistdio/test-u16-vasnprintf1.c: New file.
19242         * tests/unistdio/test-u16-vasnprintf2.c: New file.
19243         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
19244         * tests/unistdio/test-u16-vasnprintf3.c: New file.
19245         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
19246         * tests/unistdio/test-u16-vasprintf1.c: New file.
19247         * tests/unistdio/test-u16-vsnprintf1.c: New file.
19248         * tests/unistdio/test-u16-vsprintf1.c: New file.
19249         * tests/unistdio/test-u32-asnprintf1.c: New file.
19250         * tests/unistdio/test-u32-asnprintf1.h: New file.
19251         * tests/unistdio/test-u32-printf1.h: New file.
19252         * tests/unistdio/test-u32-vasnprintf1.c: New file.
19253         * tests/unistdio/test-u32-vasnprintf2.c: New file.
19254         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
19255         * tests/unistdio/test-u32-vasnprintf3.c: New file.
19256         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
19257         * tests/unistdio/test-u32-vasprintf1.c: New file.
19258         * tests/unistdio/test-u32-vsnprintf1.c: New file.
19259         * tests/unistdio/test-u32-vsprintf1.c: New file.
19260         * modules/unistdio/base: New file.
19261         * modules/unistdio/u-printf-args: New file.
19262         * modules/unistdio/ulc-asnprintf: New file.
19263         * modules/unistdio/ulc-asprintf: New file.
19264         * modules/unistdio/ulc-fprintf: New file.
19265         * modules/unistdio/ulc-printf-parse: New file.
19266         * modules/unistdio/ulc-snprintf: New file.
19267         * modules/unistdio/ulc-sprintf: New file.
19268         * modules/unistdio/ulc-vasnprintf: New file.
19269         * modules/unistdio/ulc-vasprintf: New file.
19270         * modules/unistdio/ulc-vfprintf: New file.
19271         * modules/unistdio/ulc-vsnprintf: New file.
19272         * modules/unistdio/ulc-vsprintf: New file.
19273         * modules/unistdio/u8-asnprintf: New file.
19274         * modules/unistdio/u8-asprintf: New file.
19275         * modules/unistdio/u8-printf-parse: New file.
19276         * modules/unistdio/u8-snprintf: New file.
19277         * modules/unistdio/u8-sprintf: New file.
19278         * modules/unistdio/u8-vasnprintf: New file.
19279         * modules/unistdio/u8-vasprintf: New file.
19280         * modules/unistdio/u8-vsnprintf: New file.
19281         * modules/unistdio/u8-vsprintf: New file.
19282         * modules/unistdio/u8-u8-asnprintf: New file.
19283         * modules/unistdio/u8-u8-asprintf: New file.
19284         * modules/unistdio/u8-u8-snprintf: New file.
19285         * modules/unistdio/u8-u8-sprintf: New file.
19286         * modules/unistdio/u8-u8-vasnprintf: New file.
19287         * modules/unistdio/u8-u8-vasprintf: New file.
19288         * modules/unistdio/u8-u8-vsnprintf: New file.
19289         * modules/unistdio/u8-u8-vsprintf: New file.
19290         * modules/unistdio/u16-asnprintf: New file.
19291         * modules/unistdio/u16-asprintf: New file.
19292         * modules/unistdio/u16-printf-parse: New file.
19293         * modules/unistdio/u16-snprintf: New file.
19294         * modules/unistdio/u16-sprintf: New file.
19295         * modules/unistdio/u16-vasnprintf: New file.
19296         * modules/unistdio/u16-vasprintf: New file.
19297         * modules/unistdio/u16-vsnprintf: New file.
19298         * modules/unistdio/u16-vsprintf: New file.
19299         * modules/unistdio/u16-u16-asnprintf: New file.
19300         * modules/unistdio/u16-u16-asprintf: New file.
19301         * modules/unistdio/u16-u16-snprintf: New file.
19302         * modules/unistdio/u16-u16-sprintf: New file.
19303         * modules/unistdio/u16-u16-vasnprintf: New file.
19304         * modules/unistdio/u16-u16-vasprintf: New file.
19305         * modules/unistdio/u16-u16-vsnprintf: New file.
19306         * modules/unistdio/u16-u16-vsprintf: New file.
19307         * modules/unistdio/u32-asnprintf: New file.
19308         * modules/unistdio/u32-asprintf: New file.
19309         * modules/unistdio/u32-printf-parse: New file.
19310         * modules/unistdio/u32-snprintf: New file.
19311         * modules/unistdio/u32-sprintf: New file.
19312         * modules/unistdio/u32-vasnprintf: New file.
19313         * modules/unistdio/u32-vasprintf: New file.
19314         * modules/unistdio/u32-vsnprintf: New file.
19315         * modules/unistdio/u32-vsprintf: New file.
19316         * modules/unistdio/u32-u32-asnprintf: New file.
19317         * modules/unistdio/u32-u32-asprintf: New file.
19318         * modules/unistdio/u32-u32-snprintf: New file.
19319         * modules/unistdio/u32-u32-sprintf: New file.
19320         * modules/unistdio/u32-u32-vasnprintf: New file.
19321         * modules/unistdio/u32-u32-vasprintf: New file.
19322         * modules/unistdio/u32-u32-vsnprintf: New file.
19323         * modules/unistdio/u32-u32-vsprintf: New file.
19324         * modules/unistdio/ulc-asnprintf-tests: New file.
19325         * modules/unistdio/ulc-vasnprintf-tests: New file.
19326         * modules/unistdio/ulc-vasprintf-tests: New file.
19327         * modules/unistdio/ulc-vsnprintf-tests: New file.
19328         * modules/unistdio/ulc-vsprintf-tests: New file.
19329         * modules/unistdio/u8-asnprintf-tests: New file.
19330         * modules/unistdio/u8-vasnprintf-tests: New file.
19331         * modules/unistdio/u8-vasprintf-tests: New file.
19332         * modules/unistdio/u8-vsnprintf-tests: New file.
19333         * modules/unistdio/u8-vsprintf-tests: New file.
19334         * modules/unistdio/u16-asnprintf-tests: New file.
19335         * modules/unistdio/u16-vasnprintf-tests: New file.
19336         * modules/unistdio/u16-vasprintf-tests: New file.
19337         * modules/unistdio/u16-vsnprintf-tests: New file.
19338         * modules/unistdio/u16-vsprintf-tests: New file.
19339         * modules/unistdio/u32-asnprintf-tests: New file.
19340         * modules/unistdio/u32-vasnprintf-tests: New file.
19341         * modules/unistdio/u32-vasprintf-tests: New file.
19342         * modules/unistdio/u32-vsnprintf-tests: New file.
19343         * modules/unistdio/u32-vsprintf-tests: New file.
19344         * MODULES.html.sh (Unicode string functions): Add the new modules.
19345
19346 2007-07-01  Bruno Haible  <bruno@clisp.org>
19347
19348         * lib/sprintf.c (sprintf): Limit the available length estimation,
19349         to avoid address wraparound.
19350         * lib/vsprintf.c (vsprintf): Likewise.
19351         * modules/sprintf-posix (Dependencies): Add stdint.
19352         * modules/vsprintf-posix (Dependencies): Likewise.
19353
19354 2007-07-01  Bruno Haible  <bruno@clisp.org>
19355
19356         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
19357         Windows PATH as well. Conservative double-quoting. Comments.
19358
19359 2007-07-01  Bruno Haible  <bruno@clisp.org>
19360             Eric Blake  <ebb9@byu.net>
19361             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19362
19363         * gnulib-tool (self_abspathname): Fix algorithm to cope with
19364         empty components in $PATH, denoting '.'.
19365
19366 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19367
19368         * gnulib-tool: Fix indentation.
19369         (func_create_megatestdir): Likewise.
19370         Report by Bruno Haible.
19371
19372 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19373
19374         Sync from Automake.
19375         * build-aux/gnupload: Fix shell portability issues with for loops.
19376         Report by Karl Berry.
19377
19378 2007-06-29  Simon Josefsson  <simon@josefsson.org>
19379
19380         * build-aux/maint.mk (POURL): Use translationproject.org.
19381
19382 2007-06-27  Simon Josefsson  <simon@josefsson.org>
19383             Bruno Haible  <bruno@clisp.org>
19384
19385         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
19386         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
19387         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
19388         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
19389         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
19390
19391 2007-06-27  Bruno Haible  <bruno@clisp.org>
19392
19393         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
19394         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
19395
19396 2007-06-26  Karl Berry  <karl@gnu.org>
19397
19398         * MODULES.html.sh: remove xreadlink-with-size.
19399
19400 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
19401
19402         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
19403         method that I hope also handles the double-include problem noted
19404         by Bruno Haible in
19405         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
19406
19407 2007-06-23  Bruno Haible  <bruno@clisp.org>
19408
19409         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19410         Don't let the 'mostlyclean' target fail if the last subdirectory could
19411         not be removed.
19412         Reported by Karl Berry.
19413
19414 2007-06-23  Bruno Haible  <bruno@clisp.org>
19415
19416         * gnulib-tool (echo): Add a speedier workaround for ksh.
19417         * tests/test-echo.sh: Likewise.
19418
19419 2007-06-23  Bruno Haible  <bruno@clisp.org>
19420
19421         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
19422         * tests/test-echo.sh: Likewise.
19423
19424 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19425
19426         * gnulib-tool (IFS): Initialize early, so we don't set it to
19427         empty later.
19428         (self_abspathname): Rewrite algorithm to set it, reindent.
19429         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
19430         (func_create_megatestdir): Merge some sed scripts.
19431
19432 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
19433
19434         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
19435         exposed by Sun Studio 11 cc on Solaris 8.
19436
19437 2007-06-22  Bruno Haible  <bruno@clisp.org>
19438
19439         * gnulib-tool (echo): Ensure the echo primitive does not interpret
19440         backslashes.
19441         * tests/test-echo.sh: New file.
19442
19443 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19444
19445         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
19446         simplify `sed_replace_build_aux' scripts, they are portable but
19447         echoing them with `echo' is not.
19448         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
19449
19450 2007-06-21  Karl Berry  <karl@gnu.org>
19451
19452         * config/srclist.txt: guess we can't handle the licenses via
19453         srclist at the moment.
19454
19455 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
19456
19457         * MODULES.html.sh: Add include_next.
19458         * modules/include_next: New file.
19459
19460 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
19461
19462         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
19463         INCLUDE_NEXT.
19464         (gl_CHECK_NEXT_HEADERS): New macro.
19465         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
19466         the obsolescent gl_ABSOLUTE_HEADER.
19467         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
19468         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
19469         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
19470         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
19471         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
19472         * m4/math_h.m4 (gl_MATH_H): Likewise.
19473         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
19474         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
19475         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
19476         * m4/stdint.m4 (gl_STDINT_H): Likewise.
19477         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
19478         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
19479         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
19480         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
19481         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
19482         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
19483         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
19484         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
19485         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
19486         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
19487         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
19488         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
19489         * m4/inttypes.m4 (gl_INTTYPES_H): Define
19490         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
19491         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
19492         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
19493         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
19494         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
19495         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
19496         * lib/float_.h: Likewise.
19497         * lib/inttypes_.h: Likewise.
19498         * lib/math_.h: Likewise.
19499         * lib/search_.h: Likewise.
19500         * lib/signal_.h: Likewise.
19501         * lib/stdint_.h: Likewise.
19502         * lib/stdio_.h: Likewise.
19503         * lib/stdlib_.h: Likewise.
19504         * lib/string_.h: Likewise.
19505         * lib/sys_stat_.h: Likewise.
19506         * lib/sys_time_.h: Likewise.
19507         * lib/time_.h: Likewise.
19508         * lib/unistd_.h: Likewise.
19509         * lib/wchar_.h: Likewise.
19510         * lib/wctype_.h: Likewise.
19511         * lib/dirent_.h: Likewise.
19512         * lib/iconv_.h: Likewise.
19513         * lib/locale_.h: Likewise.
19514         * lib/netinet_in_.h: Likewise.
19515         * lib/sys_select_.h: Likewise.
19516         * lib/sys_socket_.h: Likewise.
19517         * lib/sysexits_.h: Likewise.
19518         * modules/fcntl (Depends-on): Depend on include_next, not
19519         absolute_header.
19520         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
19521         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
19522         * modules/fchdir: Likewise.
19523         * modules/float: Likewise.
19524         * modules/iconv_open: Likewise.
19525         * modules/inttypes: Likewise.
19526         * modules/locale: Likewise.
19527         * modules/math: Likewise.
19528         * modules/netinet_in: Likewise.
19529         * modules/search: Likewise.
19530         * modules/signal: Likewise.
19531         * modules/stdint: Likewise.
19532         * modules/stdio: Likewise.
19533         * modules/stdlib: Likewise.
19534         * modules/string: Likewise.
19535         * modules/sys_select: Likewise.
19536         * modules/sys_socket: Likewise.
19537         * modules/sys_stat: Likewise.
19538         * modules/sys_time: Likewise.
19539         * modules/sysexits: Likewise.
19540         * modules/time: Likewise.
19541         * modules/unistd: Likewise.
19542         * modules/wchar: Likewise.
19543         * modules/wctype: Likewise.
19544         * modules/sys_stat: Change maintainer to "all".
19545         * modules/unistd: Likewise.
19546
19547 2007-06-20  Karl Berry  <karl@gnu.org>
19548
19549         * config/srclist.txt: track www changes in license files.
19550
19551 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
19552
19553         * build-aux/bootstrap: Remove stray dot.
19554         Make sure build_aux settings are honored when linking
19555         gnulib_extra_files.
19556
19557 2007-06-19  Eric Blake  <ebb9@byu.net>
19558
19559         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
19560         Allow compilation on cygwin.
19561
19562 2007-06-19  Jim Meyering  <jim@meyering.net>
19563
19564         xreadlink-with-size: Remove module.  No longer used.
19565         Ex-callers now use xreadlink or mreadlink-with-size.
19566         * modules/xreadlink-with-size: Remove module.
19567         * lib/xreadlink-with-size.c: Remove file.
19568         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
19569         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
19570         just before the function definition *is* accurate.
19571
19572         Eliminate one way canonicalize_filename_mode could exit.
19573         * lib/canonicalize.c (canonicalize_filename_mode):
19574         Use mreadlink_with_size, not xreadlink_with_size.
19575
19576 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
19577
19578         Detect porting problems to FreeBSD/arm, which has time_t wider than
19579         long int.  Original problem reported for GNU diff by Xin Li in
19580         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
19581         * modules/getdate (Depends-on): Add intprops, verify.
19582         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
19583         is an integer type no wider than long int.
19584
19585 2007-06-18  Jim Meyering  <jim@meyering.net>
19586
19587         New module: mreadlink-with-size.
19588         * MODULES.html.sh: Add mreadlink-with-size.
19589         * modules/mreadlink-with-size: New module
19590         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
19591         not xreadlink-with-size.
19592         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
19593
19594 2007-06-16  Bruno Haible  <bruno@clisp.org>
19595
19596         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
19597         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
19598         Reported by Gary V. Vaughan <gary@gnu.org>.
19599
19600 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
19601
19602         Revamp lchown so that it lives in unistd.h where it belongs.
19603         * lib/lchown.h: Remove.
19604         * lib/dirchownmod.c: Don't include lib/lchown.h.
19605         * lib/fchownat.c: Likewise.
19606         * lib/openat.c: Likewise.
19607         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
19608         does not follow symlinks.
19609         (EOPNOTSUPP): Define if not defined.
19610         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
19611         is defined to 0.
19612         (lchown): New decl.
19613         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
19614         Do not check for lchown decl.
19615         Set REPLACE_LCHOWN.
19616         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
19617         REPLACE_LCHOWN.
19618         * modules/chown: Make it clear it follows symlinks.
19619         * modules/lchown: Make it clear it doesn't follow symlinks.
19620         (Files): Remove lib/lchown.h
19621         (Depends-on): Add unistd.
19622         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
19623         (Include): Include <unistd.h>, not "lchown.h".
19624         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
19625         REPLACE_LCHOWN.
19626
19627 2007-06-15  Jim Meyering  <jim@meyering.net>
19628
19629         Change license (GPL to LGPL) of fsusage and dependents.
19630         * modules/fsusage (License): Change to LGPL.
19631         * modules/full-read (License): Likewise.
19632         * modules/full-write (License): Likewise.
19633         * modules/safe-read (License): Likewise.
19634         * modules/safe-write (License): Likewise.
19635
19636 2007-06-14  Ben Pfaff  <blp@gnu.org>
19637
19638         Missing part of allocsa -> malloca transition.
19639         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
19640         gl_MALLOCA.
19641
19642 2007-06-12  Bruno Haible  <bruno@clisp.org>
19643
19644         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
19645         to ia64, x86_64, i386.
19646         Reported by Eric Blake.
19647
19648 2007-06-12  Bruno Haible  <bruno@clisp.org>
19649
19650         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
19651         cross-compiling to x86_64.
19652
19653 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
19654
19655         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
19656         glitch reported by Ralf Wildenhues in
19657         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
19658
19659         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
19660         Vin Shelton.
19661
19662 2007-06-11  Bruno Haible  <bruno@clisp.org>
19663
19664         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
19665         replacement string.
19666         Reported by Eric Blake.
19667
19668 2007-06-10  Bruno Haible  <bruno@clisp.org>
19669
19670         Prepare vasnprintf code for use with Unicode strings.
19671         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
19672         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
19673         TYPE_U32_STRING.
19674         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
19675         a_u32_string variants.
19676         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
19677         * lib/printf-args.c: Don't include config.h and the specification
19678         header if PRINTF_FETCHARGS is already defined.
19679         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
19680         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
19681         TYPE_U16_STRING, TYPE_U32_STRING.
19682         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
19683         u16_directive, u16_directives, u32_directive, u32_directives): New
19684         types.
19685         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
19686         New declarations.
19687         * lib/printf-parse.c: Don't include config.h and the specification
19688         header if PRINTF_PARSE is already defined. Eliminate the set of
19689         parameters for WIDE_CHAR_VERSION; the user of this file must provide
19690         them now. Include c-ctype.h.
19691         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
19692         directive and CHAR_T_ONLY_ASCII.
19693         * lib/vasnprintf.c: Don't include config.h and the specification header
19694         if VASNPRINTF is already defined.
19695         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
19696         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
19697         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
19698         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
19699         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
19700         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
19701         code accordingly.
19702         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
19703         pad_ourselves also in this case, with the 'c' and 's' directives, and
19704         with a different notion of "width".
19705         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
19706
19707 2007-06-10  Bruno Haible  <bruno@clisp.org>
19708
19709         * modules/unistr/u32-mbsnlen: New file.
19710         * lib/unistr/u32-mbsnlen.c: New file.
19711
19712         * modules/unistr/u16-mbsnlen: New file.
19713         * lib/unistr/u16-mbsnlen.c: New file.
19714
19715         * modules/unistr/u8-mbsnlen: New file.
19716         * lib/unistr/u8-mbsnlen.c: New file.
19717
19718         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
19719         declarations.
19720
19721 2007-06-10  Bruno Haible  <bruno@clisp.org>
19722
19723         * lib/string_.h (mbsnlen): New declaration.
19724         * lib/mbsnlen.c: New file.
19725         * m4/mbsnlen.m4: New file.
19726         * modules/mbsnlen: New file.
19727         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
19728         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
19729         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
19730
19731 2007-06-10  Bruno Haible  <bruno@clisp.org>
19732
19733         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
19734
19735 2007-06-10  Bruno Haible  <bruno@clisp.org>
19736
19737         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
19738         * lib/mbuiter.h: Likewise.
19739
19740 2007-06-10  Bruno Haible  <bruno@clisp.org>
19741
19742         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
19743         declaration.
19744
19745 2007-06-10  Karl Berry  <karl@gnu.org>
19746
19747         * config/srclist.txt: remove gettext entries, Bruno prefers
19748         to update individually.
19749
19750 2007-06-10  Bruno Haible  <bruno@clisp.org>
19751
19752         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
19753         'maxlen'. Ensure only length + width bytes are allocated, not
19754         length + 1 + width.
19755
19756 2007-06-09  Bruno Haible  <bruno@clisp.org>
19757
19758         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
19759         (CHAR_T): Remove macro.
19760         (VASNPRINTF): Update.
19761
19762 2007-06-09  Bruno Haible  <bruno@clisp.org>
19763
19764         * MODULES.html.sh (Unicode string functions): Add the new modules.
19765
19766         * modules/uniconv/u32-conv-to-enc: New file.
19767         * lib/uniconv/u32-conv-to-enc.c: New file.
19768         * modules/uniconv/u32-conv-to-enc-tests: New file.
19769         * tests/uniconv/test-u32-conv-to-enc.c: New file.
19770
19771         * modules/uniconv/u16-conv-to-enc: New file.
19772         * lib/uniconv/u16-conv-to-enc.c: New file.
19773         * lib/uniconv/u-conv-to-enc.h: New file.
19774         * modules/uniconv/u16-conv-to-enc-tests: New file.
19775         * tests/uniconv/test-u16-conv-to-enc.c: New file.
19776
19777         * modules/uniconv/u8-conv-to-enc: New file.
19778         * lib/uniconv/u8-conv-to-enc.c: New file.
19779         * modules/uniconv/u8-conv-to-enc-tests: New file.
19780         * tests/uniconv/test-u8-conv-to-enc.c: New file.
19781
19782         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
19783         u32_conv_to_encoding): New declarations.
19784
19785 2007-06-09  Bruno Haible  <bruno@clisp.org>
19786
19787         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
19788
19789 2007-06-09  Bruno Haible  <bruno@clisp.org>
19790
19791         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
19792         * modules/malloca: Renamed from modules/allocsa, updated.
19793         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
19794         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
19795         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
19796         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
19797         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
19798         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
19799         * modules/xmalloca: Renamed from modules/xallocsa, updated.
19800         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
19801         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
19802         * modules/c-strcasestr (Depends-on): Update.
19803         * lib/c-strcasestr.c: Update.
19804         * modules/c-strstr (Depends-on): Update.
19805         * lib/c-strstr.c: Update.
19806         * modules/canonicalize-lgpl (Depends-on): Update.
19807         * lib/canonicalize-lgpl.c: Update.
19808         * modules/clean-temp (Depends-on): Update.
19809         * lib/clean-temp.c: Update.
19810         * modules/csharpcomp (Depends-on): Update.
19811         * lib/csharpcomp.c: Update.
19812         * modules/csharpexec (Depends-on): Update.
19813         * lib/csharpexec.c: Update.
19814         * modules/javacomp (Depends-on): Update.
19815         * lib/javacomp.c: Update.
19816         * modules/javaexec (Depends-on): Update.
19817         * lib/javaexec.c: Update.
19818         * modules/mbscasestr (Depends-on): Update.
19819         * lib/mbscasestr.c: Update.
19820         * modules/mbsstr (Depends-on): Update.
19821         * lib/mbsstr.c: Update.
19822         * modules/setenv (Depends-on): Update.
19823         * lib/setenv.c: Update.
19824         * modules/strcasestr (Depends-on): Update.
19825         * lib/strcasestr.c: Update.
19826         * modules/striconveha (Depends-on): Update.
19827         * lib/striconveha.c: Update.
19828         * modules/relocatable-prog-wrapper (Files): Update.
19829         * lib/relocwrapper.c: Update.
19830         * build-aux/install-reloc: Update.
19831         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
19832
19833 2007-06-08  Bruno Haible  <bruno@clisp.org>
19834
19835         Port to uClibc.
19836         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
19837         * lib/fpurge.c (fpurge): Likewise.
19838         * lib/freading.c (freading): Likewise.
19839         * lib/fseeko.c (rpl_fseeko): Likewise.
19840         * lib/fseterr.c (fseterr): Likewise.
19841         * lib/fwriting.c (fwriting): Likewise.
19842         * tests/test-fflush.c (main): Avoid a failure on uClibc.
19843
19844 2007-06-08  Bruno Haible  <bruno@clisp.org>
19845
19846         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
19847         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
19848         * modules/gettext (Files): Add m4/intlmacosx.m4.
19849
19850 2007-06-07  Bruno Haible  <bruno@clisp.org>
19851
19852         * modules/localename-tests: New file.
19853         * tests/test-localename.c: New file.
19854
19855         New module 'localename'.
19856         * lib/localename.h: New file.
19857         * lib/localename.c: New file, from GNU gettext.
19858         * m4/localename.m4: New file.
19859         * modules/localename: New file.
19860
19861 2007-06-07  Bruno Haible  <bruno@clisp.org>
19862
19863         Work around the lack of <wchar.h> on some builds of uClibc.
19864         * doc/headers/wchar.texi: Update.
19865         * lib/wchar_.h: Include <wchar.h> only if it exists.
19866         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
19867         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
19868         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
19869         doesn't exist.
19870         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
19871         * modules/mbfile (Depends-on): Add wchar.
19872         * modules/mbiter (Depends-on): Likewise.
19873         * modules/mbuiter (Depends-on): Likewise.
19874         Reported by Simon Josefsson.
19875
19876 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
19877
19878         Work around problem reported by Steven M. Schweda in
19879         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
19880         Tru64 5.1B with the Compaq compiler environment installed declares
19881         an 'isblank' function but does not define it in the C library.
19882         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
19883         * lib/regex_internal.h (isblank): Likewise.
19884         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
19885         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19886
19887 2007-06-05  Bruno Haible  <bruno@clisp.org>
19888
19889         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
19890         ia64.
19891         * modules/printf-safe: New file.
19892         * modules/fprintf-posix (Depends-on): Add printf-safe.
19893         * modules/printf-posix (Depends-on): Likewise.
19894         * modules/snprintf-posix (Depends-on): Likewise.
19895         * modules/sprintf-posix (Depends-on): Likewise.
19896         * modules/vasnprintf-posix (Depends-on): Likewise.
19897         * modules/vasprintf-posix (Depends-on): Likewise.
19898         * modules/vfprintf-posix (Depends-on): Likewise.
19899         * modules/vprintf-posix (Depends-on): Likewise.
19900         * modules/vsnprintf-posix (Depends-on): Likewise.
19901         * modules/vsprintf-posix (Depends-on): Likewise.
19902         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
19903         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
19904         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
19905         "no" on i386, x86_64, ia64.
19906         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
19907         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
19908         on i386, x86_64, ia64.
19909         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
19910         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
19911         on i386, x86_64, ia64.
19912         * tests/test-vasnprintf-posix.c: Include float.h.
19913         (LDBL80_WORDS): New macro.
19914         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
19915         on i386, x86_64, ia64.
19916         * tests/test-vasprintf-posix.c: Include float.h.
19917         (LDBL80_WORDS): New macro.
19918         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
19919         on i386, x86_64, ia64.
19920         * tests/test-snprintf-posix.c: Include float.h.
19921         * tests/test-sprintf-posix.c: Likewise.
19922         * tests/test-vsnprintf-posix.c: Likewise.
19923         * tests/test-vsprintf-posix.c: Likewise.
19924
19925 2007-06-05  Bruno Haible  <bruno@clisp.org>
19926
19927         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
19928         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
19929         non-IEEE numbers on i386, x86_64, ia64.
19930         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
19931         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
19932         * tests/test-isnanl.h: Include float.h.
19933         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
19934
19935 2007-06-05  Bruno Haible  <bruno@clisp.org>
19936
19937         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
19938         also the %a / %A. Handle the %a / %A code before this extra handling.
19939
19940 2007-06-05  Bruno Haible  <bruno@clisp.org>
19941
19942         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
19943         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
19944
19945 2007-06-05  Bruno Haible  <bruno@clisp.org>
19946
19947         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
19948         typo in variable name.
19949
19950 2007-06-05  Eric Blake  <ebb9@byu.net>
19951
19952         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
19953         Reported by Simon Josefsson.
19954
19955 2007-06-04  Bruno Haible  <bruno@clisp.org>
19956
19957         Avoid test failures on some PowerPC platforms.
19958         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
19959         Define differently for PowerPC.
19960         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
19961         Reported by Gary V. Vaughan <gary@gnu.org>.
19962
19963 2007-06-02  Bruno Haible  <bruno@clisp.org>
19964
19965         Fix test-stdint failure on FreeBSD/ia64.
19966         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
19967         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
19968         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
19969         * doc/headers/stdint.texi: Update.
19970
19971 2007-06-01  Bruno Haible  <bruno@clisp.org>
19972
19973         * tests/test-binary-io.c (main): Pass a third argument to open().
19974         Reported by Gary V. Vaughan <gary@gnu.org>.
19975
19976 2007-06-01  Bruno Haible  <bruno@clisp.org>
19977
19978         * doc/functions/frexpl.texi: Update for mingw.
19979
19980 2007-06-01  Bruno Haible  <bruno@clisp.org>
19981
19982         * tests/test-lseek.c (main): Disable test of errno for invalid third
19983         argument.
19984         * doc/functions/lseek.texi: Update.
19985         Reported by Gary V. Vaughan <gary@gnu.org>.
19986
19987 2007-05-28  Bruno Haible  <bruno@clisp.org>
19988
19989         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
19990
19991 2007-05-31  Eric Blake  <ebb9@byu.net>
19992
19993         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
19994         cross compiling.
19995
19996 2007-05-30  Eric Blake  <ebb9@byu.net>
19997         and Bruno Haible  <bruno@clisp.org>
19998
19999         Work around mingw test failures exposed by m4-1.4.9b.
20000         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
20001         * tests/test-unistd.c: Disable uid_t and git_t tests for the
20002         moment.
20003
20004 2007-05-30  Bruno Haible  <bruno@clisp.org>
20005
20006         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
20007         assuming that they are closed. Needed on HP-UX 11.
20008
20009 2007-05-29  Bruno Haible  <bruno@clisp.org>
20010
20011         Fix a problem with #include_next.
20012         * lib/dirent_.h: Split the double-inclusion guard.
20013         * lib/fcntl_.h: Likewise.
20014         * lib/float_.h: Likewise.
20015         * lib/iconv_.h: Likewise.
20016         * lib/inttypes_.h: Likewise.
20017         * lib/locale_.h: Likewise.
20018         * lib/math_.h: Likewise.
20019         * lib/netinet_in_.h: Likewise.
20020         * lib/search_.h: Likewise.
20021         * lib/signal_.h: Likewise.
20022         * lib/stdint_.h: Likewise.
20023         * lib/stdio_.h: Likewise.
20024         * lib/stdlib_.h: Likewise.
20025         * lib/string_.h: Likewise.
20026         * lib/sys_select_.h: Likewise.
20027         * lib/sys_socket_.h: Likewise.
20028         * lib/sys_stat_.h: Likewise.
20029         * lib/sys_time_.h: Likewise.
20030         * lib/sysexits_.h: Likewise.
20031         * lib/time_.h: Likewise.
20032         * lib/unistd_.h: Likewise.
20033         * lib/wchar_.h: Likewise.
20034         * lib/wctype_.h: Likewise.
20035
20036 2007-05-29  Bruno Haible  <bruno@clisp.org>
20037
20038         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
20039         for the moment.
20040
20041 2007-05-29  Bruno Haible  <bruno@clisp.org>
20042
20043         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
20044         invocation.
20045         Reported by Eric Blake.
20046
20047 2007-05-29  Bruno Haible  <bruno@clisp.org>
20048
20049         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
20050         compiling case.
20051
20052 2007-05-29  Eric Blake  <ebb9@byu.net>
20053             Bruno Haible  <bruno@clisp.org>
20054
20055         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
20056         cross compiles.
20057
20058 2007-05-28  Eric Blake  <ebb9@byu.net>
20059
20060         * modules/closein-tests (test_closein_LDADD): Support test on
20061         cygwin with libtool.
20062
20063 2007-05-28  Bruno Haible  <bruno@clisp.org>
20064
20065         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
20066         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
20067         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
20068         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
20069         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
20070         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
20071         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
20072         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
20073         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
20074
20075 2007-05-28  Eric Blake  <ebb9@byu.net>
20076
20077         Unconditionally include <config.h> in unit tests.
20078         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
20079         * tests/test-allocsa.c, tests/test-arcfour.c,
20080         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
20081         tests/test-array_list.c, tests/test-array_oset.c,
20082         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
20083         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
20084         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
20085         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
20086         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
20087         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
20088         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
20089         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
20090         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
20091         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
20092         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
20093         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
20094         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
20095         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
20096         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
20097         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
20098         test-md5.c, test-memmem.c, test-printf-posix.c,
20099         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
20100         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
20101         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
20102         test-strcasestr.c, test-striconv.c, test-striconveh.c,
20103         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
20104         test-vasnprintf-posix2.c, test-vasnprintf.c,
20105         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
20106         test-vfprintf-posix.c, test-vprintf-posix.c,
20107         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
20108         test-xvasprintf.c: Likewise.
20109
20110 2007-05-28  Bruno Haible  <bruno@clisp.org>
20111
20112         * gnulib-tool (func_import): Remember the --with-tests command-line
20113         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
20114         Reported by Eric Blake.
20115
20116 2007-05-28  Bruno Haible  <bruno@clisp.org>
20117
20118         * modules/ftell-tests: New file.
20119         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
20120         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
20121
20122         * lib/ftell.c: New file.
20123         * modules/ftell: New file.
20124         * m4/ftell.m4: New file.
20125         * doc/functions/ftell.texi: Update.
20126         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
20127         REPLACE_FTELL.
20128         * lib/stdio_.h (rpl_ftell): New declaration.
20129         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
20130         REPLACE_FTELL.
20131
20132 2007-05-28  Eric Blake  <ebb9@byu.net>
20133
20134         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
20135
20136 2007-05-28  Bruno Haible  <bruno@clisp.org>
20137
20138         * modules/fseek-tests: New file.
20139         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
20140         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
20141
20142         * lib/fseek.c: New file.
20143         * modules/fseek: New file.
20144         * m4/fseek.m4: New file.
20145         * doc/functions/fseek.texi: Update.
20146         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
20147         REPLACE_FSEEK.
20148         * lib/stdio_.h (rpl_fseek): New declaration.
20149         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
20150         REPLACE_FSEEK.
20151
20152 2007-05-28  Bruno Haible  <bruno@clisp.org>
20153
20154         * lib/stdio_.h (fflush): More comments.
20155
20156 2007-05-28  Bruno Haible  <bruno@clisp.org>
20157
20158         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
20159         runtime test.
20160
20161 2007-05-28  Eric Blake  <ebb9@byu.net>
20162
20163         Improve lseek module.
20164         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
20165         * lib/unistd_.h (lseek): Scale back link warning message.
20166         * tests/test-lseek.c: Beef up test.
20167         * tests/test-lseek.sh: Exercise more facets of lseek.
20168         Reported by Bruno Haible.
20169
20170 2007-05-28  Bruno Haible  <bruno@clisp.org>
20171
20172         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
20173         to define.
20174
20175 2007-05-27  Bruno Haible  <bruno@clisp.org>
20176
20177         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
20178
20179 2007-05-27  Bruno Haible  <bruno@clisp.org>
20180
20181         * modules/openmp: New file.
20182         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
20183         Noah Misch.
20184
20185 2007-05-26  Bruno Haible  <bruno@clisp.org>
20186
20187         * modules/chdir-long (Depends-on): Add fchdir.
20188         * modules/chdir-safer (Depends-on): Likewise.
20189         * modules/fts (Depends-on): Likewise.
20190         * modules/fts-lgpl (Depends-on): Likewise.
20191         * modules/openat (Depends-on): Likewise.
20192         * modules/savewd (Depends-on): Likewise.
20193
20194 2007-05-24  Eric Blake  <ebb9@byu.net>
20195
20196         Fix lseek on mingw.
20197         * modules/lseek: New module.
20198         * m4/lseek.m4: New file.
20199         * lib/lseek.c: New file.
20200         * modules/lseek-tests: New file.
20201         * tests/test-lseek.c: New file.
20202         * tests/test-lseek.sh: New file.
20203         * MODULES.html.sh: Document lseek module.
20204         * modules/fflush (Depends-on): Add lseek, fseeko.
20205         * modules/fseeko (Depends-on): Likewise.
20206         * modules/ftello (Depends-on): Likewise.
20207         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
20208         broken.
20209         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
20210         broken.
20211         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
20212         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
20213         * lib/ftello.c (rpl_ftello): Likewise.
20214         * tests/test-fseeko.c (main): Test this.
20215         * tests/test-fseeko.sh: Likewise.
20216         * tests/test-ftello.c (main): Likewise.
20217         * tests/test-ftello.sh: Likewise.
20218         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
20219         implies replacing fseek.
20220         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
20221         HAVE_FTELLO.
20222         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
20223         * modules/unistd (Makefile.am): Likewise.
20224         * lib/unistd_.h (lseek): Declare a replacement.
20225         * doc/functions/lseek.texi (lseek): Document this fix.
20226         * doc/functions/fseek.texi (fseek): Likewise.
20227         * doc/functions/ftell.texi (ftell): Likewise.
20228
20229 2007-05-24  Bruno Haible  <bruno@clisp.org>
20230
20231         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
20232         in the printed representation of a NaN.
20233         * tests/test-vasprintf-posix.c (test_function): Likewise.
20234         * tests/test-snprintf-posix.h (test_function): Likewise.
20235         * tests/test-sprintf-posix.h (test_function): Likewise.
20236         Reported by Eric Blake.
20237
20238 2007-05-23  Eric Blake  <ebb9@byu.net>
20239
20240         Fix fseeko/ftello on cygwin 1.5.24.
20241         * doc/functions/fseeko.texi (fseeko): Document the fix.
20242         * doc/functions/ftello.texi (ftello): Document the fix.
20243         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
20244         * doc/functions/stdout.text (stdout): New file.
20245         * doc/functions/stderr.text (stderr): New file.
20246         * doc/gnulib.texi (Function Substitutes): Use new files.
20247         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
20248         prior to 1.7.0.
20249         * tests/test-ftello.c (main): Likewise for ftello.
20250         * tests/test-fseeko.sh: New file.
20251         * tests/test-ftello.sh: New file.
20252         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
20253         with seekable stdin.
20254         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
20255         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
20256         (gl_REPLACE_FSEEKO): New macro.
20257         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
20258         * modules/fseeko (Files): Distribute fseeko.c.
20259         * modules/ftello (Files): Distribute ftello.c.
20260         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
20261         mode.
20262         * lib/ftello.c (rpl_ftello): New file.
20263         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
20264         fseeko, ftello.
20265         (gl_STDIN_LARGE_OFFSET): New macro.
20266         * modules/stdio (Makefile.am): Perform the replacement.
20267         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
20268
20269 2007-05-23  Bruno Haible  <bruno@clisp.org>
20270
20271         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
20272         GNULIB_POSIXCHECK is defined.
20273
20274 2007-05-21  Bruno Haible  <bruno@clisp.org>
20275
20276         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
20277         Check also the output for NaN arguments. When cross-compiling, guess
20278         no on IRIX.
20279         * lib/vasnprintf.c: Update comments.
20280         * tests/test-vasnprintf-posix.c (strisnan): New function.
20281         (test_function): Use it.
20282         * tests/test-vasprintf-posix.c (strisnan): New function.
20283         (test_function): Use it.
20284         * tests/test-snprintf-posix.h (strisnan): New function.
20285         (test_function): Use it.
20286         * tests/test-sprintf-posix.h (strisnan): New function.
20287         (test_function): Use it.
20288         Reported by Eric Blake.
20289
20290 2007-05-20  Bruno Haible  <bruno@clisp.org>
20291
20292         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
20293         numbers that fails on BeOS.
20294         * doc/functions/frexpl.texi: Update.
20295
20296 2007-05-20  Jim Meyering  <jim@meyering.net>
20297
20298         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
20299         forced upon us by glibc-2.6.
20300
20301 2007-05-20  Bruno Haible  <bruno@clisp.org>
20302
20303         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
20304         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
20305         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
20306         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
20307         NEED_PRINTF_INFINITE.
20308         (is_infinitel): New function.
20309         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
20310         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
20311         gl_PREREQ_VASNPRINTF_INFINITE.
20312         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
20313         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20314         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
20315         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
20316         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
20317         gl_PREREQ_VASNPRINTF_INFINITE.
20318         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20319         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20320         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20321         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20322         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20323         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20324         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20325         * doc/functions/fprintf.texi: Update.
20326         * doc/functions/printf.texi: Update.
20327         * doc/functions/snprintf.texi: Update.
20328         * doc/functions/sprintf.texi: Update.
20329         * doc/functions/vfprintf.texi: Update.
20330         * doc/functions/vprintf.texi: Update.
20331         * doc/functions/vsnprintf.texi: Update.
20332         * doc/functions/vsprintf.texi: Update.
20333
20334 2007-05-20  Bruno Haible  <bruno@clisp.org>
20335
20336         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
20337         was not found in libc.
20338         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
20339
20340 2007-05-20  Bruno Haible  <bruno@clisp.org>
20341
20342         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
20343         printed as "-nan" instead of "nan".
20344         * tests/test-vasprintf-posix.c (test_function): Likewise.
20345         * tests/test-snprintf-posix.h (test_function): Likewise.
20346         * tests/test-sprintf-posix.h (test_function): Likewise.
20347         Needed for HP-UX 11.
20348
20349 2007-05-20  Jim Meyering  <jim@meyering.net>
20350
20351         Fix buggy test for the fchownat-deref bug.
20352         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
20353         symlink required for the run-test.  Without it, this test would
20354         always declare that fchownat doesn't work, and client code would
20355         unnecessarily use the replacement function with fixed libc.
20356         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
20357         Reported by Greg Schafer.
20358
20359 2007-05-19  Bruno Haible  <bruno@clisp.org>
20360
20361         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
20362         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
20363         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
20364         Needed for IRIX 6.5 and Solaris 2.5.1.
20365
20366 2007-05-19  Bruno Haible  <bruno@clisp.org>
20367
20368         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
20369         (test_function): Skip tests involving -0.0 on platforms where
20370         -0.0 = 0.0.
20371         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
20372         (test_function): Skip tests involving -0.0 on platforms where
20373         -0.0 = 0.0.
20374         * tests/test-snprintf-posix.h (have_minus_zero): New function.
20375         (test_function): Skip tests involving -0.0 on platforms where
20376         -0.0 = 0.0.
20377         * tests/test-sprintf-posix.h (have_minus_zero): New function.
20378         (test_function): Skip tests involving -0.0 on platforms where
20379         -0.0 = 0.0.
20380         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
20381         tests.
20382         * tests/test-printf-posix.h (test_function): Likewise.
20383         * tests/test-printf-posix.output: Remove all -0.0 related results.
20384         Needed for IRIX 6.5.
20385
20386 2007-05-19  Bruno Haible  <bruno@clisp.org>
20387
20388         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
20389         printed as "nan0x7fffffff" instead of "nan".
20390         * tests/test-vasprintf-posix.c (test_function): Likewise.
20391         * tests/test-snprintf-posix.h (test_function): Likewise.
20392         * tests/test-sprintf-posix.h (test_function): Likewise.
20393         * tests/test-fprintf-posix.h (NaN): Remove macro.
20394         (test_function): Remove all NaN related tests.
20395         * tests/test-printf-posix.h (NaN): Remove macro.
20396         (test_function): Remove all NaN related tests.
20397         * tests/test-printf-posix.output: Remove all NaN related results.
20398         Needed for IRIX 6.5.
20399
20400 2007-05-19  Bruno Haible  <bruno@clisp.org>
20401
20402         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
20403         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
20404
20405 2007-05-19  Bruno Haible  <bruno@clisp.org>
20406
20407         * lib/float_.h: New file.
20408         * m4/float_h.m4: New file.
20409         * modules/float: New file.
20410         * modules/isnanl (Dependencies): Add float.
20411         * modules/isnanl-nolibm (Dependencies): Likewise.
20412         * modules/mathl (Dependencies): Likewise.
20413         * modules/printf-frexpl (Dependencies): Likewise.
20414         * modules/signbit (Dependencies): Likewise.
20415         * modules/vasnprintf (Dependencies): Likewise.
20416         * doc/headers/float.texi: Update.
20417
20418 2007-05-19  Jim Meyering  <jim@meyering.net>
20419
20420         * lib/utimens.c (gl_futimens): Rename from futimens,
20421         now that glibc-2.6 declares futimens.
20422         * lib/utimens.h: Likewise.
20423
20424 2007-05-19  Bruno Haible  <bruno@clisp.org>
20425
20426         Avoid test failures on mingw.
20427         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
20428         * tests/test-printf-posix.sh: Likewise.
20429         * tests/test-vfprintf-posix.sh: Likewise.
20430         * tests/test-vprintf-posix.sh: Likewise.
20431
20432 2007-05-19  Bruno Haible  <bruno@clisp.org>
20433
20434         Fix *printf result for NaN, Inf, -0.0 on mingw.
20435         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
20436         * lib/vasnprintf.c: Include math.h and isnan.h.
20437         (is_infinite_or_zero): New function.
20438         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
20439         values in the %f, %F, %e, %E, %g, %G directives.
20440         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
20441         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20442         gl_PRINTF_INFINITE and test its result. Invoke
20443         gl_PREREQ_VASNPRINTF_INFINITE.
20444         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20445         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20446         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20447         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20448         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20449         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20450         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20451         * doc/functions/fprintf.texi: Update.
20452         * doc/functions/printf.texi: Update.
20453         * doc/functions/snprintf.texi: Update.
20454         * doc/functions/sprintf.texi: Update.
20455         * doc/functions/vfprintf.texi: Update.
20456         * doc/functions/vprintf.texi: Update.
20457         * doc/functions/vsnprintf.texi: Update.
20458         * doc/functions/vsprintf.texi: Update.
20459
20460 2007-05-19  Bruno Haible  <bruno@clisp.org>
20461
20462         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
20463         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
20464         Instead of multiplying with 10^k, set extra_zeroes to k.
20465         (scale10_round_long_double): Remove function.
20466
20467 2007-05-18  Bruno Haible  <bruno@clisp.org>
20468
20469         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
20470         introduced on 2007-05-06.
20471
20472 2007-05-18  Bruno Haible  <bruno@clisp.org>
20473
20474         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
20475         %g directives.
20476         * tests/test-vasprintf-posix.c (test_function): Likewise.
20477         * tests/test-snprintf-posix.h (test_function): Likewise.
20478         * tests/test-sprintf-posix.h (test_function): Likewise.
20479
20480 2007-05-18  Bruno Haible  <bruno@clisp.org>
20481
20482         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
20483         (strmatch): New function.
20484         (test_function): Test the %f directive on numbers of various exponents.
20485         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
20486         (strmatch): New function.
20487         (test_function): Test the %f directive on numbers of various exponents.
20488         * tests/test-snprintf-posix.h (strmatch): New function.
20489         (test_function): Test the %f directive on numbers of various exponents.
20490         * tests/test-sprintf-posix.h (strmatch): New function.
20491         (test_function): Test the %f directive on numbers of various exponents.
20492         * tests/test-snprintf-posix.c (SIZEOF): New macro.
20493         * tests/test-sprintf-posix.c (SIZEOF): New macro.
20494         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
20495         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
20496
20497 2007-05-18  Bruno Haible  <bruno@clisp.org>
20498
20499         Add support for 'long double' number output.
20500         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
20501         * lib/vasnprintf.c: Include math.h and float+.h.
20502         (mp_limb_t): New type.
20503         (GMP_LIMB_BITS): New macro.
20504         (mp_twolimb_t): New type.
20505         (GMP_TWOLIMB_BITS): New macro.
20506         (mpn_t): New type.
20507         (multiply, divide, convert_to_decimal, decode_long_double,
20508         scale10_round_long_double, scale10_round_decimal_long_double,
20509         floorlog10l): New functions.
20510         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
20511         for the %f, %F, %e, %E, %g, %G directives.
20512         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
20513         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
20514         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
20515         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
20516         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
20517         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20518         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20519         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20520         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20521         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20522         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20523         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
20524         * modules/snprintf-posix (Depends-on): Likewise.
20525         * modules/sprintf-posix (Depends-on): Likewise.
20526         * modules/vasnprintf-posix (Depends-on): Likewise.
20527         * modules/vasprintf-posix (Depends-on): Likewise.
20528         * modules/vfprintf-posix (Depends-on): Likewise.
20529         * modules/vsnprintf-posix (Depends-on): Likewise.
20530         * modules/vsprintf-posix (Depends-on): Likewise.
20531         * modules/vasnprintf (Files): Add lib/float+.h.
20532         * doc/functions/fprintf.texi: Update.
20533         * doc/functions/printf.texi: Update.
20534         * doc/functions/snprintf.texi: Update.
20535         * doc/functions/sprintf.texi: Update.
20536         * doc/functions/vfprintf.texi: Update.
20537         * doc/functions/vprintf.texi: Update.
20538         * doc/functions/vsnprintf.texi: Update.
20539         * doc/functions/vsprintf.texi: Update.
20540
20541 2007-05-18  Bruno Haible  <bruno@clisp.org>
20542
20543         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
20544
20545 2007-05-18  Bruno Haible  <bruno@clisp.org>
20546
20547         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
20548         for printing 64-bit integers. Needed for mingw.
20549
20550 2007-05-18  Bruno Haible  <bruno@clisp.org>
20551
20552         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
20553         gl_FUNC_FREXPL_WORKS.
20554         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
20555
20556 2007-05-18  Bruno Haible  <bruno@clisp.org>
20557
20558         * modules/frexpl-nolibm-tests: New file.
20559
20560         * modules/frexpl-nolibm: New file.
20561         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
20562
20563 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
20564
20565         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
20566         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
20567         GCC 4.2, which otherwise issues a lot of warnings.
20568         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
20569         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
20570         Likewise.
20571         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
20572         * modules/iconv_open (iconv.h): Likewise.
20573         * modules/locale (locale.h): Likewise.
20574         * modules/netinet_in (netinet/in.h): Likewise.
20575         * modules/sys_select (sys_select.h): Likewise.
20576         * modules/sys_socket (sys/socket.h): Likewise.
20577         * modules/sys_stat (sys/stat.h): Likewise.
20578         * modules/sysexits (sysexits.h): Likewise.
20579         * modules/unistd (unistd.h): Likewise.
20580
20581 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20582
20583         * modules/closein-tests (Makefile.am): Distribute
20584         `test-closein.sh'.
20585
20586 2007-05-17  Bruno Haible  <bruno@clisp.org>
20587
20588         * tests/test-printf-posix.output: Renamed from
20589         tests/test-fprintf-posix.out.
20590         * modules/fprintf-posix-tests: Update.
20591         * modules/printf-posix-tests: Update.
20592         * modules/vfprintf-posix-tests: Update.
20593         * modules/vprintf-posix-tests: Update.
20594         * tests/test-fprintf-posix.sh: Update.
20595         * tests/test-printf-posix.sh: Update.
20596         * tests/test-vfprintf-posix.sh: Update.
20597         * tests/test-vprintf-posix.sh: Update.
20598         Reported by Ralf Wildenhues.
20599
20600 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
20601
20602         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
20603         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
20604         GCC 4.2, which otherwise issues a lot of warnings.
20605         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
20606         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
20607         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
20608         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
20609         it should no longer be needed.
20610         * lib/string_.h: Likewise.
20611         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
20612         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
20613         * modules/inttypes (inttypes.h): Likewise.
20614         * modules/math (math.h): Likewise.
20615         * modules/search (search.h): Likewise.
20616         * modules/signal (signal.h): Likewise.
20617         * modules/stdint (stdint.h): Likewise.
20618         * modules/stdio (stdio.h): Likewise.
20619         * modules/stdlib (stdlib.h): Likewise.
20620         * modules/string (string.h): Likewise.
20621         * modules/sys_time (sys/time.h): Likewise.
20622         * modules/time (time.h): Likewise.
20623         * modules/wchar (wchar.h): Likewise.
20624         * modules/wctype (wtype.h): Likewise.
20625
20626 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
20627
20628         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
20629
20630 2007-05-13  Bruno Haible  <bruno@clisp.org>
20631
20632         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
20633         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
20634         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
20635         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
20636         (gl_PREREQ_STRTOK_R): Don't require it here.
20637
20638 2007-05-13  Bruno Haible  <bruno@clisp.org>
20639
20640         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
20641         when used in C++ mode.
20642
20643 2007-05-12  Bruno Haible  <bruno@clisp.org>
20644
20645         * lib/linebuffer.h: Tweak doc.
20646         * lib/linebuffer.c: Likewise.
20647
20648 2007-05-12  James Youngman  <jay@gnu.org>
20649
20650         * lib/linebuffer.c (readlinebuffer_delim): New function,
20651         like readlinebuffer, but use a caller-specified delimiter.
20652         (readlinebuffer): Just call readlinebuffer_delim with '\n'
20653         as the delimiter.
20654         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
20655
20656 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
20657
20658         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
20659         * modules/openat (Files): Remove openat-die.c.
20660         (Depends-on): Add openat-die.
20661         * modules/openat-die: New module.
20662
20663 2007-05-06  Bruno Haible  <bruno@clisp.org>
20664
20665         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
20666         Update with info about Cygwin.
20667         * doc/functions/fprintf.texi: Update.
20668         * doc/functions/printf.texi: Update.
20669         * doc/functions/snprintf.texi: Update.
20670         * doc/functions/sprintf.texi: Update.
20671         * doc/functions/vfprintf.texi: Update.
20672         * doc/functions/vprintf.texi: Update.
20673         * doc/functions/vsnprintf.texi: Update.
20674         * doc/functions/vsprintf.texi: Update.
20675         Reported by Eric Blake.
20676
20677 2007-05-06  Bruno Haible  <bruno@clisp.org>
20678
20679         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
20680         padding ourselves for the floating-point directives.
20681         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
20682         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
20683         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
20684         gl_PRINTF_FLAG_ZERO and test its result. Invoke
20685         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
20686         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20687         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
20688         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20689         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20690         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20691         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20692         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20693         * tests/test-snprintf-posix.h (test_function): Also check the width
20694         and some flags in the %f directive.
20695         * tests/test-sprintf-posix.h (test_function): Likewise.
20696         * tests/test-vasnprintf-posix.c (test_function): Likewise.
20697         * tests/test-vasprintf-posix.c (test_function): Likewise.
20698         * doc/functions/fprintf.texi: Update.
20699         * doc/functions/printf.texi: Update.
20700         * doc/functions/snprintf.texi: Update.
20701         * doc/functions/sprintf.texi: Update.
20702         * doc/functions/vfprintf.texi: Update.
20703         * doc/functions/vprintf.texi: Update.
20704         * doc/functions/vsnprintf.texi: Update.
20705         * doc/functions/vsprintf.texi: Update.
20706
20707 2007-05-06  Bruno Haible  <bruno@clisp.org>
20708
20709         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
20710         pass the ' flag character to sprintf or snprintf.
20711         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
20712         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
20713         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
20714         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
20715         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
20716         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
20717         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
20718         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
20719         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
20720         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
20721         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20722         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
20723         * tests/test-snprintf-posix.h (test_function): Also check the grouping
20724         flag.
20725         * tests/test-sprintf-posix.h (test_function): Likewise.
20726         * tests/test-vasnprintf-posix.c (test_function): Likewise.
20727         * tests/test-vasprintf-posix.c (test_function): Likewise.
20728         * doc/functions/fprintf.texi: Update.
20729         * doc/functions/printf.texi: Update.
20730         * doc/functions/snprintf.texi: Update.
20731         * doc/functions/sprintf.texi: Update.
20732         * doc/functions/vfprintf.texi: Update.
20733         * doc/functions/vprintf.texi: Update.
20734         * doc/functions/vsnprintf.texi: Update.
20735         * doc/functions/vsprintf.texi: Update.
20736
20737 2007-05-01  Bruno Haible  <bruno@clisp.org>
20738
20739         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
20740
20741 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
20742
20743         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
20744         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
20745
20746 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
20747
20748         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
20749         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
20750         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
20751
20752 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
20753
20754         * lib/argp-help.c (struct hol_entry): New member `ord'.
20755         (HOL_ENTRY_PTRCMP): Use ord for comparison
20756         (hol_sort): Initialize ord.
20757
20758 2007-05-01  Bruno Haible  <bruno@clisp.org>
20759
20760         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
20761         Reported by Eric Blake.
20762         * doc/gnulib.texi (Function Substitutes): Update.
20763
20764 2007-05-01  Bruno Haible  <bruno@clisp.org>
20765
20766         * doc/functions.texi: Remove file, now redundant through
20767         doc/functions/*.texi.
20768
20769 2007-05-01  Bruno Haible  <bruno@clisp.org>
20770
20771         * modules/argp (Depends-on): Add sleep.
20772
20773 2007-05-01  Bruno Haible  <bruno@clisp.org>
20774
20775         * modules/sleep-tests: New file.
20776         * tests/test-sleep.c: New file.
20777
20778         * modules/sleep: New file.
20779         * lib/sleep.c: New file.
20780         * m4/sleep.m4: New file.
20781         * lib/unistd_.h (sleep): New declaration.
20782         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
20783         HAVE_SLEEP.
20784         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
20785         * doc/functions/sleep.texi: Document the sleep module.
20786
20787 2007-05-01  Bruno Haible  <bruno@clisp.org>
20788
20789         * lib/sigprocmask.h: Remove file.
20790         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
20791         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
20792         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
20793         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
20794         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
20795         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
20796         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
20797         HAVE_SIGSET_T as a shell variable.
20798         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
20799         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
20800         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
20801         (Depends-on): Add signal. Remove verify.
20802         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
20803         (Include): Mention <signal.h> instead of sigprocmask.h.
20804         * NEWS: Mention the change.
20805         * lib/fatal-signal.c: Don't include sigprocmask.h.
20806
20807 2007-05-01  Bruno Haible  <bruno@clisp.org>
20808
20809         * modules/signal: New file.
20810         * lib/signal_.h: New file.
20811         * m4/signal_h.m4: New file.
20812
20813 2007-05-01  Bruno Haible  <bruno@clisp.org>
20814
20815         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
20816         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
20817         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
20818         HAVE_WCTYPE_CTMP_BUG into wctype.h.
20819
20820 2007-05-01  Bruno Haible  <bruno@clisp.org>
20821
20822         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
20823         configure time.
20824         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
20825         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
20826         * modules/sys_stat (Makefile.am): Substitute their values into
20827         sys/stat.h.
20828
20829 2007-05-01  Bruno Haible  <bruno@clisp.org>
20830
20831         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
20832         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
20833         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
20834
20835 2007-05-01  Bruno Haible  <bruno@clisp.org>
20836
20837         * doc/header/assert.texi: Undo last change: don't mention the gnulib
20838         'assert' module here.
20839
20840 2007-05-01  Bruno Haible  <bruno@clisp.org>
20841
20842         * doc/functions/*.texi: New files.
20843         * doc/functions/google-ranking.txt: New file.
20844         * doc/gnulib.texi (Function Substitutes): New chapter.
20845         (ctime, inet_ntoa): Remove sections.
20846         * doc/ctime.texi: Remove file.
20847         * doc/inet_ntoa.texi: Remove file.
20848         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
20849         dependencies.
20850         (%.info): New rule, specifying a --reference-limit.
20851
20852 2007-05-01  Bruno Haible  <bruno@clisp.org>
20853
20854         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
20855
20856 2007-05-01  Bruno Haible  <bruno@clisp.org>
20857
20858         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
20859         the portability of 'mkdir' to mingw systems.
20860
20861 2007-05-01  Bruno Haible  <bruno@clisp.org>
20862
20863         * doc/headers/google-ranking.txt: New file.
20864
20865 2007-04-30  Eric Blake  <ebb9@byu.net>
20866
20867         Prefer fseeko to fseek.
20868         * modules/getpass (Depends-on): Add fseeko.
20869         * lib/getpass.c (getpass): Use fseeko, not fseek.
20870
20871 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
20872
20873         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
20874         assumes the sorting is stable, while most qsort implementations
20875         are not.  Use argument addresses to ensure they never compare as
20876         equal.
20877
20878         * tests/test-argp-2.sh (usage-indent test): Fix output
20879         (func_compare): Restore diff options
20880         * tests/test-argp.c: Restore #include "progname.h"
20881
20882 2007-04-29  Bruno Haible  <bruno@clisp.org>
20883
20884         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
20885         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
20886         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
20887         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
20888         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
20889         (configure.ac): Define CHECK_SNPRINTF_POSIX.
20890         (TESTS, check_PROGRAMS): Add test-snprintf.
20891         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
20892         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
20893         (TESTS, check_PROGRAMS): Add test-vsnprintf.
20894         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
20895         assertions that fail on HP-UX, OSF/1, or IRIX.
20896         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
20897
20898 2007-04-29  Bruno Haible  <bruno@clisp.org>
20899
20900         * MODULES.html.sh (posix_functions): Remove 'contents'.
20901
20902 2007-04-29  Karl Berry  <karl@gnu.org>
20903
20904         * config/srclist.txt (gendocs_template_min): new entry.
20905
20906 2007-04-29  Bruno Haible  <bruno@clisp.org>
20907
20908         Work around fpurge bug on BSD systems.
20909         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
20910         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
20911         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
20912         fpurge to rpl_fpurge if the system already has this function.
20913         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
20914         the case where the system already has this function. Correct invariants
20915         on BSD systems.
20916         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
20917         BSD systems.
20918
20919 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
20920
20921         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
20922         proposed by Sven Verdoolaege.
20923
20924         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
20925         options.
20926         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
20927         (usage and help tests): Update
20928
20929 2007-04-29  Bruno Haible  <bruno@clisp.org>
20930
20931         * tests/test-fflush.c (main): Use a file of size 17, not 10.
20932         Print more information in case of failure. Disable a test on BeOS.
20933
20934 2007-04-29  Bruno Haible  <bruno@clisp.org>
20935
20936         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
20937         This helps debugging on systems on which no gdb is available.
20938
20939 2007-04-29  Bruno Haible  <bruno@clisp.org>
20940
20941         * lib/freading.h: Improve comments.
20942         * lib/fwriting.h: Likewise.
20943         * tests/test-freading.c (main): Don't check freading immediately after
20944         repositioning. Needed for glibc.
20945
20946 2007-04-29  Bruno Haible  <bruno@clisp.org>
20947
20948         * lib/freading.c (freading): Trivial simplification.
20949
20950 2007-04-28  Bruno Haible  <bruno@clisp.org>
20951
20952         * tests/test-fwriting.c (main): Also test the interaction between
20953         fflush and fwriting.
20954         * modules/fwriting-tests (Depends-on): Add fflush.
20955
20956         * tests/test-freading.c (main): Also test the interaction between
20957         fflush and freading.
20958         * modules/freading-tests (Depends-on): Add fflush.
20959
20960 2007-04-28  Bruno Haible  <bruno@clisp.org>
20961
20962         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
20963         fseeko and ftello.
20964         Suggested by Eric Blake.
20965
20966 2007-04-28  Jim Meyering  <jim@meyering.net>
20967
20968         Avoid false-negative in gl_STDINT_H's C99 conformance test.
20969         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
20970         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
20971
20972 2007-04-27  Eric Blake  <ebb9@byu.net>
20973
20974         * doc/headers/assert.texi (assert.h): Document assert module use.
20975
20976 2007-04-27  Bruno Haible  <bruno@clisp.org>
20977
20978         * doc/headers/*.texi: New files.
20979         * doc/gnulib.texi (Header File Substitutes): New chapter.
20980         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
20981         dependencies.
20982         (standards.info ,standards.html, standards.dvi): Update dependencies.
20983         (mostlyclean, clean): New targets.
20984
20985 2007-04-27  Bruno Haible  <bruno@clisp.org>
20986
20987         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
20988         * modules/sysexits (Files, Makefile.am): Update.
20989
20990         * lib/sys_socket_.h: Renamed from lib/socket_.h.
20991         * modules/sys_socket (Files, Makefile.am): Update.
20992
20993         * lib/sys_stat_.h: Renamed from lib/stat_.h.
20994         * modules/sys_stat (Files, Makefile.am): Update.
20995
20996 2007-04-27  Eric Blake  <ebb9@byu.net>
20997
20998         * lib/freading.h: Improve comments.
20999         * lib/fwriting.h: Likewise.
21000         * lib/fflush.c: Likewise.
21001
21002         Fix closein for mingw.
21003         * modules/closein-tests: Add tests for closein.
21004         * tests/test-closein.c: New file.
21005         * tests/test-closein.sh: Likewise.
21006         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
21007         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
21008
21009 2007-04-27  Bruno Haible  <bruno@clisp.org>
21010
21011         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
21012         version is < 6.
21013         * lib/math_.h [__DECC]: Likewise.
21014         * lib/stdio_.h [__DECC]: Likewise.
21015         * lib/stdlib_.h [__DECC]: Likewise.
21016         * lib/string_.h [__DECC]: Likewise.
21017         * lib/time_.h [__DECC]: Likewise.
21018         * lib/wchar_.h [__DECC]: Likewise.
21019         * lib/wctype_.h [__DECC]: Likewise.
21020
21021 2007-04-27  Bruno Haible  <bruno@clisp.org>
21022
21023         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
21024
21025 2007-04-27  Bruno Haible  <bruno@clisp.org>
21026
21027         * lib/fflush.c: Add comments.
21028         * modules/fpurge-tests (Depends-on): Add fflush.
21029         * modules/freadable-tests (Depends-on): Likewise.
21030         * modules/fwritable-tests (Depends-on): Likewise.
21031
21032 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
21033
21034         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
21035         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
21036         Report by Bruno Haible <bruno@clisp.org>.
21037
21038 2007-04-26  Eric Blake  <ebb9@byu.net>
21039
21040         Fix fflush on mingw.
21041         * modules/fflush (Depends-on): Add freading.
21042         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
21043         but unread data.
21044
21045 2007-04-26  Eric Blake  <ebb9@byu.net>
21046         and Bruno Haible  <bruno@clisp.org>
21047
21048         Implement freading and fwriting.
21049         * lib/freading.c: New file.
21050         * lib/freading.h: Likewise.
21051         * m4/freading.m4: Likewise.
21052         * modules/freading: Likewise.
21053         * modules/freading-tests: Likewise.
21054         * tests/test-freading.c: Likewise.
21055         * lib/fwriting.c: New file.
21056         * lib/fwriting.h: Likewise.
21057         * m4/fwriting.m4: Likewise.
21058         * modules/fwriting: Likewise.
21059         * modules/fwriting-tests: Likewise.
21060         * tests/test-fwriting.c: Likewise.
21061         * MODULES.html.sh (File stream based Input/Output): Mention them.
21062
21063 2007-04-26  Bruno Haible  <bruno@clisp.org>
21064
21065         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
21066         'long' when we assume it.
21067         Suggested by Eric Blake.
21068
21069 2007-04-26  Bruno Haible  <bruno@clisp.org>
21070
21071         Ensure fseeko, ftello are declared on glibc systems.
21072         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
21073         * modules/fseeko (configure.ac-early): Likewise.
21074         * modules/ftello (configure.ac-early): Likewise.
21075         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
21076         AC_FUNC_FSEEKO for this.
21077         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
21078         (gl_CHECK_FSEEKO): Remove macro.
21079
21080 2007-04-26  Bruno Haible  <bruno@clisp.org>
21081
21082         * tests/test-fflush.c (main): Also check the ftell result after
21083         fflush and fseek/fseeko.
21084         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
21085         file descriptor position cache in the stream.
21086         * lib/fseeko.c (rpl_fseeko): Likewise.
21087
21088 2007-04-26  Bruno Haible  <bruno@clisp.org>
21089
21090         * modules/fflush-tests (Depends-on): Add fseeko.
21091
21092 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
21093             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21094
21095         * lib/argz_.h: ensure error_t definition is obtained in same
21096         mechanism system argz.h would have.
21097         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
21098         argz facilities are known bad.  Err on the side of caution if
21099         cross-compiling.
21100
21101 2007-04-25  Eric Blake  <ebb9@byu.net>
21102
21103         * lib/fpurge.c (includes): Use stdlib.h for free.
21104         * tests/test-fflush.c (main): Also test fflush-fseeko.
21105
21106 2007-04-25  Bruno Haible  <bruno@clisp.org>
21107
21108         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
21109         * lib/fseeko.c: New file.
21110         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
21111         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
21112         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
21113         gl_FUNC_FSEEKO.
21114         (gl_FUNC_FSEEKO): Invoke it.
21115         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
21116         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
21117         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
21118
21119 2007-04-25  Bruno Haible  <bruno@clisp.org>
21120
21121         * modules/fflush (Depends-on): Add ftello.
21122
21123 2007-04-25  Bruno Haible  <bruno@clisp.org>
21124
21125         * modules/ftello-tests: New file.
21126         * tests/test-ftello.c: New file.
21127
21128         * modules/ftello: New file.
21129         * m4/ftello.m4: New file.
21130         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
21131         HAVE_FTELLO.
21132         * lib/stdio_.h (ftello): New declaration.
21133         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
21134         HAVE_FTELLO.
21135
21136 2007-04-25  Bruno Haible  <bruno@clisp.org>
21137
21138         * modules/fseeko-tests: New file.
21139         * tests/test-fseeko.c: New file.
21140
21141         * modules/fseeko: New file.
21142         * m4/fseeko.m4: New file.
21143         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
21144         HAVE_FSEEKO.
21145         * lib/stdio_.h (fseeko): New declaration.
21146         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
21147         HAVE_FSEEKO.
21148
21149 2007-04-25  Bruno Haible  <bruno@clisp.org>
21150
21151         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
21152
21153 2007-04-25  Bruno Haible  <bruno@clisp.org>
21154
21155         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
21156         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
21157         * tests/test-unistd.c: Likewise.
21158         * tests/test-fcntl.c: Likewise.
21159
21160 2007-04-23  Eric Blake  <ebb9@byu.net>
21161
21162         * lib/fflush.c: Fix missing include.
21163         Reported by Bruno Haible.
21164
21165 2007-04-23  Bruno Haible  <bruno@clisp.org>
21166
21167         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
21168         Reported by Eric Blake.
21169
21170 2007-04-23  Bruno Haible  <bruno@clisp.org>
21171
21172         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
21173
21174 2007-04-23  Bruno Haible  <bruno@clisp.org>
21175
21176         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
21177
21178 2007-04-23  Bruno Haible  <bruno@clisp.org>
21179
21180         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
21181         Needed on HP-UX 11.
21182
21183 2007-04-16  Eric Blake  <ebb9@byu.net>
21184
21185         Make fflush rely on fpurge.
21186         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
21187         open coding all variants.
21188         * modules/fflush (Depends-on): Add fpurge and unistd.
21189         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
21190         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
21191
21192         Fix --with-tests compilation on cygwin.
21193         * modules/argmatch-tests (Makefile.am): List gnulib library first
21194         in LDADD.
21195         * modules/argp-tests (Makefile.am): Likewise.
21196         * modules/array-list-tests (Makefile.am): Likewise.
21197         * modules/array-oset-tests (Makefile.am): Likewise.
21198         * modules/avltree-list-tests (Makefile.am): Likewise.
21199         * modules/avltree-oset-tests (Makefile.am): Likewise.
21200         * modules/avltreehash-list-tests (Makefile.am): Likewise.
21201         * modules/carray-list-tests (Makefile.am): Likewise.
21202         * modules/dirname-tests (Makefile.am): Likewise.
21203         * modules/frexp-tests (Makefile.am): Likewise.
21204         * modules/isnanl-tests (Makefile.am): Likewise.
21205         * modules/linked-list-tests (Makefile.am): Likewise.
21206         * modules/linkedhash-list-tests (Makefile.am): Likewise.
21207         * modules/lock-tests (Makefile.am): Likewise.
21208         * modules/rbtree-list-tests (Makefile.am): Likewise.
21209         * modules/rbtree-oset-tests (Makefile.am): Likewise.
21210         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
21211         * modules/tls-tests (Makefile.am): Likewise.
21212         * modules/tsearch-tests (Makefile.am): Likewise.
21213         * modules/xvasprintf-tests (Makefile.am): Likewise.
21214
21215         Fix fpurge for cygwin.
21216         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
21217         value.
21218         * modules/fpurge-tests (Depends-on): Clean up trash.
21219
21220 2007-04-16  Simon Josefsson  <simon@josefsson.org>
21221
21222         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
21223
21224         * m4/autobuild.m4: Re-indent.
21225
21226 2007-04-13  Bruno Haible  <bruno@clisp.org>
21227
21228         * modules/fpurge-tests: New file.
21229         * tests/test-fpurge.c: New file.
21230
21231         * modules/fpurge: New file.
21232         * lib/fpurge.h: New file.
21233         * lib/fpurge.c: New file.
21234         * m4/fpurge.m4: New file.
21235
21236 2007-04-13  Bruno Haible  <bruno@clisp.org>
21237
21238         * modules/fbufmode-tests: New file.
21239         * tests/test-fbufmode.c: New file.
21240
21241         * modules/fbufmode: New file.
21242         * lib/fbufmode.h: New file.
21243         * lib/fbufmode.c: New file.
21244         * m4/fbufmode.m4: New file.
21245
21246 2007-04-13  Bruno Haible  <bruno@clisp.org>
21247
21248         * modules/fwritable-tests: New file.
21249         * tests/test-fwritable.c: New file.
21250
21251         * modules/fwritable: New file.
21252         * lib/fwritable.h: New file.
21253         * lib/fwritable.c: New file.
21254         * m4/fwritable.m4: New file.
21255
21256 2007-04-13  Bruno Haible  <bruno@clisp.org>
21257
21258         * modules/freadable-tests: New file.
21259         * tests/test-freadable.c: New file.
21260
21261         * modules/freadable: New file.
21262         * lib/freadable.h: New file.
21263         * lib/freadable.c: New file.
21264         * m4/freadable.m4: New file.
21265
21266 2007-04-13  Bruno Haible  <bruno@clisp.org>
21267
21268         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
21269         MOSTLYCLEANFILES.
21270
21271 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
21272
21273         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
21274         gzip bootstrap.conf to avoid dragging in i18n machinery.
21275         (gnulib_tool_option): Use it.
21276
21277 2007-04-13  Bruno Haible  <bruno@clisp.org>
21278
21279         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
21280         %F directives.
21281         * tests/test-vasprintf-posix.c (test_function): Likewise.
21282         * tests/test-snprintf-posix.h (test_function): Likewise.
21283         * tests/test-sprintf-posix.h (test_function): Likewise.
21284         * tests/test-fprintf-posix.h (test_function): Likewise.
21285         * tests/test-printf-posix.h (test_function): Likewise.
21286         * tests/test-fprintf-posix.out: Likewise.
21287
21288 2007-04-13  Bruno Haible  <bruno@clisp.org>
21289
21290         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
21291         * modules/tls-tests (configure.ac): Likewise.
21292         Reported by Arto C. Nirkko <anirkko@insel.ch>.
21293
21294 2007-04-13  Bruno Haible  <bruno@clisp.org>
21295
21296         * lib/tls.c (glthread_tls_get): Fix return type.
21297         Patch by Arto C. Nirkko <anirkko@insel.ch>.
21298
21299 2007-04-12  Eric Blake  <ebb9@byu.net>
21300
21301         * modules/gettime (Depends-on): Remove gettime.
21302         Reported by Dmitry V. Levin.
21303
21304 2007-04-12  Bruno Haible  <bruno@clisp.org>
21305
21306         * modules/fflush (Include): Mention <stdio.h>.
21307         * modules/strtoimax (Include): Mention <inttypes.h>.
21308         * modules/strtoumax (Include): Likewise.
21309
21310 2007-04-12  Eric Blake  <ebb9@byu.net>
21311
21312         * .cvsignore: New file.
21313         * .gitignore: Likewise.
21314
21315 2007-04-12  Bruno Haible  <bruno@clisp.org>
21316
21317         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
21318         not before, since $(LDADD) often contains libgnu.a.
21319         * modules/striconv-tests (test_striconv_LDADD): Likewise.
21320         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
21321         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
21322         Needed on Cygwin.
21323
21324 2007-04-12  Eric Blake  <ebb9@byu.net>
21325
21326         Work around glibc's failure to flush stdin on fclose.
21327         * lib/closein.c (close_stdin): Flush stdin before closing.
21328
21329         Work around glibc's failure to reset seekable stdin on exit.
21330         * modules/closein: New module.
21331         * lib/closein.c: New file.
21332         * lib/closein.h: Likewise.
21333         * m4/closein.m4: Likewise.
21334         * MODULES.html.sh (File stream based Input/Output): Document it.
21335
21336 2007-04-12  Simon Josefsson  <simon@josefsson.org>
21337
21338         * gnulib-tool: Rename generated 'autobuild' script to
21339         'do-autobuild' in --create-megatestdir output.
21340
21341         * doc/gnulib.texi (Build robot for gnulib): Fix.
21342
21343 2007-04-12  Simon Josefsson  <simon@josefsson.org>
21344
21345         * modules/sysexits (Depends-on): Add absolute-header.
21346
21347 2007-04-12  Eric Blake  <ebb9@byu.net>
21348
21349         No need to preserve errno on success.
21350         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
21351         Reported by Bruno Haible.
21352
21353 2007-04-12  Simon Josefsson  <simon@josefsson.org>
21354
21355         * MODULES.html.sh (Support for maintaining and releasing
21356         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
21357
21358 2007-04-12  Simon Josefsson  <simon@josefsson.org>
21359
21360         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
21361
21362 2007-04-12  Simon Josefsson  <simon@josefsson.org>
21363
21364         * modules/autobuild: New module.
21365
21366         * m4/autobuild.m4: New file.
21367
21368 2007-04-11  Bruno Haible  <bruno@clisp.org>
21369
21370         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
21371         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
21372         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
21373         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
21374         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21375         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21376         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21377         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
21378         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21379         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21380         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
21381         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21382         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21383         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
21384         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21385         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21386         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
21387         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21388         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21389         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
21390         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21391         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21392         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
21393         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21394         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21395         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
21396         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
21397         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
21398         Reported by Eric Blake.
21399
21400 2007-04-11  Bruno Haible  <bruno@clisp.org>
21401
21402         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
21403
21404 2007-04-10  Bruno Haible  <bruno@clisp.org>
21405
21406         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
21407         for NaN and Infinity. Needed on FreeBSD 6.1.
21408         * tests/test-vasnprintf-posix.c (test_function): Undo last change
21409         regarding results for "%010a" of Infinity and NaN.
21410         * tests/test-vasprintf-posix.c (test_function): Likewise.
21411         * tests/test-snprintf-posix.h (test_function): Likewise.
21412         * tests/test-sprintf-posix.h (test_function): Likewise.
21413         * tests/test-fprintf-posix.h (test_function): Likewise.
21414         * tests/test-printf-posix.h (test_function): Likewise.
21415         * tests/test-fprintf-posix.out: Likewise.
21416
21417 2007-04-10  Bruno Haible  <bruno@clisp.org>
21418
21419         * modules/locale-tests: New file.
21420         * tests/test-locale.c: New file.
21421
21422         * modules/locale: New file.
21423         * lib/locale_.h: New file.
21424         * m4/locale_h.m4: New file.
21425
21426 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
21427             Bruno Haible  <bruno@clisp.org>
21428
21429         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
21430         be determined, test for availability of the copysignf, copysign,
21431         copysignl functions.
21432         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
21433         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
21434         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
21435
21436 2007-04-09  Eric Blake  <ebb9@byu.net>
21437
21438         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
21439         * modules/stdio (Makefile.am): Support fflush.
21440         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
21441         * modules/fflush: New file.
21442         * lib/fflush.c: Likewise.
21443         * m4/fflush.m4: Likewise.
21444         * modules/fflush-tests: New test.
21445         * tests/test-fflush.c: Likewise.
21446         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
21447
21448 2007-04-06  Bruno Haible  <bruno@clisp.org>
21449
21450         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
21451         (VASNPRINTF): Use signbit for faster determination whether to print a
21452         minus sign.
21453         * modules/vasnprintf (Files): Remove lib/float+.h.
21454         * modules/fprintf-posix (Depends-on): Add signbit.
21455         * modules/snprintf-posix (Depends-on): Likewise.
21456         * modules/sprintf-posix (Depends-on): Likewise.
21457         * modules/vasnprintf-posix (Depends-on): Likewise.
21458         * modules/vasprintf-posix (Depends-on): Likewise.
21459         * modules/vfprintf-posix (Depends-on): Likewise.
21460         * modules/vsnprintf-posix (Depends-on): Likewise.
21461         * modules/vsprintf-posix (Depends-on): Likewise.
21462
21463 2007-04-06  Bruno Haible  <bruno@clisp.org>
21464
21465         * tests/test-frexp.c (main): Test also the sign bit of zero results.
21466         * tests/test-frexpl.c (main): Likewise.
21467         * tests/test-ldexpl.c (main): Likewise.
21468         * modules/frexp-tests (Depends-on): Add signbit.
21469         * modules/frexpl-tests (Depdends-on): Likewise.
21470         * modules/ldexpl-tests (Depdends-on): Likewise.
21471
21472 2007-04-06  Bruno Haible  <bruno@clisp.org>
21473
21474         * modules/signbit-tests: New file.
21475         * tests/test-signbit.c: New file.
21476
21477         * modules/signbit: New file.
21478         * lib/signbitf.c: New file.
21479         * lib/signbitd.c: New file.
21480         * lib/signbitl.c: New file.
21481         * m4/signbit.m4: New file.
21482         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
21483         (signbit): New macro.
21484         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
21485         REPLACE_SIGNBIT.
21486         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
21487         REPLACE_FREXPL into math.h.
21488
21489 2007-04-06  Bruno Haible  <bruno@clisp.org>
21490
21491         * modules/isnanf-nolibm-tests: New file.
21492         * tests/test-isnanf.c: New file.
21493
21494         * modules/isnanf-nolibm: New file.
21495         * lib/isnanf.h: New file.
21496         * lib/isnanf.c: New file.
21497         * lib/isnan.c: Consider the USE_FLOAT macro.
21498         * m4/isnanf.m4: New file.
21499
21500 2007-04-06  Bruno Haible  <bruno@clisp.org>
21501
21502         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
21503         (Link): New section.
21504
21505         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
21506
21507 2007-04-06  Bruno Haible  <bruno@clisp.org>
21508
21509         Assume the 'long double' type.
21510         * m4/longdouble.m4: Remove file.
21511         * config/srclist.txt: Don't mention longdouble.m4.
21512         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
21513         * lib/float+.h: Likewise.
21514         * lib/frexp.c: Likewise.
21515         * lib/printf-args.h: Likewise.
21516         * lib/printf-args.c: Likewise.
21517         * lib/printf-frexp.c: Likewise.
21518         * lib/printf-parse.c: Likewise.
21519         * lib/vasnprintf.c: Likewise.
21520         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
21521         * m4/intl.m4: Likewise.
21522         * m4/isnanl.m4: Likewise.
21523         * m4/printf.m4: Likewise.
21524         * m4/printf-frexpl.m4: Likewise.
21525         * m4/vasnprintf.m4: Likewise.
21526         * modules/allocsa (Files): Remove m4/longdouble.m4.
21527         * modules/gettext (Files): Likewise.
21528         * modules/relocatable-prog-wrapper (Files): Likewise.
21529         * modules/vasnprintf (Files): Likewise.
21530         * modules/isnanl (Files): Likewise.
21531         (Include): Simplify.
21532         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
21533         (Include): Simplify.
21534         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
21535         (Include): Simplify.
21536         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
21537         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21538         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
21539         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21540         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
21541         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21542         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
21543         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21544         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
21545         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21546         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
21547         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
21548         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
21549         * tests/test-isnanl.c: Likewise.
21550         * tests/test-snprintf-posix.h: Likewise.
21551         * tests/test-sprintf-posix.h: Likewise.
21552         * tests/test-vasnprintf-posix.c: Likewise.
21553         * tests/test-vasnprintf-posix2.c: Likewise.
21554         * tests/test-vasprintf-posix.c: Likewise.
21555
21556 2007-04-06  Bruno Haible  <bruno@clisp.org>
21557
21558         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
21559         * lib/math_.h [__DECC]: Include the overridden include file through
21560         #include_next, outside the double-inclusion guard.
21561         * lib/stdio_.h [__DECC]: Likewise.
21562         * lib/stdlib_.h [__DECC]: Likewise.
21563         * lib/string_.h [__DECC]: Likewise.
21564         * lib/time_.h [__DECC]: Likewise.
21565         * lib/wchar_.h [__DECC]: Likewise.
21566         * lib/wctype_.h [__DECC]: Likewise.
21567         * lib/inttypes_.h [__DECC]: Likewise.
21568         Reported by Albert Chin <china@thewrittenword.com> in
21569         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
21570
21571 2007-04-04  Eric Blake  <ebb9@byu.net>
21572
21573         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
21574         1.5.x.
21575
21576 2007-04-04  Bruno Haible  <bruno@clisp.org>
21577
21578         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
21579         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
21580
21581 2007-04-04  Bruno Haible  <bruno@clisp.org>
21582
21583         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
21584         results for "%010a" of Infinity and NaN.
21585         * tests/test-vasprintf-posix.c (test_function): Likewise.
21586         * tests/test-snprintf-posix.h (test_function): Likewise.
21587         * tests/test-sprintf-posix.h (test_function): Likewise.
21588         * tests/test-fprintf-posix.h (test_function): Remove these tests.
21589         * tests/test-printf-posix.h (test_function): Likewise.
21590         * tests/test-fprintf-posix.out: Update.
21591         Needed for FreeBSD 6.1.
21592
21593 2007-04-04  Bruno Haible  <bruno@clisp.org>
21594
21595         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
21596         directly used by the gnulib modules nor by gnulib-tool.
21597
21598 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
21599
21600         * DEPENDENCIES: Give overall description of version dependency
21601         desirability.  Use more-typical names for apps.
21602         Add shell, coreutils, diffutils, grep, tar, gzip.
21603
21604 2007-04-04  Simon Josefsson  <simon@josefsson.org>
21605
21606         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
21607
21608 2007-04-04  Karl Berry  <karl@gnu.org>
21609
21610         * MODULES.html.sh (func_module): missing '.
21611
21612 2007-04-03  Bruno Haible  <bruno@clisp.org>
21613
21614         * modules/argmatch-tests (Makefile.am): New variable
21615         test_argmatch_LDADD.
21616         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
21617         * modules/array-list-tests (Makefile.am): New variable
21618         test_array_list_LDADD.
21619         * modules/array-oset-tests (Makefile.am): New variable
21620         test_array_oset_LDADD.
21621         * modules/avltree-list-tests (Makefile.am): New variable
21622         test_avltree_list_LDADD.
21623         * modules/avltree-oset-tests (Makefile.am): New variable
21624         test_avltree_oset_LDADD.
21625         * modules/avltreehash-list-tests (Makefile.am): New variable
21626         test_avltreehash_list_LDADD.
21627         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
21628         test_canonicalize_lgpl_LDADD.
21629         * modules/carray-list-tests (Makefile.am): New variable
21630         test_carray_list_LDADD.
21631         * modules/dirname-tests (Makefile.am): New variable
21632         test_dirname_LDADD.
21633         * modules/linked-list-tests (Makefile.am): New variable
21634         test_linked_list_LDADD.
21635         * modules/linkedhash-list-tests (Makefile.am): New variable
21636         test_linkedhash_list_LDADD.
21637         * modules/rbtree-list-tests (Makefile.am): New variable
21638         test_rbtree_list_LDADD.
21639         * modules/rbtree-oset-tests (Makefile.am): New variable
21640         test_rbtree_oset_LDADD.
21641         * modules/rbtreehash-list-tests (Makefile.am): New variable
21642         test_rbtreehash_list_LDADD.
21643         * modules/xvasprintf-tests (Makefile.am): New variable
21644         test_xvasprintf_LDADD.
21645         Reported by Eric Blake.
21646
21647 2007-04-03  Eric Blake  <ebb9@byu.net>
21648
21649         * DEPENDENCIES: Weaken m4 requirements.
21650
21651 2007-04-03  Bruno Haible  <bruno@clisp.org>
21652
21653         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
21654         * modules/isnanl-tests (configure.ac): Likewise.
21655
21656 2007-04-03  Ben Pfaff  <blp@gnu.org>
21657
21658         * modules/iconv_open: Add $(srcdir)/ to source directory
21659         references in Makefile fragments that call gperf, to fix VPATH
21660         builds.
21661
21662 2007-04-03  Bruno Haible  <bruno@clisp.org>
21663
21664         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
21665         * lib/ldexpl.c: Undo last change.
21666
21667 2007-04-03  Bruno Haible  <bruno@clisp.org>
21668
21669         * modules/printf-frexpl (Depends-on): Undo last change.
21670         (Files): Add m4/ldexpl.m4.
21671
21672 2007-04-03  Bruno Haible  <bruno@clisp.org>
21673
21674         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
21675         * modules/isnanl (Link): New section.
21676
21677         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
21678         * modules/frexp (Link): New section.
21679
21680         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
21681         * modules/frexpl (Link): New section.
21682
21683         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
21684         * modules/ldexpl (Link): New section.
21685
21686 2007-04-03  Bruno Haible  <bruno@clisp.org>
21687
21688         * modules/TEMPLATE-EXTENDED: New file.
21689         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
21690
21691 2007-04-03  Bruno Haible  <bruno@clisp.org>
21692
21693         * DEPENDENCIES: New file.
21694         Suggested by Simon Josefsson.
21695
21696 2007-04-03  Bruno Haible  <bruno@clisp.org>
21697
21698         * doc/gnulib.texi: Escape @.
21699
21700 2007-04-03  James Youngman  <jay@gnu.org>
21701         and Paul Eggert  <eggert@cs.ucla.edu>
21702
21703         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
21704         birthtime on all systems that have birthtime, not just those which
21705         use st_birthtimensec rather than st_birthtim.  Putting zero in
21706         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
21707         that the birth time is not available for files on an NFS mount.
21708
21709 2007-04-03  Simon Josefsson  <simon@josefsson.org>
21710
21711         * modules/memxor: Move back from crypto/, suggested by Bruno.
21712         * modules/crypto/hmac-sha1: Fix memxor dependency.
21713
21714         * modules/crypto/gc: Moved from ../.
21715
21716 2007-04-02  Eric Blake  <ebb9@byu.net>
21717
21718         * lib/ldexpl.c (includes): Avoid libm.
21719
21720         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
21721
21722 2007-04-02  Bruno Haible  <bruno@clisp.org>
21723
21724         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
21725         on IRIX.
21726
21727 2007-04-02  Bruno Haible  <bruno@clisp.org>
21728
21729         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
21730         x86 or x86_64 platforms running MacOS X.
21731         Reported by Ryan Schmidt <@ryandesign.com>.
21732
21733 2007-04-02  Bruno Haible  <bruno@clisp.org>
21734
21735         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
21736         i386.
21737
21738 2007-04-01  Simon Josefsson  <simon@josefsson.org>
21739
21740         * modules/crypto/arcfour: Moved from ../.
21741         * modules/crypto/arcfour-tests: Moved from ../.
21742         * modules/crypto/arctwo: Moved from ../.
21743         * modules/crypto/arctwo-tests: Moved from ../.
21744         * modules/crypto/des: Moved from ../.
21745         * modules/crypto/des-tests: Moved from ../.
21746         * modules/crypto/gc-arcfour: Moved from ../.
21747         * modules/crypto/gc-arcfour-tests: Moved from ../.
21748         * modules/crypto/gc-arctwo: Moved from ../.
21749         * modules/crypto/gc-arctwo-tests: Moved from ../.
21750         * modules/crypto/gc-des: Moved from ../.
21751         * modules/crypto/gc-des-tests: Moved from ../.
21752         * modules/crypto/gc-hmac-md5: Moved from ../.
21753         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
21754         * modules/crypto/gc-hmac-sha1: Moved from ../.
21755         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
21756         * modules/crypto/gc-md2: Moved from ../.
21757         * modules/crypto/gc-md2-tests: Moved from ../.
21758         * modules/crypto/gc-md4: Moved from ../.
21759         * modules/crypto/gc-md4-tests: Moved from ../.
21760         * modules/crypto/gc-md5: Moved from ../.
21761         * modules/crypto/gc-md5-tests: Moved from ../.
21762         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
21763         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
21764         * modules/crypto/gc-random: Moved from ../.
21765         * modules/crypto/gc-rijndael: Moved from ../.
21766         * modules/crypto/gc-rijndael-tests: Moved from ../.
21767         * modules/crypto/gc-sha1: Moved from ../.
21768         * modules/crypto/gc-sha1-tests: Moved from ../.
21769         * modules/crypto/gc-tests: Moved from ../.
21770         * modules/crypto/hmac-md5: Moved from ../.
21771         * modules/crypto/hmac-md5-tests: Moved from ../.
21772         * modules/crypto/hmac-sha1: Moved from ../.
21773         * modules/crypto/hmac-sha1-tests: Moved from ../.
21774         * modules/crypto/md2: Moved from ../.
21775         * modules/crypto/md2-tests: Moved from ../.
21776         * modules/crypto/md4: Moved from ../.
21777         * modules/crypto/md4-tests: Moved from ../.
21778         * modules/crypto/md5: Moved from ../.
21779         * modules/crypto/md5-tests: Moved from ../.
21780         * modules/crypto/memxor: Moved from ../.
21781         * modules/crypto/rijndael: Moved from ../.
21782         * modules/crypto/rijndael-tests: Moved from ../.
21783         * modules/crypto/sha1: Moved from ../.
21784
21785 2007-03-30  James Youngman  <jay@gnu.org>
21786
21787         * tests/test-stat-time.c (prepare_test): use chmod() rather than
21788         rename() to change the ctime of a file (because ctime is unaffected
21789         by rename on jfs2 on AIX 5.1).
21790         (main): Start by doing cleanup, in case a previous run failed leaving
21791         test files behind.
21792
21793 2007-03-31  Bruno Haible  <bruno@clisp.org>
21794
21795         Support old proprietary implementations of iconv.
21796         * modules/iconv_open: New file.
21797         * lib/iconv_.h: New file.
21798         * m4/iconv_h.m4: New file.
21799         * lib/iconv_open.c: New file.
21800         * lib/iconv_open-aix.gperf: New file.
21801         * lib/iconv_open-hpux.gperf: New file.
21802         * lib/iconv_open-irix.gperf: New file.
21803         * lib/iconv_open-osf.gperf: New file.
21804         * m4/iconv_open.m4: New file.
21805         * modules/linebreak (Depends-on): Add iconv_open.
21806         * modules/striconv (Depends-on): Likewise.
21807         * modules/striconveh (Depends-on): Likewise.
21808         * modules/unicodeio (Depends-on): Likewise.
21809         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
21810         (iconv_t)(-1).
21811         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
21812         conversion if cd is (iconv_t)(-1).
21813         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
21814         is not possible.
21815
21816 2007-03-31  Bruno Haible  <bruno@clisp.org>
21817
21818         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
21819         work on Solaris either. Protect also second use of "autodetect_jp".
21820
21821 2007-03-31  Bruno Haible  <bruno@clisp.org>
21822
21823         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
21824         the function is not present.
21825
21826 2007-03-31  Bruno Haible  <bruno@clisp.org>
21827
21828         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
21829         the function is not present.
21830
21831 2007-03-31  Bruno Haible  <bruno@clisp.org>
21832
21833         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
21834         a bug in HP-UX iconv_open().
21835
21836 2007-03-31  Bruno Haible  <bruno@clisp.org>
21837
21838         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
21839         (Mathematics <math.h>): New section, add fpieee.
21840         (Input/output <stdio.h>): Add fseterr.
21841         (Mathematics <math.h>): New section, add printf-frexp.
21842         (Container data structures): Add sublist.
21843         (Core language properties): Add fpucw, inline.
21844         (Functions for greatest-width integer types <inttypes.h>): Add
21845         imaxabs, imaxdiv, inttypes.
21846         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
21847         isnanl-nolibm, ldexp.
21848         (Mathematics <math.h>): New section, add printf-frexpl.
21849         (Support for systems lacking POSIX:2001): Add fprintf-posix,
21850         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
21851         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
21852         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
21853         (Unicode string functions): Add unistr/u*-mbtoucr.
21854         (Java): Add javacomp-script, javaexec-script.
21855         (C#): Add csharpcomp-script, csharpexec-script.
21856         (Support for building libraries and executables): Add havelib,
21857         relocatable-*.
21858         (Support for maintaining and releasing projects): Renamed from
21859         'Support for maintaining and release projects'. Add announce-gen.
21860
21861 2007-03-31  Bruno Haible  <bruno@clisp.org>
21862
21863         * README: Talk primarily about git.
21864         (git and CVS): Renamed from CVS.
21865         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
21866         gnulib is available through git.
21867         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
21868
21869 2007-03-30  Bruno Haible  <bruno@clisp.org>
21870
21871         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
21872         * lib/poll_.h: Likewise.
21873         * lib/stat_.h: Likewise.
21874         * lib/sys_time_.h: Likewise.
21875         * lib/sysexit_.h: Likewise.
21876         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
21877         * lib/stdbool_.h: Likewise.
21878         * lib/byteswap_.h: Add double-inclusion guard.
21879
21880 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
21881
21882         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
21883
21884 2007-03-30  Karl Berry  <karl@gnu.org>
21885
21886         * config/srclist-update: double space after USA in the license
21887         substitution, since that's how it's usually (?) written.
21888
21889 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
21890
21891         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
21892         reported by Bruno Haible.
21893
21894 2007-03-29  Bruno Haible  <bruno@clisp.org>
21895
21896         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
21897         a bug in AIX iconv().
21898
21899 2007-03-29  Bruno Haible  <bruno@clisp.org>
21900
21901         * modules/ldexpl-tests: New file.
21902         * tests/test-ldexpl.c: New file.
21903
21904 2007-03-29  Bruno Haible  <bruno@clisp.org>
21905
21906         * lib/ldexpl.c: Include fpucw.h.
21907         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
21908         multiplication.
21909         * modules/ldexpl (Depends-on): Add fpucw.
21910
21911 2007-03-29  Bruno Haible  <bruno@clisp.org>
21912
21913         * modules/ldexpl: New file.
21914         * m4/ldexpl.m4: New file.
21915         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
21916         set.
21917         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
21918         REPLACE_LDEXPL.
21919         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
21920         REPLACE_LDEXPL.
21921         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
21922         gl_FUNC_LDEXPL_WORKS.
21923         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
21924         * modules/mathl (Files): Remove lib/ldexpl.c.
21925         (Depends-on): Add ldexpl.
21926
21927 2007-03-29  Bruno Haible  <bruno@clisp.org>
21928
21929         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
21930
21931 2007-03-29  Bruno Haible  <bruno@clisp.org>
21932
21933         * tests/test-striconveh.c (main): Don't assume that a direct conversion
21934         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
21935         and possibly also HP-UX.
21936         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
21937         work on AIX, IRIX, HP-UX, OSF/1.
21938         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
21939         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
21940         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
21941         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
21942         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
21943         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
21944
21945 2007-03-29  Bruno Haible  <bruno@clisp.org>
21946
21947         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
21948
21949 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
21950
21951         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
21952         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
21953
21954 2007-03-29  Eric Blake  <ebb9@byu.net>
21955
21956         * lib/acl-internal.h: Remove redundant include.
21957         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
21958         Cygwin when a file is locked.
21959
21960 2007-03-29  Bruno Haible  <bruno@clisp.org>
21961
21962         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
21963         file.
21964         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
21965
21966 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
21967
21968         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
21969         try to remove a parent directory if the child couldn't be removed
21970         (except for the first rmdir, which could fail because the child
21971         doesn't exist).  Problem reported by Jeff Blaine in
21972         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
21973
21974 2007-03-28  Bruno Haible  <bruno@clisp.org>
21975
21976         * lib/striconveh.c (utf8conv_carefully): New function.
21977         (mem_cd_iconveh_internal): Invoke it.
21978
21979 2007-03-28  Bruno Haible  <bruno@clisp.org>
21980
21981         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
21982         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
21983         input.
21984         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
21985         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
21986         unistr/u8-uctomb.
21987
21988 2007-03-28  Bruno Haible  <bruno@clisp.org>
21989
21990         * modules/unistr/u8-mbtoucr: New file.
21991         * lib/unistr/u8-mbtoucr.c: New file.
21992         * modules/unistr/u16-mbtoucr: New file.
21993         * lib/unistr/u16-mbtoucr.c: New file.
21994         * modules/unistr/u16-mbtoucr: New file.
21995         * lib/unistr/u16-mbtoucr.c: New file.
21996         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
21997
21998 2007-03-27  Simon Josefsson  <simon@josefsson.org>
21999             Bruno Haible  <bruno@clisp.org>
22000
22001         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
22002         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
22003         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
22004
22005         * m4/stdio_h.m4: Add stubs for vasprintf too.
22006
22007         * modules/stdio: Support vasprintf in sed command.
22008
22009         * modules/vasprintf: Depend on stdio for prototypes.  Remove
22010         vasprintf.h.  Add stdio module indicator.
22011
22012         * lib/stdio_.h: Declare asprintf and vasprintf, based on
22013         vasprintf.h.
22014
22015         * lib/vasprintf.h: File removed.
22016
22017         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
22018         * lib/vasprintf.c: Ditto.
22019         * lib/xvasprintf.c: Ditto.
22020         * tests/test-vasprintf-posix.c: Ditto.
22021         * tests/test-vasprintf.c: Ditto.
22022
22023 2007-03-27  Bruno Haible  <bruno@clisp.org>
22024
22025         Make vasnprintf multithread-safe.
22026         * lib/vasnprintf.c (decimal_point_char): New function.
22027         (VASNPRINTF): Use it.
22028         Suggested by Simon Josefsson.
22029
22030 2007-03-27  Eric Blake  <ebb9@byu.net>
22031
22032         Support sub-second birthtime on cygwin.
22033         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
22034         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
22035         (get_stat_birthtime): Also work with st_birthtim.
22036
22037 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
22038
22039         * lib/stat-time.h (USE_BIRTHTIME): Remove.
22040         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
22041         (get_stat_birthtime_ns): Do not try to use "spare" fields.
22042         (get_stat_birthtime_ns): Simplify compile-time tests.
22043         (get_stat_birthtime): Change the API to look like
22044         get_stat_mtime etc., except return a negative tv_nsec on error.
22045         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
22046         Don't check for "spare" fields.
22047         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
22048         or for struct stat.st_birthtime, as these tests aren't used.
22049         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
22050
22051 2007-03-27  Bruno Haible  <bruno@clisp.org>
22052
22053         * lib/stat-time.h: Include <sys/stat.h>.
22054
22055 2007-03-27  James Youngman  <jay@gnu.org>
22056
22057         * lib/stat-time.h (get_stat_birthtime): New function for
22058           retrieving st_birthtime as provided by UFS2 (hence *BSD).
22059         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
22060           and its variants.
22061         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
22062         * modules/stat-time-test: New file.
22063         * tests/test-stat-time.c: New test, devised by Bruno Haible.
22064
22065 2007-03-26  Bruno Haible  <bruno@clisp.org>
22066
22067         Better support of signalling NaNs.
22068         * lib/atanl.c: Include isnanl.h.
22069         (atanl): Perform test for NaN at the beginning of the function and
22070         through a call to isnanl.
22071         * lib/cosl.c: Include isnanl.h.
22072         (cosl): Perform test for NaN at the beginning of the function and
22073         through a call to isnanl.
22074         * lib/ldexpl.c: Include isnanl.h.
22075         (ldexpl): Perform test for NaN through a call to isnanl.
22076         * lib/logl.c: Include isnanl.h.
22077         (logl): Perform test for NaN at the beginning of the function and
22078         through a call to isnanl.
22079         * lib/sinl.c: Include isnanl.h.
22080         (sinl): Perform test for NaN at the beginning of the function and
22081         through a call to isnanl.
22082         * lib/sqrtl.c: Include isnanl.h.
22083         (sqrtl): Perform test for NaN at the beginning of the function and
22084         through a call to isnanl.
22085         * lib/tanl.c: Include isnanl.h.
22086         (tanl): Perform test for NaN at the beginning of the function and
22087         through a call to isnanl.
22088         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
22089         * modules/mathl (Depends-on): Add isnanl.
22090
22091 2007-03-26  Eric Blake  <ebb9@byu.net>
22092
22093         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
22094         regression in logic sense of previous patch.
22095
22096 2007-03-26  Bruno Haible  <bruno@clisp.org>
22097
22098         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
22099         unportable shell command "if ! ...".
22100         Reported by Ralf Wildenhues.
22101
22102 2007-03-25  Bruno Haible  <bruno@clisp.org>
22103
22104         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
22105         <sysexits.h> file, and only add EX_CONFIG.
22106         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
22107         absolute file name and whether it is sufficient. Substitute also
22108         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
22109         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
22110         ABSOLUTE_SYSEXITS_H into sysexits.h.
22111
22112 2007-03-25  Bruno Haible  <bruno@clisp.org>
22113
22114         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
22115         hints is NULL.
22116
22117 2007-03-25  Bruno Haible  <bruno@clisp.org>
22118
22119         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
22120         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
22121
22122 2007-03-25  Bruno Haible  <bruno@clisp.org>
22123
22124         * lib/vasnprintf.c: Include langinfo.h.
22125         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
22126         multithread-safe.
22127         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
22128         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
22129         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22130         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22131         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22132         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22133         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22134         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
22135         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22136         Reported by Simon Josefsson.
22137
22138 2007-03-25  Bruno Haible  <bruno@clisp.org>
22139
22140         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
22141         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
22142         * modules/vasnprintf (Depends-on): Add stdint.
22143
22144 2007-03-25  Bruno Haible  <bruno@clisp.org>
22145
22146         * modules/fpieee: New file.
22147         * m4/fpieee.m4: New file.
22148         * modules/isnan-nolibm (Depends-on): Add fpieee.
22149         * modules/isnanl-nolibm (Depends-on): Add fpieee.
22150         * modules/isnanl (Depends-on): Add fpieee.
22151
22152 2007-03-25  Bruno Haible  <bruno@clisp.org>
22153
22154         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
22155
22156 2007-03-25  Bruno Haible  <bruno@clisp.org>
22157
22158         Avoid test failures on IRIX 6.5.
22159         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
22160         (main): Use it.
22161         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
22162         macros.
22163         (main): Use them.
22164
22165 2007-03-25  Bruno Haible  <bruno@clisp.org>
22166
22167         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
22168         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
22169         exists but doesn't work.
22170         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
22171         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
22172         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
22173         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
22174
22175 2007-03-25  Bruno Haible  <bruno@clisp.org>
22176
22177         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
22178         returns inf. Needed on IRIX 6.5.
22179
22180 2007-03-25  Bruno Haible  <bruno@clisp.org>
22181
22182         * tests/test-frexpl.c: Include isnanl-nolibm.h.
22183         (main): Use isnanl instead of x != x idiom.
22184         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
22185
22186         * tests/test-frexp.c: Include isnan.h.
22187         (main): Use isnan instead of x != x idiom.
22188         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
22189
22190 2007-03-25  Bruno Haible  <bruno@clisp.org>
22191
22192         * tests/test-frexp.c (NaN): New function/macro.
22193         (main): Use it instead of 0.0 / 0.0.
22194         * tests/test-isnan.c (NaN): New function/macro.
22195         (main): Use it instead of 0.0 / 0.0.
22196         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
22197         (test_function): Use it instead of 0.0 / 0.0.
22198         * tests/test-vasprintf-posix.c (NaN): New function/macro.
22199         (test_function): Use it instead of 0.0 / 0.0.
22200         * tests/test-snprintf-posix.h (NaN): New function/macro.
22201         (test_function): Use it instead of 0.0 / 0.0.
22202         * tests/test-sprintf-posix.h (NaN): New function/macro.
22203         (test_function): Use it instead of 0.0 / 0.0.
22204         * tests/test-fprintf-posix.h (NaN): New function/macro.
22205         (test_function): Use it instead of 0.0 / 0.0.
22206         * tests/test-printf-posix.h (NaN): New function/macro.
22207         (test_function): Use it instead of 0.0 / 0.0.
22208
22209         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
22210
22211 2007-03-25  Bruno Haible  <bruno@clisp.org>
22212
22213         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
22214
22215 2007-03-25  Bruno Haible  <bruno@clisp.org>
22216
22217         * lib/regexec.c (merge_state_with_log): Make static.
22218
22219 2007-03-25  Bruno Haible  <bruno@clisp.org>
22220
22221         * lib/trigl.c (kernel_rem_pio2): Make static.
22222
22223 2007-03-25  Bruno Haible  <bruno@clisp.org>
22224
22225         * lib/sincosl.c (sincosl_table): Make static.
22226
22227 2007-03-25  Bruno Haible  <bruno@clisp.org>
22228
22229         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
22230         if the compiler does not support C99.
22231
22232 2007-03-25  Bruno Haible  <bruno@clisp.org>
22233
22234         * modules/time (Makefile.am): Ensure all rule action lines start with a
22235         tab.
22236
22237 2007-03-24  Bruno Haible  <bruno@clisp.org>
22238
22239         * modules/tsearch-tests: New file.
22240         * tests/test-tsearch.sh: New file.
22241         * tests/test-tsearch.c: New file, mostly copied from glibc.
22242
22243         * modules/search-tests: New file.
22244         * tests/test-search.c: New file.
22245
22246         * modules/search: New file.
22247         * lib/search_.h: New file, incorporating lib/tsearch.h.
22248         * m4/search_h.m4: New file.
22249         * lib/tsearch.h: Remove file.
22250         * lib/tsearch.c: Include search.h instead of tsearch.h.
22251         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
22252         HAVE_TSEARCH.
22253         * modules/tsearch (Files): Remove lib/tsearch.h.
22254         (Depends-on): Add search.
22255         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
22256         (Include): Change tsearch.h into search.h.
22257
22258 2007-03-24  Bruno Haible  <bruno@clisp.org>
22259
22260         * modules/fpucw: New file.
22261         * lib/fpucw.h: New file.
22262         * lib/frexp.c: Include fpucw.h.
22263         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
22264         (FUNC): Use them.
22265         * lib/printf-frexp.c: Include fpucw.h.
22266         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
22267         (FUNC): Use them.
22268         * lib/vasnprintf.c: Include fpucw.h.
22269         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
22270         'long double' calculations.
22271         * tests/test-frexpl.c: Include fpucw.h.
22272         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
22273         * tests/test-printf-frexpl.c: Include fpucw.h.
22274         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
22275         * modules/frexpl (Depends-on): Add fpucw.
22276         * modules/printf-frexpl (Depends-on): Likewise.
22277         * modules/fprintf-posix (Depends-on): Likewise.
22278         * modules/snprintf-posix (Depends-on): Likewise.
22279         * modules/sprintf-posix (Depends-on): Likewise.
22280         * modules/vasnprintf-posix (Depends-on): Likewise.
22281         * modules/vasprintf-posix (Depends-on): Likewise.
22282         * modules/vfprintf-posix (Depends-on): Likewise.
22283         * modules/vsnprintf-posix (Depends-on): Likewise.
22284         * modules/vsprintf-posix (Depends-on): Likewise.
22285         * modules/frexpl-tests (Depends-on): Likewise.
22286         * modules/printf-frexpl-tests (Depends-on): Likewise.
22287
22288 2007-03-24  Bruno Haible  <bruno@clisp.org>
22289
22290         * lib/float+.h: New file.
22291         * lib/isnan.c: Include float+.h.
22292         (SIZE): New macro.
22293         (FUNC): Compare only SIZE bytes of the value.
22294         * lib/vasnprintf.c: Include float+.h.
22295         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
22296         SIZEOF_LDBL or SIZEOF_DBL bytes.
22297         * modules/isnan-nolibm (Files): Add lib/float+.h.
22298         * modules/isnanl-nolibm (Files): Add lib/float+.h.
22299         * modules/isnanl (Files): Add lib/float+.h.
22300         * modules/vasnprintf (Files): Add lib/float+.h.
22301
22302 2007-03-24  Bruno Haible  <bruno@clisp.org>
22303
22304         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
22305         include isnanl-nolibm.h.
22306
22307 2007-03-24  Bruno Haible  <bruno@clisp.org>
22308
22309         * tests/test-read-file.c (main): Don't produce spurious output for
22310         expected situations. Make the test fail if it encountered unexpected
22311         results.
22312
22313 2007-03-24  Bruno Haible  <bruno@clisp.org>
22314
22315         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
22316         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
22317
22318 2007-03-24  Bruno Haible  <bruno@clisp.org>
22319
22320         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
22321
22322 2007-03-24  Bruno Haible  <bruno@clisp.org>
22323
22324         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
22325         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
22326
22327         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
22328         * modules/utf8-ucs4: Turn into a symbolic link to module
22329         unistr/u8-mbtouc.
22330
22331         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
22332         utf8-ucs4-unsafe.
22333         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
22334         unistr/u8-mbtouc-unsafe.
22335
22336         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
22337         * modules/utf16-ucs4: Turn into a symbolic link to module
22338         unistr/u16-mbtouc.
22339
22340         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
22341         utf16-ucs4-unsafe.
22342         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
22343         unistr/u16-mbtouc-unsafe.
22344
22345         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
22346         * modules/ucs4-utf8: Turn into a symbolic link to module
22347         unistr/u8-ubtomb.
22348
22349         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
22350         * modules/ucs4-utf16: Turn into a symbolic link to module
22351         unistr/u16-ubtomb.
22352
22353 2007-03-24  Bruno Haible  <bruno@clisp.org>
22354
22355         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
22356         Enable the function only if HAVE_INLINE.
22357         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
22358         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
22359         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
22360         Enable the function only if HAVE_INLINE.
22361         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
22362         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
22363         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
22364         Enable the function only if HAVE_INLINE.
22365         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
22366         Enable the function only if HAVE_INLINE.
22367         * modules/utf8-ucs4: Update.
22368         * modules/utf8-ucs4-unsafe: Update.
22369         * modules/utf16-ucs4: Update.
22370         * modules/utf16-ucs4-unsafe: Update.
22371         * modules/ucs4-utf8: Update.
22372         * modules/ucs4-utf16: Update.
22373
22374 2007-03-24  Bruno Haible  <bruno@clisp.org>
22375
22376         * lib/utf8-ucs4.h: Remove file.
22377         * lib/utf8-ucs4-unsafe.h: Remove file.
22378         * lib/utf16-ucs4.h: Remove file.
22379         * lib/utf16-ucs4-unsafe.h: Remove file.
22380         * lib/ucs4-utf8.h: Remove file.
22381         * lib/ucs4-utf16.h: Remove file.
22382         * lib/unistr.h: Include their previous contents.
22383         * m4/utf-ucs4.m4: Remove file.
22384         * m4/ucs4-utf.m4: Remove file.
22385         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
22386         (Depends-on): Add unistr/base.
22387         (configure.ac): Remove gl_UTF_UCS4.
22388         (Makefile.am): Update.
22389         (Include): Change to unistr.h.
22390         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
22391         (Depends-on): Add unistr/base.
22392         (configure.ac): Remove gl_UTF_UCS4.
22393         (Makefile.am): Update.
22394         (Include): Change to unistr.h.
22395         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
22396         (Depends-on): Add unistr/base.
22397         (configure.ac): Remove gl_UTF_UCS4.
22398         (Makefile.am): Update.
22399         (Include): Change to unistr.h.
22400         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
22401         (Depends-on): Add unistr/base.
22402         (configure.ac): Remove gl_UTF_UCS4.
22403         (Makefile.am): Update.
22404         (Include): Change to unistr.h.
22405         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
22406         (Depends-on): Add unistr/base.
22407         (configure.ac): Remove gl_UCS4_UTF.
22408         (Makefile.am): Update.
22409         (Include): Change to unistr.h.
22410         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
22411         (Depends-on): Add unistr/base.
22412         (configure.ac): Remove gl_UCS4_UTF.
22413         (Makefile.am): Update.
22414         (Include): Change to unistr.h.
22415         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
22416         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
22417         utf8-ucs4-unsafe.h.
22418         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
22419         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
22420         utf16-ucs4-unsafe.h.
22421         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
22422         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
22423         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
22424         * lib/unistr/u8-strchr.c: Likewise.
22425         * lib/unistr/u8-strrchr.c: Likewise.
22426         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
22427         * lib/unistr/u16-strchr.c: Likewise.
22428         * lib/unistr/u16-strrchr.c: Likewise.
22429         * lib/striconveh.c: Update.
22430         * lib/linebreak.c: Update.
22431
22432 2007-03-24  Bruno Haible  <bruno@clisp.org>
22433
22434         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
22435         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
22436
22437 2007-03-22  Bruno Haible  <bruno@clisp.org>
22438
22439         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
22440
22441 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
22442
22443         * MODULES.html.sh (File system functions): New module write-any-file.
22444         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
22445         * m4/write-any-file.m4: New files.
22446
22447 2007-03-23  Eric Blake  <ebb9@byu.net>
22448
22449         * gnulib-tool: Rearrange space-tab sequences, since some editors
22450         like to eat them.
22451
22452 2007-03-23  Eric Blake  <ebb9@byu.net>
22453
22454         * lib/version-etc.c (version_etc_va): Update license wording to
22455         be more concise.  Recommended by Richard Stallman.
22456
22457 2007-03-22  Bruno Haible  <bruno@clisp.org>
22458
22459         * lib/poll.c (MSG_PEEK): New fallback definition.
22460
22461 2007-03-22  Bruno Haible  <bruno@clisp.org>
22462
22463         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
22464         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
22465         (main): Update.
22466         Fixes a compilation error on BeOS.
22467
22468 2007-03-22  Bruno Haible  <bruno@clisp.org>
22469
22470         * modules/frexpl-tests: New file.
22471         * tests/test-frexpl.c: New file.
22472
22473         * modules/frexpl: New file.
22474         * m4/frexpl.m4: New file.
22475         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
22476         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
22477         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
22478         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
22479         (Depends-on): Add frexpl. Remove isnanl-nolibm.
22480         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
22481
22482 2007-03-22  Bruno Haible  <bruno@clisp.org>
22483
22484         * lib/frexpl.c: Share code with lib/frexp.c.
22485         * modules/mathl (Files): Add lib/frexp.c.
22486         (Depends-on): Add isnanl-nolibm.
22487
22488 2007-03-22  Bruno Haible  <bruno@clisp.org>
22489
22490         * modules/printf-frexp (Files): Add m4/frexp.m4.
22491         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
22492         only if the found frexp function actually works.
22493
22494 2007-03-22  Bruno Haible  <bruno@clisp.org>
22495
22496         * lib/frexp.c: Remove older implementation that uses divisions.
22497
22498 2007-03-21  Bruno Haible  <bruno@clisp.org>
22499
22500         * modules/frexp-tests: New file.
22501         * tests/test-frexp.c: New file.
22502
22503         * modules/frexp: New file.
22504         * lib/frexp.c: New file.
22505         * m4/frexp.m4: New file.
22506         * lib/math_.h (frexp): New declaration.
22507         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
22508         REPLACE_FREXP.
22509         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
22510
22511 2007-03-21  Bruno Haible  <bruno@clisp.org>
22512
22513         * modules/isnanl-tests: New file.
22514         * tests/test-isnanl.c: New file.
22515
22516         * modules/isnanl: New file.
22517         * lib/isnanl.h: New file.
22518         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
22519         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
22520         gl_FUNC_ISNANL_WORKS.
22521         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
22522         New macros.
22523
22524 2007-03-21  Bruno Haible  <bruno@clisp.org>
22525
22526         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
22527         lib/isnanl.h.
22528         (Include): Update.
22529         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
22530         * lib/vasnprintf.c: Update.
22531         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
22532         tests/test-isnanl.h, remove tests/test-isnanl.c.
22533         (Makefile.am): Update.
22534         * tests/test-isnanl-nolibm.c: New file.
22535         * tests/test-isnanl.h: New file.
22536         * tests/test-isnanl.c: Remove file.
22537
22538 2007-03-21  Jim Meyering  <jim@meyering.net>
22539
22540         When trying to open ".", treat ESTALE like EACCES.
22541         * lib/savewd.c (savewd_save): Resort to forking not just upon
22542         failure with EACCES, but also when errno is ESTALE.
22543
22544 2007-03-20  Bruno Haible  <bruno@clisp.org>
22545
22546         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
22547         Needed on AIX 5.1. Reported by Matthew Woehlke.
22548
22549 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
22550
22551         Suggestions by Bruno Haible:
22552         * lib/acl-internal.h: Include "gettext.h" rather than rolling
22553         our own.
22554         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
22555         * modules/acl (Depends-on): Add gettext.
22556
22557 2007-03-19  Bruno Haible  <bruno@clisp.org>
22558
22559         * modules/iconvme: Remove file.
22560         * lib/iconvme.h: Remove file.
22561         * lib/iconvme.c: Remove file.
22562         * m4/iconvme.m4: Remove file.
22563
22564 2007-03-19  Bruno Haible  <bruno@clisp.org>
22565
22566         * doc/relocatable-maint.texi: Break long shell script line.
22567         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
22568
22569 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
22570
22571         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
22572         handle file_has_acl.
22573         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
22574         * lib/acl.c: Move header inclusions and related macro defns into
22575         lib/acl-internal.h.
22576         (S_ISLNK): Remove defn, since that's now done for us.
22577         (file_has_acl): Move to lib/file-has-acl.c.
22578         Call acl_trivial if available.  This is the crucial part of the fix.
22579         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
22580         shared within the library.  Rewrite a bit, partly to make it compatible
22581         with the GNU coding style.
22582         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
22583         Remove unnecessary double-quotes.
22584         Don't test for acl_to_text; the build will catch that.
22585         Replace acl_entries if it doesn't exist and it is needed.
22586         Check for -lsec and acl_trivial (as used on Solaris 10).
22587         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
22588         lib/file-has-acl.c.
22589         (Depends-on): Add sys_stat, for S_ISLNK.
22590
22591 2007-03-19  Ben Pfaff  <blp@gnu.org>
22592
22593         * doc/gnulib.texi: Fix typos.
22594         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
22595
22596 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
22597
22598         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
22599         If size is zero here, buf must be zero.
22600
22601 2007-03-19  Simon Josefsson  <simon@josefsson.org>
22602
22603         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
22604         <bruno@clisp.org>.
22605
22606 2007-03-18  Bruno Haible  <bruno@clisp.org>
22607
22608         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
22609         Suggested by Eric Blake.
22610
22611 2007-03-18  Ben Pfaff  <blp@gnu.org>
22612
22613         * doc/relocatable.texi: Recommend using as prefix a directory
22614         that does not exist and will never be created.  Based on
22615         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
22616         and others.
22617
22618 2007-03-17  Bruno Haible  <bruno@clisp.org>
22619
22620         * lib/fchownat.c: Include lchown.h.
22621
22622 2007-03-17  Bruno Haible  <bruno@clisp.org>
22623
22624         Fix endless loop when the given allocated size was > INT_MAX.
22625         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
22626         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
22627         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
22628         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
22629         * lib/sprintf.c (sprintf): Likewise.
22630
22631 2007-03-17  Bruno Haible  <bruno@clisp.org>
22632
22633         * tests/test-argp-2.sh (func_compare): Output a context diff.
22634
22635 2007-03-17  Bruno Haible  <bruno@clisp.org>
22636
22637         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
22638         locale's decimal-point character.
22639
22640 2007-03-17  Bruno Haible  <bruno@clisp.org>
22641
22642         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
22643         before comparing it. Needed because on some platforms (e.g. x86) a
22644         'long double' occupies less bytes than sizeof (long double).
22645
22646 2007-03-17  Bruno Haible  <bruno@clisp.org>
22647
22648         * tests/test-crc.c (main): Make printf statements 64-bit clean.
22649         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
22650         * tests/test-getaddrinfo.c (simple): Likewise.
22651         * tests/test-read-file.c (main): Likewise.
22652
22653 2007-03-17  Bruno Haible  <bruno@clisp.org>
22654
22655         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
22656
22657 2007-03-17  Bruno Haible  <bruno@clisp.org>
22658
22659         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
22660         unused variable.
22661
22662 2007-03-17  Bruno Haible  <bruno@clisp.org>
22663
22664         * tests/test-c-strcasecmp.c: Include c-strcase.h.
22665         * tests/test-c-strncasecmp.c: Likewise.
22666
22667 2007-03-17  Bruno Haible  <bruno@clisp.org>
22668
22669         * modules/stdlib (Depends-on): Add unistd.
22670         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
22671         Needed for MacOS X 10.3.
22672
22673 2007-03-17  Bruno Haible  <bruno@clisp.org>
22674
22675         * lib/unistr/u-strdup.h: Include <stdlib.h>.
22676
22677 2007-03-17  Bruno Haible  <bruno@clisp.org>
22678
22679         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
22680
22681 2007-03-17  Bruno Haible  <bruno@clisp.org>
22682
22683         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
22684         to reflect files copied from gnulib (with or without modifications).
22685         Suggested by Jim Meyering.
22686
22687 2007-03-17  Eric Blake  <ebb9@byu.net>
22688
22689         * NEWS: Document stdlib change from 2007-02-18.
22690
22691 2007-03-17  Jim Meyering  <jim@meyering.net>
22692
22693         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
22694         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
22695         someone uses a name containing shell meta-characters.
22696         Reported by Alfred M. Szmidt.
22697
22698         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
22699
22700 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
22701
22702         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
22703         and copy gettext configuration files only if configure.ac contains
22704         a use of AM_GNU_GETTEXT_VERSION.
22705
22706 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
22707
22708         * build-aux/bootstrap (gnulib_name): New variable.
22709         (gnulib_tool_options): Use it.
22710
22711 2007-03-13  Simon Josefsson  <simon@josefsson.org>
22712
22713         * tests/test-des.c: Use new namespace.
22714
22715 2007-03-15  Bruno Haible  <bruno@clisp.org>
22716
22717         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
22718         Reported by James Youngman <jay@gnu.org>.
22719
22720 2007-03-15  Bruno Haible  <bruno@clisp.org>
22721
22722         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
22723         declared prototype. Needed with cc on OSF/1 5.1.
22724
22725 2007-03-15  Bruno Haible  <bruno@clisp.org>
22726
22727         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
22728         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
22729         (struct gl_list_implementation): Add dispose_fn argument to the
22730         'create_empty', 'create' methods.
22731         (struct gl_list_impl_base): Add field 'dispose_fn'.
22732         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
22733         argument.
22734         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
22735         dispose_fn argument.
22736         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
22737         dispose_fn on the dropped values.
22738         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
22739         dispose_fn argument.
22740         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
22741         dropped values.
22742         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
22743         (gl_tree_remove_node): Call dispose_fn on the dropped value.
22744         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
22745         (gl_tree_remove_node): Call dispose_fn on the dropped value.
22746         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
22747         argument.
22748         (gl_tree_list_free): Call dispose_fn on the dropped values.
22749         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
22750         the dropped values.
22751         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
22752         Add dispose_fn argument.
22753         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
22754         Call dispose_fn on the dropped values.
22755         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
22756         Add dispose_fn argument.
22757         (gl_sublist_create): Initialize the 'dispose_fn' field.
22758         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
22759         * tests/test-array_list.c (main): Update.
22760         * tests/test-carray_list.c (main): Update.
22761         * tests/test-avltree_list.c (main): Update.
22762         * tests/test-rbtree_list.c (main): Update.
22763         * tests/test-avltreehash_list.c (main): Update.
22764         * tests/test-rbtreehash_list.c (main): Update.
22765         * tests/test-linked_list.c (main): Update.
22766         * tests/test-linkedhash_list.c (main): Update.
22767         * tests/test-array_oset.c (main): Update.
22768
22769 2007-03-15  Bruno Haible  <bruno@clisp.org>
22770
22771         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
22772         (gl_oset_create_empty): Add dispose_fn argument.
22773         (struct gl_oset_implementation): Add dispose_fn argument to
22774         'create_empty' method.
22775         (struct gl_oset_impl_base): Add dispose_fn field.
22776         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
22777         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
22778         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
22779         values.
22780         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
22781         (gl_tree_oset_free): Call dispose_fn on the dropped values.
22782         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
22783         dropped value.
22784         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
22785         dropped value.
22786         * tests/test-array_oset.c (main): Update.
22787         * tests/test-avltree_oset.c (main): Update.
22788         * tests/test-rbtree_oset.c (main): Update.
22789         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
22790
22791 2007-03-13  Bruno Haible  <bruno@clisp.org>
22792
22793         * tests/test-stdbool.c (i): Update after last patch.
22794
22795 2007-03-12  Bruno Haible  <bruno@clisp.org>
22796
22797         * lib/quotearg.c: Include <wctype.h> early, before the definition of
22798         the iswprint macro. Needed on Solaris 2.5.1.
22799
22800 2007-03-12  Bruno Haible  <bruno@clisp.org>
22801
22802         * tests/test-printf-frexp.c (main): Declare x as volatile.
22803
22804 2007-03-12  Simon Josefsson  <simon@josefsson.org>
22805
22806         * doc/gnulib.texi (Build robot for gnulib): New section.
22807
22808 2007-03-12  Jim Meyering  <jim@meyering.net>
22809
22810         * build-aux/bootstrap: New file.
22811         * build-aux/bootstrap.conf: New file, from coreutils.
22812
22813 2007-03-11  Bruno Haible  <bruno@clisp.org>
22814
22815         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
22816
22817 2007-03-12  Simon Josefsson  <simon@josefsson.org>
22818
22819         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
22820         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
22821         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
22822
22823 2007-03-11  Bruno Haible  <bruno@clisp.org>
22824
22825         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
22826         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
22827
22828 2007-03-11  Bruno Haible  <bruno@clisp.org>
22829
22830         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
22831         formula. Needed for SunPRO C 5.0.
22832
22833 2007-03-11  Bruno Haible  <bruno@clisp.org>
22834
22835         * modules/long-options (Depends-on): Add getopt.
22836
22837 2007-03-11  Bruno Haible  <bruno@clisp.org>
22838
22839         * modules/modechange (Depends-on): Add stdbool.
22840
22841 2007-03-11  Bruno Haible  <bruno@clisp.org>
22842
22843         * modules/i-ring (Depends-on): Add stdbool.
22844
22845 2007-03-11  Bruno Haible  <bruno@clisp.org>
22846
22847         * modules/gc-des (Depends-on): Add stdbool.
22848
22849 2007-03-11  Bruno Haible  <bruno@clisp.org>
22850
22851         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
22852
22853 2007-03-11  Bruno Haible  <bruno@clisp.org>
22854
22855         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
22856
22857 2007-03-11  Bruno Haible  <bruno@clisp.org>
22858
22859         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
22860
22861 2007-03-11  Bruno Haible  <bruno@clisp.org>
22862
22863         * lib/vasnprintf.c (sprintf): Undefine.
22864
22865 2007-03-11  Bruno Haible  <bruno@clisp.org>
22866
22867         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
22868         initializers in SunPRO C and Compaq C compilers.
22869
22870 2007-03-11  Bruno Haible  <bruno@clisp.org>
22871
22872         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
22873         decrementing code ANSI C compliant.
22874
22875 2007-03-11  Bruno Haible  <bruno@clisp.org>
22876
22877         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
22878         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
22879
22880 2007-03-11  Bruno Haible  <bruno@clisp.org>
22881
22882         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
22883         <stdbool.h> substitute doesn't pass.
22884
22885 2007-03-11  Bruno Haible  <bruno@clisp.org>
22886
22887         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
22888
22889 2007-03-11  Bruno Haible  <bruno@clisp.org>
22890
22891         * gnulib-tool (func_create_megatestdir): Create also an autobuild
22892         script, for submission to autobuild.josefsson.org.
22893
22894 2007-03-10  Bruno Haible  <bruno@clisp.org>
22895
22896         * modules/canonicalize-lgpl-tests: New file.
22897         * tests/test-canonicalize-lgpl.sh: New file.
22898         * tests/test-canonicalize-lgpl.c: New file.
22899
22900         * modules/c-strcase-tests: New file.
22901         * tests/test-c-strcase.sh: New file.
22902         * tests/test-c-strcasecmp.c: New file.
22903         * tests/test-c-strncasecmp.c: New file.
22904
22905         * modules/atexit-tests: New file.
22906         * tests/test-atexit.sh: New file.
22907         * tests/test-atexit.c: New file.
22908
22909 2007-03-10  Bruno Haible  <bruno@clisp.org>
22910
22911         * tests/test-binary-io.sh: Use temporary filenames that are not so
22912         likely to clash with those of other tests (in a parallel make).
22913         * tests/test-binary-io.c: Likewise.
22914
22915 2007-03-10  Bruno Haible  <bruno@clisp.org>
22916
22917         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
22918         fallback; use #error instead.
22919         Suggested by Simon Josefsson.
22920
22921 2007-03-10  Bruno Haible  <bruno@clisp.org>
22922
22923         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
22924         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
22925         first and the last.
22926
22927 2007-03-10  Bruno Haible  <bruno@clisp.org>
22928
22929         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
22930
22931 2007-03-10  Bruno Haible  <bruno@clisp.org>
22932
22933         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
22934         "make distcheck".
22935         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
22936         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
22937         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
22938
22939 2007-03-10  Bruno Haible  <bruno@clisp.org>
22940
22941         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
22942         variable.
22943         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
22944         variable.
22945
22946 2007-03-09  Eric Blake  <ebb9@byu.net>
22947         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
22948
22949         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
22950         types are not being provided by gnulib.
22951         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
22952         types are supported.
22953
22954 2007-03-10  Bruno Haible  <bruno@clisp.org>
22955
22956         * lib/stdio_.h (__attribute__): New macro.
22957         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
22958         vsprintf): Specify __attribute__ __format__ for GCC.
22959         Suggested by Eric Blake.
22960
22961 2007-03-09  Bruno Haible  <bruno@clisp.org>
22962
22963         * modules/printf-posix-tests: New file.
22964         * tests/test-printf-posix.sh: New file.
22965         * tests/test-printf-posix.c: New file.
22966
22967         * modules/printf-posix: New file.
22968         * lib/printf.c: New file.
22969         * m4/printf-posix-rpl.m4: New file.
22970         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
22971         REPLACE_PRINTF.
22972         * lib/stdio_.h (printf): New declaration.
22973         (format, __format__, ____printf____, ____scanf____, ____strftime____,
22974         ____strfmon____): New macros.
22975         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
22976         REPLACE_PRINTF.
22977
22978 2007-03-09  Bruno Haible  <bruno@clisp.org>
22979
22980         * tests/test-vasnprintf-posix2.sh: New file.
22981         * tests/test-vasnprintf-posix2.c: New file.
22982         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
22983         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
22984         (Makefile.am): Activate test-vasnprintf-posix2.sh.
22985
22986         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
22987         a locale dependent decimal point, rather than always '.'.
22988
22989 2007-03-09  Eric Blake  <ebb9@byu.net>
22990
22991         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
22992         spite of platforms like Tandem/NSK that define it to -1.
22993
22994 2007-03-08  Bruno Haible  <bruno@clisp.org>
22995
22996         * modules/vprintf-posix-tests: New file.
22997         * tests/test-vprintf-posix.sh: New file.
22998         * tests/test-vprintf-posix.c: New file.
22999         * tests/test-printf-posix.h: New file.
23000
23001         * modules/vprintf-posix: New file.
23002         * lib/vprintf.c: New file.
23003         * m4/vprintf-posix.m4: New file.
23004         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
23005         REPLACE_VPRINTF.
23006         * lib/stdio_.h (vprintf): New declaration.
23007         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
23008         REPLACE_VPRINTF.
23009
23010 2007-03-08  Bruno Haible  <bruno@clisp.org>
23011
23012         * modules/fprintf-posix-tests: New file.
23013         * tests/test-fprintf-posix.sh: New file.
23014         * tests/test-fprintf-posix.c: New file.
23015
23016         * modules/fprintf-posix: New file.
23017         * lib/fprintf.c: New file.
23018         * m4/fprintf-posix.m4: New file.
23019         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
23020         REPLACE_FPRINTF.
23021         * lib/stdio_.h (fprintf): New declaration.
23022         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
23023         REPLACE_FPRINTF.
23024
23025 2007-03-08  Bruno Haible  <bruno@clisp.org>
23026
23027         * modules/vfprintf-posix-tests: New file.
23028         * tests/test-vfprintf-posix.sh: New file.
23029         * tests/test-vfprintf-posix.c: New file.
23030         * tests/test-fprintf-posix.h: New file.
23031         * tests/test-fprintf-posix.out: New file.
23032
23033         * modules/vfprintf-posix: New file.
23034         * lib/vfprintf.c: New file.
23035         * m4/vfprintf-posix.m4: New file.
23036         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
23037         REPLACE_VFPRINTF.
23038         * lib/stdio_.h (vfprintf): New declaration.
23039         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
23040         REPLACE_VFPRINTF.
23041
23042 2007-03-08  Bruno Haible  <bruno@clisp.org>
23043
23044         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
23045
23046 2007-03-08  Bruno Haible  <bruno@clisp.org>
23047
23048         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
23049         instead of 'expr' invocations.
23050         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23051         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23052         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23053         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
23054         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23055         Suggested by Paul Eggert.
23056
23057 2007-03-08  Bruno Haible  <bruno@clisp.org>
23058
23059         * modules/fseterr-tests: New file.
23060         * tests/test-fseterr.c: New file.
23061
23062         * modules/fseterr: New file.
23063         * lib/fseterr.h: New file.
23064         * lib/fseterr.c: New file.
23065
23066 2007-03-08  Bruno Haible  <bruno@clisp.org>
23067
23068         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
23069         * lib/getopt_.h: Likewise.
23070         * lib/mbswidth.h: Likewise.
23071         * lib/setenv.h: Likewise.
23072         * lib/vasnprintf.h: Likewise.
23073         * lib/vasprintf.h: Likewise.
23074         * lib/verror.h: Likewise.
23075         * lib/xsetenv.h: Likewise.
23076         * lib/xvasprintf.h: Likewise.
23077
23078 2007-03-08  Jim Meyering  <jim@meyering.net>
23079
23080         * users.txt: Add parted.
23081
23082         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
23083
23084 2007-03-07  Bruno Haible  <bruno@clisp.org>
23085
23086         * m4/printf.m4: Make the shell script snippets copy&pastable.
23087
23088 2007-03-02  Bruno Haible  <bruno@clisp.org>
23089
23090         * lib/netinet_in_.h: New file.
23091         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
23092         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
23093         * modules/netinet_in (Files): Add lib/netinet_in_.h.
23094         (Depends-on): Add absolute-header.
23095         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
23096         into netinet/in.h.
23097
23098 2007-03-03  Bruno Haible  <bruno@clisp.org>
23099
23100         * lib/sys_select_.h: New file.
23101         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
23102         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
23103         * modules/sys_select (Files): Add lib/sys_select_.h.
23104         (Depends-on): Add absolute-header.
23105         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
23106         into sys/select.h.
23107
23108 2007-03-02  Bruno Haible  <bruno@clisp.org>
23109
23110         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
23111         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
23112         values.
23113         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
23114         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
23115         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
23116         * modules/sys_socket (Depends-on): Add absolute-header.
23117         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
23118         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
23119         (Include): Remove requirement of inclusion of <sys/types.h>.
23120
23121 2007-03-02  Bruno Haible  <bruno@clisp.org>
23122
23123         * lib/byteswap_.h (bswap_32): Fix formula.
23124
23125 2007-03-06  Bruno Haible  <bruno@clisp.org>
23126
23127         * modules/sprintf-posix-tests: New file.
23128         * tests/test-sprintf-posix.c: New file.
23129
23130         * modules/sprintf-posix: New file.
23131         * lib/sprintf.c: New file.
23132         * m4/sprintf-posix.m4: New file.
23133         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
23134         REPLACE_SPRINTF.
23135         * lib/stdio_.h (sprintf): New declaration.
23136         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
23137         REPLACE_SPRINTF.
23138
23139 2007-03-06  Bruno Haible  <bruno@clisp.org>
23140
23141         * modules/vsprintf-posix-tests: New file.
23142         * tests/test-vsprintf-posix.c: New file.
23143         * tests/test-sprintf-posix.h: New file.
23144
23145         * modules/vsprintf-posix: New file.
23146         * lib/vsprintf.c: New file.
23147         * m4/vsprintf-posix.m4: New file.
23148         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
23149         REPLACE_VSPRINTF.
23150         * lib/stdio_.h (vsprintf): New declaration.
23151         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
23152         REPLACE_VSPRINTF.
23153
23154 2007-03-06  Bruno Haible  <bruno@clisp.org>
23155
23156         * modules/vsnprintf (Depend-on): Remove minmax.
23157
23158 2007-03-06  Bruno Haible  <bruno@clisp.org>
23159
23160         * modules/snprintf-posix-tests: New file.
23161         * tests/test-snprintf-posix.c: New file.
23162
23163         * modules/snprintf-posix: New file.
23164         * m4/snprintf-posix.m4: New file.
23165         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
23166         gl_FUNC_SNPRINTF.
23167         (gl_FUNC_SNPRINTF): Invoke it.
23168         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
23169         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
23170         is set.
23171         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
23172
23173 2007-03-06  Bruno Haible  <bruno@clisp.org>
23174
23175         * modules/vsnprintf-posix-tests: New file.
23176         * tests/test-vsnprintf-posix.c: New file.
23177         * tests/test-snprintf-posix.h: New file.
23178
23179         * modules/vsnprintf-posix: New file.
23180         * m4/vsnprintf-posix.m4: New file.
23181         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
23182         gl_FUNC_VSNPRINTF.
23183         (gl_FUNC_VSNPRINTF): Invoke it.
23184         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
23185         * lib/stdio_.h (vsnprintf): Define as a replacement if
23186         REPLACE_VSNPRINTF is set.
23187         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
23188
23189 2007-03-06  Bruno Haible  <bruno@clisp.org>
23190
23191         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
23192         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
23193
23194 2007-03-06  Bruno Haible  <bruno@clisp.org>
23195
23196         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
23197         (asinl): Declare also if HAVE_DECL_ASINL is set.
23198         (atanl): Declare also if HAVE_DECL_ATANL is set.
23199         (ceill): Declare also if HAVE_DECL_CEILL is set.
23200         (cosl): Declare also if HAVE_DECL_COSL is set.
23201         (expl): Declare also if HAVE_DECL_EXPL is set.
23202         (floorl): Declare also if HAVE_DECL_FLOORL is set.
23203         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
23204         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
23205         (logl): Declare also if HAVE_DECL_LOGL is set.
23206         (sinl): Declare also if HAVE_DECL_SINL is set.
23207         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
23208         (tanl): Declare also if HAVE_DECL_TANL is set.
23209         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
23210         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
23211         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
23212         declaration of frexpl, ldexpl.
23213         * modules/printf-frexpl (Depends-on): Add math.
23214         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
23215
23216 2007-03-05  Bruno Haible  <bruno@clisp.org>
23217
23218         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
23219         frexpl and ldexpl are declared.
23220         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
23221
23222 2007-03-05  Bruno Haible  <bruno@clisp.org>
23223
23224         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
23225         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
23226
23227 2007-03-05  Bruno Haible  <bruno@clisp.org>
23228
23229         * lib/stdio_.h: Include <stddef.h>.
23230
23231 2007-03-05  Bruno Haible  <bruno@clisp.org>
23232
23233         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
23234
23235 2007-03-05  Bruno Haible  <bruno@clisp.org>
23236
23237         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
23238         NetBSD 4, from Ralf Wildenhues.
23239
23240 2007-03-04  Bruno Haible  <bruno@clisp.org>
23241
23242         * lib/vasprintf.h: Update #if logic for the case when the functions
23243         exist but are overridden.
23244
23245 2007-03-04  Bruno Haible  <bruno@clisp.org>
23246
23247         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
23248         implementations: glibc-2.4 and MacOS X 10.3.
23249         * tests/test-vasnprintf-posix.c (test_function): Test also the case
23250         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
23251         * tests/test-vasprintf-posix.c (test_function): Likewise.
23252
23253 2007-03-04  Bruno Haible  <bruno@clisp.org>
23254
23255         * modules/vasprintf-posix-tests: New file.
23256         * tests/test-vasprintf-posix.c: New file.
23257
23258         * modules/vasprintf-posix: New file.
23259         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
23260         defined.
23261         * m4/vasprintf-posix.m4: New file.
23262         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
23263         gl_FUNC_VASPRINTF.
23264         (gl_FUNC_VASPRINTF): Invoke it.
23265         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
23266         here.
23267         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
23268
23269 2007-03-04  Bruno Haible  <bruno@clisp.org>
23270
23271         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
23272         REPLACE_GETTIMEOFDAY.
23273         * modules/sys_time (Makefile.am): Likewise.
23274         * m4/sys_time_h.m4: Likewise.
23275         * m4/gettimeofday.m4: Likewise.
23276
23277 2007-03-04  Bruno Haible  <bruno@clisp.org>
23278
23279         * modules/vasnprintf-posix-tests: New file.
23280         * tests/test-vasnprintf-posix.c: New file.
23281
23282         * modules/vasnprintf-posix: New file.
23283         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
23284         printf-frexpl.h.
23285         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
23286         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
23287         REPLACE_VASNPRINTF is defined.
23288         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
23289         gl_FUNC_VASNPRINTF.
23290         (gl_FUNC_VASNPRINTF): Invoke it.
23291         * m4/vasnprintf-posix.m4: New file.
23292         * m4/printf.m4: New file.
23293
23294 2007-03-04  Bruno Haible  <bruno@clisp.org>
23295
23296         Compile progreloc.c only if --enable-relocatable is specified.
23297         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
23298         if --enable-relocatable was specified.
23299         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
23300         lib_SOURCES.
23301
23302 2007-03-04  Jim Meyering  <jim@meyering.net>
23303
23304         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
23305         Use it consistently, rather than enumerating errno constants.
23306
23307 2007-03-04  Bruno Haible  <bruno@clisp.org>
23308
23309         * modules/xvasprintf-tests: New file.
23310         * tests/test-xvasprintf.c: New file.
23311
23312         * modules/vasprintf-tests: New file.
23313         * tests/test-vasprintf.c: New file.
23314
23315         * modules/vasnprintf-tests: New file.
23316         * tests/test-vasnprintf.c: New file.
23317
23318         * modules/vsnprintf-tests: New file.
23319         * tests/test-vsnprintf.c: New file.
23320
23321         * modules/snprintf-tests: New file.
23322         * tests/test-snprintf.c: New file.
23323
23324 2007-03-04  Bruno Haible  <bruno@clisp.org>
23325
23326         Compile relocatable.c only if --enable-relocatable is specified.
23327         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
23328         gl_RELOCATABLE_LIBRARY.
23329         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
23330         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
23331         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
23332         gl_RELOCATABLE_LIBRARY.
23333         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
23334         (Makefile.am): Remove lib_SOURCES.
23335         * modules/relocatable-lib-lgpl (configure.ac): Invoke
23336         gl_RELOCATABLE_LIBRARY.
23337         (Makefile.am): Remove lib_SOURCES.
23338         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
23339         always.
23340         * modules/relocatable-prog-wrapper (configure.ac): Invoke
23341         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
23342
23343 2007-03-04  Bruno Haible  <bruno@clisp.org>
23344
23345         * modules/argmatch-tests: New file.
23346         * tests/test-argmatch.c: New file.
23347
23348         * tests/test-allocsa.c (main): Halve the number of loop runs.
23349
23350         * modules/alloca-opt-tests: New file.
23351         * tests/test-alloca-opt.c: New file.
23352
23353 2007-03-04  Jim Meyering  <jim@meyering.net>
23354
23355         Work around difference between Linux ACLs and Solaris 10 ZFS.
23356         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
23357         for EINVAL.
23358
23359 2007-03-03  Bruno Haible  <bruno@clisp.org>
23360
23361         * modules/relocatable-prog (Depends-on): Add back progreloc's
23362         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
23363
23364 2007-03-03  Bruno Haible  <bruno@clisp.org>
23365
23366         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
23367         * modules/relocatable-lib: New file.
23368
23369 2007-03-03  Bruno Haible  <bruno@clisp.org>
23370
23371         * modules/relocatable-prog: Renamed from modules/relocatable.
23372         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
23373
23374 2007-03-03  Bruno Haible  <bruno@clisp.org>
23375
23376         * modules/relocatable-script (Files): Add doc/relocatable.texi,
23377         m4/relocatable-lib.m4.
23378         (Depends-on): Remove 'relocatable'.
23379         (configure.ac): Add gl_RELOCATABLE_NOP.
23380
23381 2007-03-03  Bruno Haible  <bruno@clisp.org>
23382
23383         * modules/relocatable-prog-wrapper: New file.
23384         * modules/relocatable (Depends-on): Add it. Remove all other
23385         dependencies except progname.
23386         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
23387
23388         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
23389         (gl_FUNC_STRERROR): Nop.
23390         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
23391
23392         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
23393         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
23394
23395         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
23396         (gl_FUNC_READLINK): Update.
23397
23398         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
23399
23400 2007-03-03  Bruno Haible  <bruno@clisp.org>
23401
23402         * lib/xreadlink.c: Include <unistd.h> unconditionally.
23403         * modules/xreadlink (Depends-on): Add unistd.
23404         * modules/xreadlink-with-size (Depends-on): Likewise.
23405
23406 2007-03-03  Bruno Haible  <bruno@clisp.org>
23407
23408         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
23409         extracted from gt_FUNC_SETENV.
23410         (gt_FUNC_SETENV): Remove macro.
23411         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
23412         remove gt_FUNC_SETENV.
23413
23414 2007-03-03  Bruno Haible  <bruno@clisp.org>
23415
23416         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
23417         ENABLE_RELOCATABLE here.
23418         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
23419
23420 2007-03-03  Bruno Haible  <bruno@clisp.org>
23421
23422         * modules/rbtreehash-list-tests (Depends-on): Add progname.
23423         * tests/test-rbtreehash_list.c: Include progname.h.
23424         (main): Call set_program_name.
23425
23426         * modules/rbtree-oset-tests (Depends-on): Add progname.
23427         * tests/test-rbtree_oset.c: Include progname.h.
23428         (main): Call set_program_name.
23429
23430         * modules/rbtree-list-tests (Depends-on): Add progname.
23431         * tests/test-rbtree_list.c: Include progname.h.
23432         (main): Call set_program_name.
23433
23434         * modules/linked-list-tests (Depends-on): Add progname.
23435         * tests/test-linked_list.c: Include progname.h.
23436         (main): Call set_program_name.
23437
23438 2007-03-03  Bruno Haible  <bruno@clisp.org>
23439
23440         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
23441         All uses of __restrict changed to _Restrict_.
23442         * lib/glob_.h (__restrict): Remove macro.
23443
23444 2007-03-02  Bruno Haible  <bruno@clisp.org>
23445
23446         * modules/gettext (configure.ac): Require gettext infrastructure
23447         from version 0.16.1.
23448
23449 2007-03-02  Bruno Haible  <bruno@clisp.org>
23450
23451         * modules/linkedhash-list-tests (Depends-on): Add progname.
23452         * tests/test-linkedhash_list.c: Include progname.h.
23453         (main): Call set_program_name.
23454
23455         * modules/carray-list-tests (Depends-on): Add progname.
23456         * tests/test-carray_list.c: Include progname.h.
23457         (main): Call set_program_name.
23458
23459         * modules/avltreehash-list-tests (Depends-on): Add progname.
23460         * tests/test-avltreehash_list.c: Include progname.h.
23461         (main): Call set_program_name.
23462
23463         * modules/avltree-oset-tests (Depends-on): Add progname.
23464         * tests/test-avltree_oset.c: Include progname.h.
23465         (main): Call set_program_name.
23466
23467         * modules/avltree-list-tests (Depends-on): Add progname.
23468         * tests/test-avltree_list.c: Include progname.h.
23469         (main): Call set_program_name.
23470
23471         * modules/array-oset-tests (Depends-on): Add progname.
23472         * tests/test-array_oset.c: Include progname.h.
23473         (main): Call set_program_name.
23474
23475         * modules/array-list-tests (Depends-on): Add progname.
23476         * tests/test-array_list.c: Include progname.h.
23477         (main): Call set_program_name.
23478
23479         * modules/argp-tests (Depends-on): Add progname.
23480         * tests/test-argp.c: Include argp.h first. Include progname.h.
23481         (main): Call set_program_name.
23482
23483 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
23484
23485         * doc/gnulib-tool.texi (Initial import): Reword description of
23486         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
23487         limited effect even if defined after the first system include.
23488
23489 2007-03-01  Bruno Haible  <bruno@clisp.org>
23490
23491         * build-aux/config.libpath: Update to libtool-1.5.22.
23492         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23493
23494 2007-03-01  Bruno Haible  <bruno@clisp.org>
23495
23496         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
23497         foo_CFLAGS.
23498         Reported by Ralf Wildenhues.
23499
23500 2007-03-01  Bruno Haible  <bruno@clisp.org>
23501
23502         * build-aux/install-reloc: Remove object files left over by some
23503         compilers.
23504         Reported by Ralf Wildenhues.
23505
23506 2007-03-01  Bruno Haible  <bruno@clisp.org>
23507
23508         * build-aux/install-reloc: Break long lines.
23509
23510 2007-03-01  Bruno Haible  <bruno@clisp.org>
23511
23512         * doc/relocatable.texi: Document that it may not work on OpenBSD.
23513         Reported by Ralf Wildenhues.
23514
23515 2007-03-01  Bruno Haible  <bruno@clisp.org>
23516
23517         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
23518         include ordering constraints.
23519
23520 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
23521
23522         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
23523         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
23524         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
23525         as another example.
23526         * lib/time_.h: Fix misspelling.
23527         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
23528         Require gl_HEADER_TIME_H_DEFAULTS.
23529         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
23530         * m4/time_r.m4 (gl_TIME_R): Likewise.
23531         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
23532
23533 2007-03-01  Bruno Haible  <bruno@clisp.org>
23534
23535         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
23536         * m4/utimens.m4 (gl_UTIMENS): Likewise.
23537
23538 2007-03-01  Jim Meyering  <jim@meyering.net>
23539
23540         * modules/xreadlink (Maintainer): Add my name.
23541         * modules/xreadlink-with-size (Depends-on): Alphabetize.
23542
23543 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
23544             Bruno Haible  <bruno@clisp.org>
23545
23546         * build-aux/install-reloc: Compile also c-ctype.c.
23547         * build-aux/relocatable.sh.in: New file.
23548         * doc/relocatable.texi: New file.
23549         * doc/relocatable-maint.texi: New file.
23550         * doc/gnulib.texi: Include relocatable-maint.texi.
23551         * lib/progreloc.c: Include unistd.h unconditionally.
23552         * lib/relocwrapper.c: Include unistd.h unconditionally.
23553         Include c-ctype.h.
23554         (add_dotbin): Use c_tolower.
23555         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
23556         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
23557         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
23558         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
23559         to m4/relocatable-lib.m4.
23560         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
23561         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
23562         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
23563         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
23564         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
23565         * modules/relocatable: New file.
23566         * modules/relocatable-lib: New file.
23567         * modules/relocatable-script: New file.
23568
23569 2007-02-28  Bruno Haible  <bruno@clisp.org>
23570
23571         Import --enable-relocatable infrastructure.
23572         * build-aux/config.libpath: New file, from GNU gettext.
23573         * build-aux/install-reloc: New file, from GNU gettext.
23574         * build-aux/reloc-ldflags: New file, from GNU gettext.
23575         * lib/relocatable.h: New file, from GNU gettext.
23576         * lib/relocatable.c: New file, from GNU gettext.
23577         * lib/relocwrapper.c: New file, from GNU gettext.
23578         * m4/relocatable.m4: New file, from GNU gettext.
23579
23580 2007-02-28  Bruno Haible  <bruno@clisp.org>
23581
23582         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
23583
23584         * modules/xreadlink: New file, from GNU gettext with modifications.
23585         * lib/xreadlink.c: New file, from GNU gettext.
23586         * lib/xreadlink.h: Add comments.
23587         (xreadlink): New declaration.
23588
23589         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
23590         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
23591         lib/xreadlink-with-size.c.
23592         (configure.ac): Remove gl_XREADLINK invocation.
23593         (Makefile.am): Augment lib_SOURCES.
23594         * m4/xreadlink.m4: Remove file.
23595         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
23596         (xreadlink_with_size): Renamed from xreadink.
23597         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
23598         * modules/canonicalize (Depends-on): Replace xreadlink with
23599         xreadlink-with-size.
23600         * lib/canonicalize.c (canonicalize_filename_mode): Update.
23601
23602 2007-02-25  Jim Meyering  <jim@meyering.net>
23603
23604         * build-aux/announce-gen: When complaining about excess arguments,
23605         list them.
23606
23607 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
23608
23609         * README: Document signed integer overflow situation more
23610         accurately.
23611
23612 2007-02-25  Bruno Haible  <bruno@clisp.org>
23613
23614         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
23615         'a' or 'A' conversion.
23616
23617 2007-02-25  Bruno Haible  <bruno@clisp.org>
23618
23619         * modules/filename: Renamed from modules/pathname.
23620         (Files): Replace lib/pathname.h with lib/filename.h. Replace
23621         lib/concatpath.c with lib/concat-filename.c.
23622         (Makefile.am): Update.
23623         (Include): Replace pathname.h with filename.h.
23624         * lib/filename.h: Renamed from lib/pathname.h.
23625         (concatenated_filename): Renamed from concatenated_pathname.
23626         * lib/concat-filename.c: Renamed from lib/concatpath.c.
23627         (concatenated_filename): Renamed from concatenated_pathname.
23628         * lib/findprog.c: Include filename.h instead of pathname.h.
23629         (find_in_path): Update.
23630         * lib/javacomp.c: Include filename.h instead of pathname.h.
23631         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
23632         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
23633         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
23634         is_oldgcj_14_13_usable, is_javac_usable): Update.
23635         * lib/javaexec.c: Include filename.h instead of pathname.h.
23636         (execute_java_class): Update.
23637         * modules/findprog: Update.
23638         * modules/javacomp: Update.
23639         * modules/javaexec: Update.
23640         * MODULES.html.sh (File system functions): Add 'filename', remove
23641         'pathname'.
23642
23643 2007-02-25  Bruno Haible  <bruno@clisp.org>
23644
23645         * modules/printf-frexpl-tests: New file.
23646         * tests/test-printf-frexpl.c: New file.
23647
23648         * modules/printf-frexpl: New file.
23649         * lib/printf-frexpl.h: New file.
23650         * lib/printf-frexpl.c: New file.
23651         * m4/printf-frexpl.m4: New file.
23652
23653 2007-02-25  Bruno Haible  <bruno@clisp.org>
23654
23655         * modules/printf-frexp-tests: New file.
23656         * tests/test-printf-frexp.c: New file.
23657
23658         * modules/printf-frexp: New file.
23659         * lib/printf-frexp.h: New file.
23660         * lib/printf-frexp.c: New file.
23661         * m4/printf-frexp.m4: New file.
23662
23663 2007-02-25  Bruno Haible  <bruno@clisp.org>
23664
23665         Assume automake >= 1.10 for the tests.
23666         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
23667         * modules/arctwo-tests: Likewise.
23668         * modules/argp-tests: Likewise.
23669         * modules/avltree-list-tests: Likewise.
23670         * modules/avltree-oset-tests: Likewise.
23671         * modules/avltreehash-list-tests: Likewise.
23672         * modules/carray-list-tests: Likewise.
23673         * modules/crc-tests: Likewise.
23674         * modules/des-tests: Likewise.
23675         * modules/gc-arcfour-tests: Likewise.
23676         * modules/gc-arctwo-tests: Likewise.
23677         * modules/gc-des-tests: Likewise.
23678         * modules/gc-hmac-md5-tests: Likewise.
23679         * modules/gc-hmac-sha1-tests: Likewise.
23680         * modules/gc-md2-tests: Likewise.
23681         * modules/gc-md4-tests: Likewise.
23682         * modules/gc-md5-tests: Likewise.
23683         * modules/gc-pbkdf2-sha1-tests: Likewise.
23684         * modules/gc-rijndael-tests: Likewise.
23685         * modules/gc-sha1-tests: Likewise.
23686         * modules/gc-tests: Likewise.
23687         * modules/getaddrinfo-tests: Likewise.
23688         * modules/hmac-md5-tests: Likewise.
23689         * modules/hmac-sha1-tests: Likewise.
23690         * modules/linked-list-tests: Likewise.
23691         * modules/linkedhash-list-tests: Likewise.
23692         * modules/lock-tests: Likewise.
23693         * modules/md2-tests: Likewise.
23694         * modules/md4-tests: Likewise.
23695         * modules/md5-tests: Likewise.
23696         * modules/rbtree-list-tests: Likewise.
23697         * modules/rbtree-oset-tests: Likewise.
23698         * modules/rbtreehash-list-tests: Likewise.
23699         * modules/read-file-tests: Likewise.
23700         * modules/rijndael-tests: Likewise.
23701         * modules/stdint-tests: Likewise.
23702         * modules/tls-tests: Likewise.
23703
23704 2007-02-24  Bruno Haible  <bruno@clisp.org>
23705
23706         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
23707         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
23708         function; instead check whether isnan with a double argument links.
23709         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
23710         function; instead check whether isnan with a 'long double' argument
23711         links.
23712         Reported by Eric Blake <ebb9@byu.net>.
23713
23714 2007-02-24  Bruno Haible  <bruno@clisp.org>
23715
23716         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
23717         defined.
23718         * lib/isnanl.c: Remove all code. Just include isnan.c.
23719         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
23720
23721 2007-02-25  Jim Meyering  <jim@meyering.net>
23722
23723         Avoid conflicting types for 'unsetenv' on FreeBSD.
23724         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
23725         conflicting with FreeBSD's (5.0 and 6.1) function declaration
23726         in stdlib.h.
23727
23728 2007-02-24  Bruno Haible  <bruno@clisp.org>
23729
23730         * modules/isnanl-nolibm-tests: New file.
23731         * tests/test-isnanl.c: New file.
23732
23733         * modules/isnanl-nolibm: New file.
23734         * lib/isnanl.h: New file.
23735         * lib/isnanl.c: New file.
23736         * m4/isnanl.m4: New file.
23737
23738 2007-02-24  Bruno Haible  <bruno@clisp.org>
23739
23740         * modules/isnan-nolibm-tests: New file.
23741         * tests/test-isnan.c: New file.
23742
23743         * modules/isnan-nolibm: New file.
23744         * lib/isnan.h: New file.
23745         * lib/isnan.c: New file.
23746         * m4/isnan.m4: New file.
23747
23748 2007-02-24  Bruno Haible  <bruno@clisp.org>
23749
23750         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
23751         assume that an exponent fits in 20 bits.
23752
23753 2007-02-24  Jim Meyering  <jim@meyering.net>
23754
23755         * m4/regex.m4: Update the description of the configure-time option,
23756         --without-included-regex, to state accurately what the defaults are,
23757         and perhaps to give people an idea why using this option is risky.
23758
23759 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
23760
23761         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
23762         loops on small arguments.  This attempts to avoid the problem
23763         Bruno Haible reported for AIX 4.3.2 in
23764         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
23765
23766 2007-02-23  Bruno Haible  <bruno@clisp.org>
23767
23768         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
23769         Needed for help2man.
23770
23771 2007-02-23  Karl Berry  <karl@gnu.org>
23772
23773         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
23774         exists, foo.h should be cvs-ignored, not committed.
23775
23776 2007-02-23  Eric Blake  <ebb9@byu.net>
23777
23778         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
23779         * lib/stat-time.h (includes): Likewise.
23780         * lib/utimecmp.c (includes): Likewise.
23781         * lib/utimens.h (includes): Likewise.
23782         * lib/getdate.y (includes): Also include "timespec.h" for use
23783         internal to the module.
23784         * modules/utimens (Depends-on): Revert yesterday's patch.
23785         * modules/nanosleep (Depends-on): Add missing dependency.
23786
23787 2007-02-22  Bruno Haible  <bruno@clisp.org>
23788
23789         * lib/glob.c: Don't include getlogin_r.h.
23790
23791 2007-02-22  Jim Meyering  <jim@meyering.net>
23792
23793         * modules/utimens (Depends-on): Add timespec, required for
23794         utimens.h's inclusion of timespec.h.
23795
23796 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
23797
23798         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
23799         long unreadable paths in GNU/Linux.  Problem reported by Andreas
23800         Schwab in
23801         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
23802         I'll try to think of a better way to fix the Solaris problem.
23803
23804         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
23805         like glibc; on Solaris 10, it fails with errno == EINVAL.
23806         POSIX says the behavior is unspecified if the first argument is NULL,
23807         so play it safe and never pass NULL to the system getcwd.
23808
23809 2007-02-21  Jim Meyering  <jim@meyering.net>
23810
23811         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
23812         of gettimeofday.  It would conflict with the one now always
23813         provided via sys_time_.h.  Reported by Matthew Woehlke, as
23814         an IRIX 6.5 build failure.
23815
23816 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
23817
23818         Minor fixups to port to Solaris 10 with Sun C 5.8.
23819         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
23820         * modules/getcwd (Depends-on): Add dirfd.
23821         * lib/putenv.c (putenv): #undef it.
23822         (rpl_putenv): New decl.
23823         (malloc, free): Include <stdlib.h> rather than prototyping separately.
23824
23825 2007-02-20  Bruno Haible  <bruno@clisp.org>
23826
23827         * modules/stdio-tests: New file.
23828         * tests/test-stdio.c: New file.
23829
23830         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
23831         (Depends-on): Add stdio.
23832         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
23833         (Include): Use <stdio.h> instead of vsnprintf.h.
23834         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
23835         HAVE_DECL_VSNPRINTF.
23836         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
23837
23838         * modules/snprintf (Files): Remove lib/snprintf.h.
23839         (Depends-on): Add stdio.
23840         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
23841         (Include): Use <stdio.h> instead of snprintf.h.
23842         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
23843         HAVE_DECL_SNPRINTF.
23844         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
23845         * lib/getaddrinfo.c: Likewise.
23846
23847         * modules/stdio: New file.
23848         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
23849         * lib/snprintf.h: Remove file.
23850         * lib/vsnprintf.h: Remove file.
23851         * lib/.cppi-disable: Remove snprintf.h.
23852         * m4/stdio_h.m4: New file.
23853         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
23854
23855 2007-02-20  Jim Meyering  <jim@meyering.net>
23856
23857         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
23858         used by e.g., mingw.  From Bruno Haible.
23859
23860 2007-02-19  Bruno Haible  <bruno@clisp.org>
23861
23862         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
23863         warnings.
23864         Reported by Ben Pfaff <blp@cs.stanford.edu>.
23865
23866 2007-02-19  Bruno Haible  <bruno@clisp.org>
23867
23868         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
23869         from mingw users.
23870
23871 2007-02-19  Bruno Haible  <bruno@clisp.org>
23872
23873         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
23874         warnings.
23875         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
23876
23877 2007-02-19  Jim Meyering  <jim@meyering.net>
23878
23879         Don't use FD after a successful "fdopendir (fd)".
23880         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
23881         Reset it by calling dirfd on the just-obtained DIR*.
23882
23883         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
23884         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
23885
23886 2007-02-18  Bruno Haible  <bruno@clisp.org>
23887
23888         * lib/readlink.c: Include <unistd.h>.
23889         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
23890         HAVE_READLINK.
23891         * modules/readlink (Depends-on): Add unistd.
23892         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23893         (Include): Add <unistd.h>.
23894
23895         * lib/getlogin_r.h: Remove file.
23896         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
23897         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
23898         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
23899         HAVE_DECL_GETLOGIN_R.
23900         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
23901         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23902         (Include): Use <unistd.h> instead of getlogin_r.h.
23903
23904         * lib/getcwd.h: Remove file.
23905         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
23906         * lib/xgetcwd.c: Likewise.
23907         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
23908         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
23909         * modules/getcwd (Files): Remove lib/getcwd.h.
23910         (Depends-on): Add unistd.
23911         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23912         (Include): Use <unistd.h> instad of getcwd.h.
23913
23914         * lib/ftruncate.c: Include <unistd.h> first.
23915         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
23916         Set HAVE_FTRUNCATE.
23917         * modules/ftruncate (Depends-on): Add unistd.
23918         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23919
23920         * lib/fchdir.c: Include <unistd.h> first.
23921         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
23922         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
23923         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
23924         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23925         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
23926
23927         * lib/dup2.c: Include <unistd.h> first.
23928         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
23929         HAVE_DUP2.
23930         * modules/dup2 (Depends-on): Add unistd.
23931         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23932
23933         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
23934         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
23935         REPLACE_CHOWN. Don't define chown as a macro here.
23936         * modules/chown (Depends-on): Add unistd.
23937         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
23938
23939         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
23940         Add definition for GL_LINK_WARNING.
23941         (chown, dup2): New declarations.
23942         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
23943         link warning.
23944         (ftruncate): New declaration.
23945         (getcwd): New declaration, taken from old getcwd.h.
23946         (getlogin_r): New declaration, taken from old getlogin_r.h.
23947         (readlink): New declaration.
23948         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
23949         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
23950         (gl_PREREQ_UNISTD): Remove macro.
23951         (gl_UNISTD_MODULE_INDICATOR): New macro.
23952         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
23953         many new variables. Don't set UNISTD_H.
23954         * modules/unistd (Description): Change.
23955         (Depends-on): Add link-warning.
23956         (configure.ac): Update.
23957         (Makefile.am): Create unistd.h always. Substitute many new variables
23958         into it.
23959
23960 2007-02-18  Bruno Haible  <bruno@clisp.org>
23961
23962         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
23963         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
23964         HAVE_GETSUBOPT.
23965         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
23966         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
23967         * lib/getsubopt.h: Remove file.
23968         * modules/getsubopt (Files): Remove lib/getsubopt.h.
23969         (Depends-on): Add stdlib.
23970         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23971         (Includes): Use <stdlib.h> instead of getsubopt.h.
23972         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
23973         Set HAVE_GETSUBOPT.
23974         * lib/getsubopt.c: Don't include getsubopt.h.
23975
23976 2007-02-18  Bruno Haible  <bruno@clisp.org>
23977
23978         * modules/fchdir (Depends-on): Add dup2.
23979
23980 2007-02-18  Bruno Haible  <bruno@clisp.org>
23981
23982         * lib/stdlib_.h: Handle glibc's special invocation convention
23983         specially.
23984
23985 2007-02-18  Bruno Haible  <bruno@clisp.org>
23986
23987         * modules/stdlib-tests: New file.
23988         * tests/test-stdlib.c: New file.
23989
23990         * modules/mkstemp (Files): Remove lib/mkstemp.h.
23991         (Depends-on): Add stdlib.
23992         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
23993         (Includes): Use <stdlib.h> instead of mkstemp.h.
23994         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
23995         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
23996         * lib/mkstemp.c: Don't include mkstemp.h.
23997         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
23998         * lib/stdlib--.h: Don't include mkstemp.h.
23999
24000         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
24001         (Depends-on): Add stdlib.
24002         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
24003         (Includes): Use <stdlib.h> instead of mkdtemp.h.
24004         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
24005         HAVE_MKDTEMP.
24006         * lib/mkdtemp.c: Don't include mkdtemp.h.
24007         * lib/clean-temp.c: Don't include mkdtemp.h.
24008
24009         * modules/exit (Files): Remove lib/exit.h.
24010         (Depends-on): Add stdlib.
24011         (Makefile.am): Remove lib_SOURCES.
24012         (Include): Use <stdlib.h> instead of exit.h.
24013         * lib/argmatch.c: Don't include exit.h.
24014         * lib/execute.c: Likewise.
24015         * lib/pagealign_alloc.c: Likewise.
24016         * lib/pipe.c: Likewise.
24017         * lib/wait-process.c: Likewise.
24018         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
24019         * lib/exitfail.c: Likewise.
24020         * lib/savewd.c: Likewise.
24021         * lib/xsetenv.c: Likewise.
24022
24023         * modules/stdlib: New file.
24024         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
24025         and extra comments about mkstemp().
24026         * lib/exit.h: Remove file.
24027         * lib/mkdtemp.h: Remove file.
24028         * lib/mkstemp.h: Remove file.
24029         * m4/stdlib_h.m4: New file.
24030         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
24031
24032 2007-02-18  Bruno Haible  <bruno@clisp.org>
24033
24034         * modules/math-tests: New file.
24035         * tests/test-math.c: New file.
24036
24037         * modules/math: New file.
24038         * modules/mathl (Files): Remove lib/mathl.h.
24039         (Depends-on): Add math.
24040         (Makefile.am): Don't mention mathl.h.
24041         (Include): Use <math.h> instead of mathl.h.
24042         * lib/math_.h: New file.
24043         * lib/mathl.h: Remove file.
24044         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
24045         mathl.h.
24046         * lib/asinl.c: Likewise.
24047         * lib/atanl.c: Likewise.
24048         * lib/ceill.c: Likewise.
24049         * lib/cosl.c: Likewise.
24050         * lib/expl.c: Likewise.
24051         * lib/floorl.c: Likewise.
24052         * lib/frexpl.c: Likewise.
24053         * lib/ldexpl.c: Likewise.
24054         * lib/logl.c: Likewise.
24055         * lib/sincosl.c: Likewise.
24056         * lib/sinl.c: Likewise.
24057         * lib/sqrtl.c: Likewise.
24058         * lib/tanl.c: Likewise.
24059         * lib/trigl.c: Likewise.
24060         * m4/math_h.m4: New file.
24061         * MODULES.html.sh (Mathematics): Add math.
24062
24063 2007-02-17  Bruno Haible  <bruno@clisp.org>
24064
24065         * modules/wctype-tests: New file.
24066         * tests/test-wctype.c: New file.
24067
24068         * modules/wchar-tests: New file.
24069         * tests/test-wchar.c: New file.
24070
24071         * modules/unistd-tests: New file.
24072         * tests/test-unistd.c: New file.
24073
24074         * modules/time-tests: New file.
24075         * tests/test-time.c: New file.
24076
24077         * modules/sysexits-tests: New file.
24078         * tests/test-sysexits.c: New file.
24079
24080         * modules/sys_time-tests: New file.
24081         * tests/test-sys_time.c: New file.
24082
24083         * modules/sys_stat-tests: New file.
24084         * tests/test-sys_stat.c: New file.
24085
24086         * modules/sys_socket-tests: New file.
24087         * tests/test-sys_socket.c: New file.
24088
24089         * modules/sys_select-tests: New file.
24090         * tests/test-sys_select.c: New file.
24091
24092         * modules/string-tests: New file.
24093         * tests/test-string.c: New file.
24094
24095         * modules/stdbool-tests: New file.
24096         * tests/test-stdbool.c: New file.
24097
24098         * modules/netinet_in-tests: New file.
24099         * tests/test-netinet_in.c: New file.
24100
24101         * modules/inttypes-tests: New file.
24102         * tests/test-inttypes.c: New file.
24103
24104         * modules/fcntl-tests: New file.
24105         * tests/test-fcntl.c: New file.
24106
24107         * modules/byteswap-tests: New file.
24108         * tests/test-byteswap.c: New file.
24109
24110         * modules/arpa_inet-tests: New file.
24111         * tests/test-arpa_inet.c: New file.
24112
24113 2007-02-17  Bruno Haible  <bruno@clisp.org>
24114
24115         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
24116         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
24117         if the corresponding module is not enabled. Emit link warnings if
24118         the function is used nevertheless.
24119         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
24120         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
24121         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
24122         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
24123         * modules/inttypes (Depends-on): Add link-warning.
24124         (Makefile.am): Copy the contents of build-aux/link-warning.h into
24125         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
24126         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
24127         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
24128         * modules/imaxdiv (configure.ac): Likewise.
24129         * modules/strtoimax (configure.ac): Likewise.
24130         * modules/strtoumax (configure.ac): Likewise.
24131
24132 2007-02-17  Bruno Haible  <bruno@clisp.org>
24133
24134         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
24135         gl_STRING_MODULE_INDICATOR_DEFAULTS.
24136         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
24137         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
24138
24139 2007-02-17  Bruno Haible  <bruno@clisp.org>
24140
24141         * modules/link-warning: New file.
24142         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
24143         * lib/string_.h (GL_LINK_WARNING): Remove definition.
24144         * modules/string (Depends-on): Add link-warning.
24145         (Makefile.am): Copy the contents of build-aux/link-warning.h into
24146         string.h.
24147         * MODULES.html.sh (Support for building libraries and executables): Add
24148         link-warning.
24149
24150 2007-02-17  Bruno Haible  <bruno@clisp.org>
24151
24152         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
24153         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
24154         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
24155         long lines.
24156
24157 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
24158             Bruno Haible  <bruno@clisp.org>
24159
24160         * modules/tmpfile: New file.
24161         * lib/tmpfile.c: New file.
24162         * m4/tmpfile.m4: New file.
24163         * MODULES.html.sh (func_all_modules): New section "Input/output".
24164
24165 2007-02-15  Bruno Haible  <bruno@clisp.org>
24166
24167         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
24168         (supports_delete_on_close): New function.
24169         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
24170
24171 2007-02-14  Bruno Haible  <bruno@clisp.org>
24172
24173         * modules/mbspcasecmp-tests: New file.
24174         * tests/test-mbspcasecmp.sh: New file.
24175         * tests/test-mbspcasecmp.c: New file.
24176
24177         New module mbspcasecmp.
24178         * modules/mbspcasecmp: New file.
24179         * lib/mbspcasecmp.c: New file.
24180         * lib/string_.h (strncasecmp): Change warning message.
24181         (mbspcasecmp): New declaration.
24182         * m4/mbspcasecmp.m4: New file.
24183         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24184         GNULIB_MBSPCASECMP.
24185         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
24186         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
24187
24188 2007-02-14  Bruno Haible  <bruno@clisp.org>
24189
24190         * modules/mbsncasecmp-tests: New file.
24191         * tests/test-mbsncasecmp.sh: New file.
24192         * tests/test-mbsncasecmp.c: New file.
24193
24194         New module mbsncasecmp.
24195         * modules/mbsncasecmp: New file.
24196         * lib/mbsncasecmp.c: New file.
24197         * lib/string_.h (mbsncasecmp): New declaration.
24198         * m4/mbsncasecmp.m4: New file.
24199         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24200         GNULIB_MBSNCASECMP.
24201         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
24202         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
24203
24204 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
24205
24206         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
24207         Verify that it doesn't overlap with our flags.
24208         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
24209         do not have the desired effect in multibyte locales; instead, use
24210         mbscasecmp.
24211         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
24212         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
24213         we don't require GNU fnmatch ourselves (if our users require it, they
24214         should do so explicitly).
24215
24216         Fix regex code so it doesn't rely on strcasecmp.
24217         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
24218         Otherwise, include gnulib's langinfo.h.
24219         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
24220         undesirable behavior in non-C locales.  Instead, rely on localecharset.
24221         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
24222         * modules/regex (FILES): Remove m4/codeset.m4.
24223         (Depends-on): Add localcharset.  Remove strcase.
24224
24225 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24226
24227         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
24228         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
24229
24230 2007-02-13  Bruno Haible  <bruno@clisp.org>
24231
24232         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
24233         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24234
24235 2007-02-12  Bruno Haible  <bruno@clisp.org>
24236
24237         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
24238         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
24239         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
24240         time warning rather than a link error.
24241
24242 2007-02-12  Bruno Haible  <bruno@clisp.org>
24243
24244         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
24245         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
24246         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24247
24248 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
24249
24250         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
24251         args, not 2.
24252
24253 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
24254
24255         New module 'time', so that apps can include <time.h> as per
24256         POSIX and GNU instead of separate include files like time_r.h
24257         and timegm.h.  This implementation tries out a simpler approach
24258         for replacing decls in standard include files (as compared to
24259         the string module), somewhat as an experiment.
24260
24261         * config/srclist.txt: Comment out mktime.c for now.
24262         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
24263         since it doesn't apply any more.  Use generic wording instead.
24264         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
24265         'time'.
24266         * lib/time_.h, m4/time_h.m4, modules/time: New files.
24267         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
24268         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
24269         Don't include <sys/types.h>; no longer needed since we assume C89.
24270         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
24271         * lib/strftime.c: Likewise.
24272         * lib/time_r.c: Likewise.
24273         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
24274         * lib/nanosleep.c: Include <time.h> first, to check interface.
24275         * lib/strptime.c: Likewise.
24276         * lib/time_r.c: Likewise.
24277         * lib/timegm.c: Likewise.
24278         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
24279         needed.
24280         * lib/timegm.c: Don't include timegm.h; no longer needed.
24281         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
24282         time.h now handles any problems in that area.
24283         (struct timespec, nanosleep): Remove; time.h now arranges for these.
24284         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
24285         that time.h defines struct timespec.
24286         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
24287         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
24288         handles that.
24289         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
24290         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
24291         needed.  Set REPLACE_LOCALTIME.
24292         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
24293         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
24294         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
24295         nanosleep; time_h.m4 now does that.  Don't require
24296         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
24297         module handles this now.
24298         * modules/getdate (Depends-on): Remove timespec.  Add time.
24299         * modules/nanosleep (Depends-on): Likewise.
24300         * modules/stat-time (Depends-on): Likewise.
24301         * modules/nanosleep (Include): Include time.h, not timespec.h.
24302         * modules/strptime (Files): Remove lib/strptime.h.
24303         (Depends-on): Add extensions, time.
24304         (Include): Include time.h, not strptime.h.
24305         * modules/time_r (Files): Remove lib/time_r.h.
24306         (Depends-on): Add time.
24307         (Include): Include time.h, not time_r.h.
24308         * modules/timegm: Likewise.
24309         * modules/timespec (Description): Now does timespec-related decls
24310         of our own, instead of struct timespec itself.
24311         (Depends-on): Add time; remove extensions.
24312         (Maintainer): Add self.
24313         * modules/utimecmp (Depends-on): Add time; remove timespec.
24314         * modules/utimens (Depends-on): Likewise.
24315         * modules/xnanosleep (Depends-on): Likewise.
24316
24317 2007-02-11  Bruno Haible  <bruno@clisp.org>
24318
24319         * lib/c-strstr.c: Include allocsa.h.
24320         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
24321         * lib/c-strcasestr.c: Include allocsa.h.
24322         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
24323         * lib/strcasestr.c: Include allocsa.h.
24324         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
24325         * lib/mbsstr.c: Include allocsa.h.
24326         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
24327         allocsa/freesa instead of malloc/free.
24328         * lib/mbscasestr.c: Include allocsa.h.
24329         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
24330         allocsa/freesa instead of malloc/free.
24331         * modules/c-strstr (Depends-on): Add allocsa.
24332         * modules/c-strcasestr (Depends-on): Likewise.
24333         * modules/strcasestr (Depends-on): Likewise.
24334         * modules/mbsstr (Depends-on): Likewise.
24335         * modules/mbscasestr (Depends-on): Likewise.
24336
24337 2007-02-11  Bruno Haible  <bruno@clisp.org>
24338
24339         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
24340
24341         * modules/mbsspn-tests: New file.
24342         * tests/test-mbsspn.sh: New file.
24343         * tests/test-mbsspn.c: New file.
24344
24345 2007-02-11  Bruno Haible  <bruno@clisp.org>
24346
24347         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
24348
24349         * modules/mbspbrk-tests: New file.
24350         * tests/test-mbspbrk.sh: New file.
24351         * tests/test-mbspbrk.c: New file.
24352
24353 2007-02-11  Bruno Haible  <bruno@clisp.org>
24354
24355         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
24356         unneeded cast.
24357
24358         * modules/mbscspn-tests: New file.
24359         * tests/test-mbscspn.sh: New file.
24360         * tests/test-mbscspn.c: New file.
24361
24362 2007-02-11  Bruno Haible  <bruno@clisp.org>
24363
24364         * modules/mbscasecmp-tests: New file.
24365         * tests/test-mbscasecmp.sh: New file.
24366         * tests/test-mbscasecmp.c: New file.
24367
24368 2007-02-11  Bruno Haible  <bruno@clisp.org>
24369
24370         Ensure O(n) worst-case complexity of mbscasestr.
24371         * lib/mbscasestr.c: Include stdbool.h.
24372         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
24373         functions.
24374         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
24375         the bookkeeping indicates that it's worth it.
24376         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
24377
24378         * modules/mbscasestr-tests: New file.
24379         * tests/test-mbscasestr1.c: New file.
24380         * tests/test-mbscasestr2.sh: New file.
24381         * tests/test-mbscasestr2.c: New file.
24382         * tests/test-mbscasestr3.sh: New file.
24383         * tests/test-mbscasestr3.c: New file.
24384         * tests/test-mbscasestr4.sh: New file.
24385         * tests/test-mbscasestr4.c: New file.
24386         * m4/locale-tr.m4: New file.
24387
24388 2007-02-11  Bruno Haible  <bruno@clisp.org>
24389
24390         Ensure O(n) worst-case complexity of mbsstr.
24391         * lib/mbsstr.c: Include stdbool.h.
24392         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
24393         functions.
24394         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
24395         bookkeeping indicates that it's worth it.
24396         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
24397
24398         * modules/mbsstr-tests: New file.
24399         * tests/test-mbsstr1.c: New file.
24400         * tests/test-mbsstr2.sh: New file.
24401         * tests/test-mbsstr2.c: New file.
24402         * tests/test-mbsstr3.sh: New file.
24403         * tests/test-mbsstr3.c: New file.
24404         * m4/locale-fr.m4: New file.
24405
24406 2007-02-11  Bruno Haible  <bruno@clisp.org>
24407
24408         * lib/mbsrchr.c (mbsrchr): Fix bug.
24409
24410         * modules/mbsrchr-tests: New file.
24411         * tests/test-mbsrchr.sh: New file.
24412         * tests/test-mbsrchr.c: New file.
24413
24414 2007-02-11  Bruno Haible  <bruno@clisp.org>
24415
24416         * lib/mbschr.c (mbschr): Fix bug.
24417
24418         * modules/mbschr-tests: New file.
24419         * tests/test-mbschr.sh: New file.
24420         * tests/test-mbschr.c: New file.
24421         * m4/locale-zh.m4: New file.
24422
24423 2007-02-11  Bruno Haible  <bruno@clisp.org>
24424
24425         Support for copying multibyte string iterators.
24426         * lib/mbiter.h: Include <string.h>.
24427         (mbiter_multi_copy): New function.
24428         (mbi_copy): New macro.
24429         * lib/mbuiter.h: Include <string.h>.
24430         (mbuiter_multi_copy): New function.
24431         (mbui_copy): New macro.
24432
24433 2007-02-11  Bruno Haible  <bruno@clisp.org>
24434
24435         New module mbslen.
24436         * modules/mbslen: New file.
24437         * lib/mbslen.c: New file.
24438         * lib/string_.h (mbslen): New declaration.
24439         * m4/mbslen.m4: New file.
24440         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24441         GNULIB_MBSLEN.
24442         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
24443         * MODULES.html.sh (Internationalization functions): Add mbslen.
24444
24445 2007-02-11  Bruno Haible  <bruno@clisp.org>
24446
24447         Ensure O(n) worst-case complexity of strcasestr substitute.
24448         * lib/strcasestr.c: Include stdbool.h.
24449         (knuth_morris_pratt): New function.
24450         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
24451         bookkeeping indicates that it's worth it.
24452         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
24453
24454         * modules/strcasestr-tests: New file.
24455         * tests/test-strcasestr.c: New file.
24456
24457 2007-02-11  Bruno Haible  <bruno@clisp.org>
24458
24459         Ensure O(n) worst-case complexity of c_strcasestr.
24460         * lib/c-strcasestr.c: Include stdbool.h, string.h.
24461         (knuth_morris_pratt): New function.
24462         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
24463         the bookkeeping indicates that it's worth it.
24464         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
24465
24466         * modules/c-strcasestr-tests: New file.
24467         * tests/test-c-strcasestr.c: New file.
24468
24469 2007-02-11  Bruno Haible  <bruno@clisp.org>
24470
24471         Ensure O(n) worst-case complexity of c_strstr.
24472         * lib/c-strstr.c: Include stdbool.h, string.h.
24473         (knuth_morris_pratt): New function.
24474         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
24475         bookkeeping indicates that it's worth it.
24476         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
24477
24478         * lib/c-strstr.c: Complete rewrite for maintainability.
24479
24480         * modules/c-strstr-tests: New file.
24481         * tests/test-c-strstr.c: New file.
24482
24483 2007-02-11  Bruno Haible  <bruno@clisp.org>
24484
24485         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
24486         5.2.1 and earlier, whereby \055 was treated just like the range
24487         delimiter '-'.
24488         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
24489
24490 2007-02-08  Bruno Haible  <bruno@clisp.org>
24491
24492         * modules/regex (Depends-on): Add stdbool.
24493         Reported by Dalibor Topic <robilad@kaffe.org>.
24494
24495 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
24496
24497         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
24498         Prefer returning from main to exiting from it.
24499         Remove unnecessary parens after sizeof.
24500
24501 2007-02-05  Bruno Haible  <bruno@clisp.org>
24502
24503         New module mbssep.
24504         * modules/mbssep: New file.
24505         * lib/mbssep.c: New file.
24506         * lib/string_.h (strsep): Add a conditional link warning.
24507         (mbssep): New declaration.
24508         * m4/mbssep.m4: New file.
24509         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24510         GNULIB_MBSSEP.
24511         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
24512         * MODULES.html.sh (Internationalization functions): Add mbssep.
24513
24514 2007-02-05  Bruno Haible  <bruno@clisp.org>
24515
24516         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
24517         Optimize search in case of 1 delimiter.
24518
24519 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
24520
24521         * lib/acl.h: Include sys/types.h before sys/acl.h.
24522
24523 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
24524
24525         Merge upstream fix for glibc bugzilla #3957:
24526
24527         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
24528
24529         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
24530         bit for RE_HAT_LISTS_NOT_NEWLINE.
24531         (build_charclass_op): Remove bogus comment.
24532
24533 2007-02-05  Simon Josefsson  <simon@josefsson.org>
24534
24535         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
24536
24537 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
24538
24539         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
24540         * lib/memmem.c [!defined _LIBC]: Include config.h.
24541
24542 2007-02-04  Bruno Haible  <bruno@clisp.org>
24543
24544         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
24545         warning message.
24546
24547 2007-02-04  Bruno Haible  <bruno@clisp.org>
24548
24549         New module mbstok_r.
24550         * modules/mbstok_r: New file.
24551         * lib/mbstok_r.c: New file.
24552         * lib/string_.h (strtok_r): Change argument names to match the
24553         comments. Add a conditional link warning.
24554         (mbstok_r): New declaration.
24555         * m4/mbstok_r.m4: New file.
24556         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24557         GNULIB_MBSTOK_R.
24558         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
24559         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
24560
24561 2007-02-04  Bruno Haible  <bruno@clisp.org>
24562
24563         New module mbsspn.
24564         * modules/mbsspn: New file.
24565         * lib/mbsspn.c: New file.
24566         * lib/string_.h (strspn): Add a conditional link warning.
24567         (mbsspn): New declaration.
24568         * m4/mbsspn.m4: New file.
24569         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24570         GNULIB_MBSSPN.
24571         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
24572         * MODULES.html.sh (Internationalization functions): Add mbsspn.
24573
24574 2007-02-04  Bruno Haible  <bruno@clisp.org>
24575
24576         New module mbspbrk.
24577         * modules/mbspbrk: New file.
24578         * lib/mbspbrk.c: New file.
24579         * lib/string_.h (strpbrk): Add a conditional link warning.
24580         (mbspbrk): New declaration.
24581         * m4/mbspbrk.m4: New file.
24582         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24583         GNULIB_MBSPBRK.
24584         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
24585         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
24586
24587 2007-02-04  Bruno Haible  <bruno@clisp.org>
24588
24589         New module mbscspn.
24590         * modules/mbscspn: New file.
24591         * lib/mbscspn.c: New file.
24592         * lib/string_.h (strcspn): Add a conditional link warning.
24593         (mbscspn): New declaration.
24594         * m4/mbscspn.m4: New file.
24595         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24596         GNULIB_MBSCSPN.
24597         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
24598         * MODULES.html.sh (Internationalization functions): Add mbscspn.
24599
24600 2007-02-04  Bruno Haible  <bruno@clisp.org>
24601
24602         New module mbscasestr, reduced goal of strcasestr.
24603         * modules/mbscasestr: New file.
24604         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
24605         (mbscasestr): Renamed from strcasestr.
24606         * lib/strcasestr.c: Don't include mbuiter.h.
24607         (strcasestr): Remove support for multibyte locales.
24608         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
24609         Change the conditional link warning.
24610         (mbscasestr): New declaration.
24611         * m4/mbscasestr.m4: New file.
24612         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
24613         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
24614         REPLACE_STRCASESTR.
24615         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
24616         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
24617         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
24618         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
24619         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
24620         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
24621         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
24622         (Depends-on): Remove mbuiter.
24623         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
24624
24625 2007-02-04  Bruno Haible  <bruno@clisp.org>
24626
24627         Simplify handling of strncasecmp.
24628         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
24629         the conditional link warning.
24630         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
24631         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
24632         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
24633         * modules/strcase (configure.ac): Don't invoke
24634         gl_STRING_MODULE_INDICATOR.
24635         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
24636
24637 2007-02-04  Bruno Haible  <bruno@clisp.org>
24638
24639         New module mbscasecmp, reduced goal of strcasecmp.
24640         * modules/mbscasecmp: New file.
24641         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
24642         (mbscasecmp): Renamed from strcasecmp.
24643         * lib/strcasecmp.c: Don't include mbuiter.h.
24644         (strcasecmp): Remove support for multibyte locales.
24645         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
24646         Change the conditional link warning.
24647         (mbscasecmp): New declaration.
24648         * m4/mbscasecmp.m4: New file.
24649         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
24650         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
24651         REPLACE_STRCASECMP.
24652         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
24653         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24654         GNULIB_MBSCASECMP.
24655         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
24656         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
24657         * modules/strcase (Files): Remove m4/mbrtowc.m4.
24658         (Depends-on): Remove mbuiter.
24659         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
24660
24661 2007-02-04  Bruno Haible  <bruno@clisp.org>
24662
24663         New module mbsstr. Remove module strstr.
24664         * modules/mbsstr: New file.
24665         * modules/strstr: Remove file.
24666         * lib/mbsstr.c: Renamed from lib/strstr.c.
24667         (mbsstr): Renamed from strstr.
24668         * lib/string_.h (strstr): Remove declaration. Change the conditional
24669         link warning.
24670         (mbsstr): New declaration.
24671         * m4/mbsstr.m4: New file.
24672         * m4/strstr.m4: Remove file.
24673         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
24674         REPLACE_STRSTR.
24675         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
24676         Don't initialize GNULIB_STRSTR.
24677         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
24678         substitute GNULIB_STRSTR and REPLACE_STRSTR.
24679         * MODULES.html.sh (Internationalization functions): Add mbsstr.
24680         (Support for systems lacking ANSI C 89): Remove strstr.
24681
24682 2007-02-04  Bruno Haible  <bruno@clisp.org>
24683
24684         New module mbsrchr.
24685         * modules/mbsrchr: New file.
24686         * lib/mbsrchr.c: New file.
24687         * lib/string_.h (strrchr): Add a conditional link warning.
24688         (mbsrchr): New declaration.
24689         * m4/mbsrchr.m4: New file.
24690         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24691         GNULIB_MBSRCHR.
24692         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
24693         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
24694
24695 2007-02-04  Bruno Haible  <bruno@clisp.org>
24696
24697         New module mbschr.
24698         * modules/mbschr: New file.
24699         * lib/mbschr.c: New file.
24700         * lib/string_.h (strchr): Add a conditional link warning.
24701         (mbschr): New declaration.
24702         * m4/mbschr.m4: New file.
24703         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
24704         GNULIB_MBSCHR.
24705         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
24706         * MODULES.html.sh (Internationalization functions): Add mbschr.
24707
24708 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
24709
24710         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
24711
24712         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
24713
24714 2007-02-04  Bruno Haible  <bruno@clisp.org>
24715
24716         New module description section 'configure.ac-early'.
24717         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
24718         (func_get_autoconf_early_snippet): New function.
24719         (func_import, func_create_testdir): Use it. Remove special cases for
24720         modules 'extensions' and 'lock'.
24721         * modules/extensions (configure.ac-early): Require
24722         gl_USE_SYSTEM_EXTENSIONS.
24723         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
24724
24725 2007-02-04  Bruno Haible  <bruno@clisp.org>
24726
24727         Make use of gcj-4.3's -fsource and -ftarget option.
24728         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
24729         and if so try the options -fsource and -ftarget.
24730         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
24731         source_version, ftarget_option, target_version arguments.
24732         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
24733         (is_envjavac_oldgcj_14_14_usable): Renamed from
24734         is_envjavac_gcj_14_14_usable.
24735         (is_envjavac_oldgcj_14_13_usable): Renamed from
24736         is_envjavac_gcj_14_13_usable.
24737         (is_gcj_present): Update.
24738         (is_gcj_43, is_gcj43_usable): New functions.
24739         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
24740         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
24741         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
24742         try the options -fsource and -ftarget.
24743
24744 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
24745
24746         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
24747         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
24748         larger value.
24749
24750 2007-02-03  Jim Meyering  <jim@meyering.net>
24751
24752         Give tools a better chance to allocate space for very large buffers.
24753         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
24754
24755         Make pwd and readlink work also when run with an unreadable parent dir
24756         on systems with openat support.
24757         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
24758         provided getcwd function, even when we have openat support.
24759         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
24760
24761 2007-02-02  Bruno Haible  <bruno@clisp.org>
24762
24763         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
24764         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
24765         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
24766         portability problems if one of these functions is only used on specific
24767         platforms.
24768         Reported by Paul Eggert.
24769
24770 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
24771
24772         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
24773         is causing more trouble than it's curing.
24774         * lib/regex_internal.h (__mempcpy): Remove.
24775         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
24776         (and make the code a tad smaller to boot).
24777         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
24778
24779 2007-02-02  Jim Meyering  <jim@meyering.net>
24780
24781         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
24782         section, not in the Makefile.am: one.
24783
24784 2007-02-02  Eric Blake  <ebb9@byu.net>
24785
24786         * lib/strchrnul.c: Always include config.h first.
24787
24788         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
24789         gnulib strstr is not necessary here.
24790
24791 2007-02-02  Simon Josefsson  <simon@josefsson.org>
24792
24793         * m4/socklen.m4: Fix typo.
24794
24795 2007-02-02  Eric Blake  <ebb9@byu.net>
24796
24797         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
24798         * modules/netinet_in (Makefile.am): Likewise.
24799
24800 2007-02-01  Bruno Haible  <bruno@clisp.org>
24801
24802         * lib/string_.h (GL_LINK_WARNING): New macro.
24803         (strcasecmp, strstr, strcasestr): If provided by the system,
24804         conditionally define as a macro that leads to a warning instead of to
24805         an error.
24806         (strncasecmp): Conditionally define as a macro that leads to a warning.
24807
24808 2007-02-01  Karl Berry  <karl@gnu.org>
24809
24810         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
24811
24812 2007-02-01  Bruno Haible  <bruno@clisp.org>
24813
24814         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
24815         renamings.
24816
24817 2007-02-01  Eric Blake  <ebb9@byu.net>
24818
24819         * modules/regex (Depends-on): Revert dependence on mempcpy.
24820         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
24821         module's definition of mempcpy.
24822         Reported by Paul Eggert.
24823
24824 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
24825
24826         * lib/string_.h: If the gnulib module XYZ is not present, undefine
24827         the symbol XYZ before redefining it.  This fixes a problem with
24828         programs that don't use XYZ, when compiled on systems that define
24829         XYZ to something else.
24830
24831 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
24832
24833         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
24834         occurs when "mkdir -m foo" creates a setgid directory that is (1)
24835         writeable to group or other and (2) is intended to have a special
24836         mode bit that is set or cleared.  In such a case, the directory
24837         should be neither group- nor other-writeable until the special
24838         mode bits are right.
24839
24840 2007-01-31  Eric Blake  <ebb9@byu.net>
24841
24842         * modules/mountlist (Depends-on): Add strstr.
24843
24844         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
24845         bug.
24846         * modules/string (Makefile.am): Remove redundant replacement.
24847         * modules/regex (Depends-on): Add mempcpy.
24848
24849 2007-01-31  Bruno Haible  <bruno@clisp.org>
24850
24851         New module description field 'Link'.
24852         * gnulib-tool (func_usage): Document --extract-link-directive.
24853         (sed_extract_prog): Recognize 'Link' directive.
24854         (func_get_link_directive): New function.
24855         (func_import): Show summary of link directives.
24856         Handle --extract-link-directive option.
24857         * modules/acl (Link): New section.
24858         * modules/clock-time (Link): New section.
24859         * modules/euidaccess (Link): New section.
24860         * modules/gettext (Link): New section.
24861         * modules/iconv (Link): New section.
24862         * modules/lock (Link): New section.
24863         * modules/nanosleep (Link): New section.
24864         * modules/readline (Link): New section.
24865
24866 2007-01-27  Bruno Haible  <bruno@clisp.org>
24867
24868         Enforce the use of gnulib modules for unportable <string.h> functions.
24869         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
24870         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
24871         (gl_HEADER_STRING_H_BODY): Require it.
24872         * lib/string_.h: If the gnulib module XYZ is not present, redefine
24873         the symbol XYZ to one that gives a link error.
24874         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
24875         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
24876         * modules/mempcpy (configure.ac): Likewise.
24877         * modules/memrchr (configure.ac): Likewise.
24878         * modules/stpcpy (configure.ac): Likewise.
24879         * modules/stpncpy (configure.ac): Likewise.
24880         * modules/strcase (configure.ac): Likewise.
24881         * modules/strcasestr (configure.ac): Likewise.
24882         * modules/strchrnul (configure.ac): Likewise.
24883         * modules/strdup (configure.ac): Likewise.
24884         * modules/strndup (configure.ac): Likewise.
24885         * modules/strnlen (configure.ac): Likewise.
24886         * modules/strpbrk (configure.ac): Likewise.
24887         * modules/strsep (configure.ac): Likewise.
24888         * modules/strstr (configure.ac): Likewise.
24889         * modules/strtok_r (configure.ac): Likewise.
24890
24891 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
24892
24893         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
24894
24895 2007-01-30  Jim Meyering  <jim@meyering.net>
24896
24897         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
24898
24899 2007-01-29  Bruno Haible  <bruno@clisp.org>
24900
24901         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
24902         * lib/execute.c: Likewise.
24903         * lib/pipe.c: Likewise.
24904         * lib/printf-args.h: Likewise.
24905         * lib/printf-args.c: Likewise.
24906         * lib/printf-parse.c: Likewise.
24907         * lib/vasnprintf.c: Likewise.
24908
24909 2007-01-29  Eric Blake  <ebb9@byu.net>
24910
24911         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
24912         declaration.
24913
24914 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
24915
24916         * lib/strptime.h (strptime): Use 'restrict' for args where
24917         POSIX requires this.
24918         * lib/strptime.c (strptime): Likewise.
24919         Change license notice from LGPL to GPL, since gnulib-tool will
24920         change this as needed.
24921         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
24922         defined.
24923         Include "strptime.h" first, to check interface.
24924         Do not #undef _LIBC and _NL_CURRENT.
24925         Do not include <stdlib.h>; no longer needed.
24926         Include "time_r.h" and declare ptime_locale_status
24927         only if _LIBC is not defined.
24928         (__P): Remove unused macro.
24929         (match_string): Bring back glibc version, but use it only if _LIBC
24930         is defined.
24931         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
24932         Remove unnecessary assertion and abort() call.
24933         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
24934         * m4/strptime.m4: Fix serial number comment.
24935         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
24936         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
24937         (Depends-on): Add time_r.
24938
24939 2007-01-29  Bruno Haible  <bruno@clisp.org>
24940
24941         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24942         strptime.
24943         * modules/strptime (Depends-on): Add stdbool.
24944         * lib/strptime.h: Include <time.h> always. Add comments.
24945
24946 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
24947
24948         * modules/strptime: New file.
24949         * lib/strptime.h: New file.
24950         * lib/strptime.c: New file.
24951         * m4/strptime.m4: New file.
24952
24953 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
24954
24955         * MODULES.html.sh: New module mpsort.
24956         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
24957
24958         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
24959         a circularity problem with HP-UX ia64 reported by Bob Proulx in
24960         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
24961         All uses changed.
24962         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
24963         All uses changed.
24964         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
24965         to _Restrict_.
24966         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
24967         the parameter matches the prototype.
24968
24969 2007-01-28  Jim Meyering  <jim@meyering.net>
24970
24971         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
24972         sys/time.h here, reverting that part of the previous patch:
24973         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
24974
24975 2007-01-28  Bruno Haible  <bruno@clisp.org>
24976
24977         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
24978         value of $(SYS_TIME_H).
24979         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
24980         remove it conditionally, too. [added by Jim Meyering]
24981         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
24982         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
24983         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
24984         GETTIMEOFDAY_REPLACEMENT to 1.
24985
24986 2007-01-28  Bruno Haible  <bruno@clisp.org>
24987
24988         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
24989         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
24990         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
24991         Set UNISTD_H instead of UNISTD_H2.
24992         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
24993
24994 2007-01-28  Bruno Haible  <bruno@clisp.org>
24995
24996         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
24997         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
24998
24999 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25000
25001         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
25002         (func_create_testdir): Ensure C locale for `grep' and `tr'
25003         character ranges.
25004         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
25005         ACLOCAL_AMFLAGS parsing state machine.
25006
25007 2007-01-27  Bruno Haible  <bruno@clisp.org>
25008
25009         * modules/unistr/base: Update.
25010
25011 2007-01-27  Bruno Haible  <bruno@clisp.org>
25012
25013         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
25014         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
25015         * modules/unistr/u32-mbtouc-unsafe: Renamed from
25016         modules/unistr/u32-mbtouc.
25017         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
25018         * lib/unistr.h: Update.
25019         * lib/linebreak.c: Update.
25020         * modules/unistr/u32-mbtouc: Renamed from
25021         modules/unistr/u32-mbtouc-safe.
25022         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
25023         * lib/unistr.h: Update.
25024         * lib/unistr/u32-to-u8.c: Update.
25025         * lib/unistr/u32-to-u16.c: Update.
25026
25027 2007-01-27  Bruno Haible  <bruno@clisp.org>
25028
25029         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
25030         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
25031         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
25032         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
25033         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
25034         * modules/unistr/u16-mbtouc-unsafe: Renamed from
25035         modules/unistr/u16-mbtouc.
25036         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
25037         * lib/unistr.h: Update.
25038         * lib/linebreak.c: Update.
25039         * modules/linebreak: Update.
25040         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
25041         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
25042         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
25043         * modules/unistr/u16-mbtouc: Renamed from
25044         modules/unistr/u16-mbtouc-safe.
25045         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
25046         * lib/unistr.h: Update.
25047         * lib/unistr/u16-to-u8.c: Update.
25048         * modules/unistr/u16-to-u8: Update.
25049         * lib/unistr/u16-to-u32.c: Update.
25050         * modules/unistr/u16-to-u32: Update.
25051
25052 2007-01-27  Bruno Haible  <bruno@clisp.org>
25053
25054         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
25055         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
25056         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
25057         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
25058         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
25059         * modules/unistr/u8-mbtouc-unsafe: Renamed from
25060         modules/unistr/u8-mbtouc.
25061         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
25062         * lib/unistr.h: Update.
25063         * lib/striconveh.c: Update.
25064         * modules/striconveh: Update.
25065         * lib/linebreak.c: Update.
25066         * modules/linebreak: Update.
25067         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
25068         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
25069         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
25070         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
25071         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
25072         * lib/unistr.h: Update.
25073         * lib/striconveh.c: Update.
25074         * modules/striconveh: Update.
25075         * lib/unistr/u8-to-u16.c: Update.
25076         * modules/unistr/u8-to-u16: Update.
25077         * lib/unistr/u8-to-u32.c: Update.
25078         * modules/unistr/u8-to-u32: Update.
25079
25080 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25081
25082         Sync from Libtool.
25083         * lib/argz.c: Do not include strings.h nor memory.h, include
25084         string.h unconditionally.  Patch by Simon Josefsson.
25085
25086 2007-01-27  Bruno Haible  <bruno@clisp.org>
25087
25088         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
25089         from gl_HEADER_STRING_H_BODY.
25090         (gl_HEADER_STRING_H_BODY): Require it.
25091         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
25092         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
25093         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
25094         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
25095         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
25096         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
25097         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25098         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
25099         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
25100         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
25101         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
25102         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
25103         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
25104         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25105         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
25106
25107 2007-01-27  Bruno Haible  <bruno@clisp.org>
25108
25109         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
25110         check_PROGRAMS into noinst_PROGRAMS.
25111         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
25112         check_PROGRAMS in this case.
25113         (func_import): Set for_test to false.
25114         (func_create_testdir): Set for_test to true.
25115
25116 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
25117             Bruno Haible  <bruno@clisp.org>
25118
25119         * modules/strcasestr (Files): Remove lib/strcasestr.h.
25120         (Depends-on): Add string.
25121         (Includes): Use <string.h> instead of strcasestr.h.
25122         * modules/string (Makefile.am): Also substitute the value of
25123         REPLACE_STRCASESTR.
25124         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
25125         assume strcasestr is declared in <string.h> not <strings.h>. Also
25126         set REPLACE_STRCASESTR.
25127         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
25128         REPLACE_STRCASESTR.
25129         * lib/strcasestr.h: Remove file.
25130         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
25131         * lib/string_.h (strcasestr): New declaration.
25132
25133 2007-01-27  Bruno Haible  <bruno@clisp.org>
25134
25135         * lib/string_.h: Use 'extern'.
25136
25137 2007-01-27  Jim Meyering  <jim@meyering.net>
25138
25139         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
25140         of set-but-not-used local, "q".
25141
25142         * lib/mempcpy.c: Include <config.h> before <string.h>.
25143         This fixes a compilation error on HP-UX, due to the system's
25144         "restrict"-using mempcpy prototype.
25145
25146 2007-01-26  Bruno Haible  <bruno@clisp.org>
25147
25148         Small optimization.
25149         * lib/javacomp.c: Include c-strstr.h.
25150          (is_envjavac_gcj): Use c_strstr instead of strstr.
25151         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
25152
25153 2007-01-26  Bruno Haible  <bruno@clisp.org>
25154
25155         * MODULES.html.sh (Unicode string functions): Add the new modules.
25156
25157         * modules/uniconv/u32-strconv-to-locale: New file.
25158         * lib/uniconv/u32-strconv-to-locale.c: New file.
25159
25160         * modules/uniconv/u16-strconv-to-locale: New file.
25161         * lib/uniconv/u16-strconv-to-locale.c: New file.
25162
25163         * modules/uniconv/u8-strconv-to-locale: New file.
25164         * lib/uniconv/u8-strconv-to-locale.c: New file.
25165
25166         * modules/uniconv/u32-strconv-from-locale: New file.
25167         * lib/uniconv/u32-strconv-from-locale.c: New file.
25168
25169         * modules/uniconv/u16-strconv-from-locale: New file.
25170         * lib/uniconv/u16-strconv-from-locale.c: New file.
25171
25172         * modules/uniconv/u8-strconv-from-locale: New file.
25173         * lib/uniconv/u8-strconv-from-locale.c: New file.
25174
25175         * modules/uniconv/u32-strconv-to-enc: New file.
25176         * lib/uniconv/u32-strconv-to-enc.c: New file.
25177         * modules/uniconv/u32-strconv-to-enc-tests: New file.
25178         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
25179
25180         * modules/uniconv/u16-strconv-to-enc: New file.
25181         * lib/uniconv/u16-strconv-to-enc.c: New file.
25182         * lib/uniconv/u-strconv-to-enc.h: New file.
25183         * modules/uniconv/u16-strconv-to-enc-tests: New file.
25184         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
25185
25186         * modules/uniconv/u8-strconv-to-enc: New file.
25187         * lib/uniconv/u8-strconv-to-enc.c: New file.
25188         * modules/uniconv/u8-strconv-to-enc-tests: New file.
25189         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
25190
25191         * modules/uniconv/u32-strconv-from-enc: New file.
25192         * lib/uniconv/u32-strconv-from-enc.c: New file.
25193         * modules/uniconv/u32-strconv-from-enc-tests: New file.
25194         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
25195
25196         * modules/uniconv/u16-strconv-from-enc: New file.
25197         * lib/uniconv/u16-strconv-from-enc.c: New file.
25198         * modules/uniconv/u16-strconv-from-enc-tests: New file.
25199         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
25200
25201         * modules/uniconv/u8-strconv-from-enc: New file.
25202         * lib/uniconv/u8-strconv-from-enc.c: New file.
25203         * lib/uniconv/u-strconv-from-enc.h: New file.
25204         * modules/uniconv/u8-strconv-from-enc-tests: New file.
25205         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
25206
25207         * modules/uniconv/u32-conv-from-enc: New file.
25208         * lib/uniconv/u32-conv-from-enc.c: New file.
25209         * modules/uniconv/u32-conv-from-enc-tests: New file.
25210         * tests/uniconv/test-u32-conv-from-enc.c: New file.
25211
25212         * modules/uniconv/u16-conv-from-enc: New file.
25213         * lib/uniconv/u16-conv-from-enc.c: New file.
25214         * lib/uniconv/u-conv-from-enc.h: New file.
25215         * modules/uniconv/u16-conv-from-enc-tests: New file.
25216         * tests/uniconv/test-u16-conv-from-enc.c: New file.
25217
25218         * modules/uniconv/u8-conv-from-enc: New file.
25219         * lib/uniconv/u8-conv-from-enc.c: New file.
25220         * modules/uniconv/u8-conv-from-enc-tests: New file.
25221         * tests/uniconv/test-u8-conv-from-enc.c: New file.
25222
25223         * modules/uniconv/base: New file.
25224         * lib/uniconv.h: New file.
25225
25226 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
25227
25228         * doc/gnulib-tool.texi (Initial import): Update to match current
25229         behavior with strdup module.
25230         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
25231         * lib/memmem.h: Remove; all uses removed.  This is now done
25232         by <string.h>.
25233         * lib/mempcpy.h: Likewise.
25234         * lib/memrchr.h: Likewise.
25235         * lib/stpcpy.h: Likewise.
25236         * lib/stpncpy.h: Likewise.
25237         * lib/strcase.h: Likewise.
25238         * lib/strchrnul.h: Likewise.
25239         * lib/strdup.h: Likewise.
25240         * lib/strndup.h: Likewise.
25241         * lib/strnlen.h: Likewise.
25242         * lib/strpbrk.h: Likewise.
25243         * lib/strsep.h: Likewise.
25244         * lib/strstr.h: Likewise.
25245         * lib/strtok_r.h: Likewise.
25246         * lib/string_.h: New file.
25247         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
25248         Rely on <string.h> instead.
25249         * lib/canon-host.c: Likewise.
25250         * lib/chdir-long.c: Likewise.
25251         * lib/concatpath.c: Likewise.
25252         * lib/exclude.c: Likewise.
25253         * lib/fchdir.c: Likewise.
25254         * lib/getaddrinfo.c: Likewise.
25255         * lib/getcwd.c: Likewise.
25256         * lib/getsubopt.c: Likewise.
25257         * lib/glob.c: Likewise.
25258         * lib/hard-locale.c: Likewise.
25259         * lib/iconvme.c: Likewise.
25260         * lib/javacomp.c: Likewise.
25261         * lib/mempcpy.c: Likewise.
25262         * lib/memrchr.c: Likewise.
25263         * lib/regex_internal.h: Likewise.
25264         * lib/stpncpy.c: Likewise.
25265         * lib/strcasecmp.c: Likewise.
25266         * lib/strchrnul.c: Likewise.
25267         * lib/strdup.c: Likewise.
25268         * lib/striconv.c: Likewise.
25269         * lib/striconveh.c: Likewise.
25270         * lib/striconveha.c: Likewise.
25271         * lib/strncasecmp.c: Likewise.
25272         * lib/strndup.c: Likewise.
25273         * lib/strnlen.c: Likewise.
25274         * lib/strsep.c: Likewise.
25275         * lib/strstr.c: Likewise.
25276         * lib/strtok_r.c: Likewise.
25277         * lib/userspec.c: Likewise.
25278         * lib/w32spawn.h: Likewise.
25279         * lib/xstrndup.c: Likewise.
25280         * lib/mountlist.c (strstr): Remove decl.
25281         * m4/string_h.m4: New file.
25282         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
25283         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
25284         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
25285         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
25286         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
25287         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
25288         Set REPLACE_STRCASECMP if necessary.
25289         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
25290         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
25291         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
25292         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
25293         HAVE_DECL_STRDUP if necessary.
25294         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
25295         since gl_FUNC_STRNDUP does that now.
25296         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
25297         Check for decl here...
25298         (gl_PREREQ_STRNLEN): ... not here.
25299         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
25300         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
25301         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
25302         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
25303         necessary.
25304         * modules/string: New file.
25305         * modules/memmem (Files): Remove special-purpose include file.
25306         (Depends-on): Add string.
25307         (Include): Include <string.h>, not the removed file.
25308         * modules/mempcpy: Likewise.
25309         * modules/memrchr: Likewise.
25310         * modules/stpcpy: Likewise.
25311         * modules/stpncpy: Likewise.
25312         * modules/strcase: Likewise.
25313         * modules/strchrnul: Likewise.
25314         * modules/strdup: Likewise.
25315         * modules/strndup: Likewise.
25316         * modules/strnlen: Likewise.
25317         * modules/strpbrk: Likewise.
25318         * modules/strsep: Likewise.
25319         * modules/strstr: Likewise.
25320         * modules/strtok_r: Likewise.
25321         * tests/test-dirname.c: Don't include "strdup.h", since
25322         <string.h> now suffices.
25323         * tests/test-memmem.c: Don't include "memmem.h", since
25324         <string.h> now suffices.
25325
25326 2007-01-25  Bruno Haible  <bruno@clisp.org>
25327
25328         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
25329         *resultp is 0.
25330
25331         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
25332         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
25333         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
25334         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
25335
25336         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
25337         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
25338         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
25339         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
25340         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
25341         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
25342
25343 2007-01-24  Bruno Haible  <bruno@clisp.org>
25344
25345         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
25346         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
25347         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
25348         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
25349         gl_FUNC_FTS_CORE.
25350         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
25351         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
25352         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25353         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
25354         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
25355         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
25356         gl_FUNC_FCHOWNAT.
25357         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
25358         gl_FUNC_STRFTIME.
25359         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
25360         Reported by Ralf Wildenhues.
25361
25362 2007-01-24  Bruno Haible  <bruno@clisp.org>
25363
25364         Drop AC_REQUIRE calls that are redundant with the module dependencies.
25365         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
25366         gl_GETADDRINFO.
25367         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
25368         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
25369         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
25370
25371 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
25372
25373         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
25374         Don't use 'exit'; just return from 'main'.
25375         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
25376
25377         * lib/fnmatch_.h: Readjust white space and comments to match
25378         glibc, to avoid spurious diffs.
25379
25380 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
25381
25382         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
25383         2004-12-01 change by Jakub Jelinek, since this code won't compile
25384         if !LIBC.  Problem reported by Bob Proulx.
25385
25386 2007-01-23  Bruno Haible  <bruno@clisp.org>
25387
25388         * lib/striconveh.c: Include c-strcaseeq.h.
25389         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
25390         * modules/striconveh (Depends-on): Add c-strcaseeq.
25391
25392 2007-01-23  Bruno Haible  <bruno@clisp.org>
25393
25394         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
25395
25396         * modules/c-strcaseeq: New file.
25397         * lib/c-strcaseeq.h: New file.
25398
25399         * modules/streq: New file.
25400         * lib/streq.h: New file.
25401
25402 2007-01-23  Bruno Haible  <bruno@clisp.org>
25403
25404         * modules/striconveha-tests: New file.
25405         * tests/test-striconveha.c: New file.
25406
25407         * lib/striconveha.h: Include <stdbool.h>.
25408         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
25409         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
25410         (mem_iconveha_notranslit): Renamed from mem_iconveha.
25411         (mem_iconveha): New function.
25412         (str_iconveha_notranslit): Renamed from str_iconveha.
25413         (str_iconveha): New function.
25414         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
25415         c-strcase.
25416
25417 2007-01-23  Bruno Haible  <bruno@clisp.org>
25418
25419         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
25420         encodings without forgiving before trying any encoding with handler.
25421         (str_iconveha): Try all encodings without forgiving before trying any
25422         encoding with handler.
25423
25424 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
25425
25426         Import the following changes from libc.
25427
25428         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
25429
25430         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
25431
25432         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
25433
25434         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
25435         normal_bracket label.
25436
25437         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
25438
25439         [BZ #361]
25440         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
25441         to normal_bracket after fetching the next character.
25442
25443 2007-01-22  Bruno Haible  <bruno@clisp.org>
25444
25445         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
25446         argument.
25447         * lib/striconveh.c (iconv_carefully_1): New function.
25448         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
25449         argument.
25450         (str_cd_iconveh): Update.
25451         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
25452         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
25453         * tests/test-striconveh.c (MAGIC): New macro.
25454         (new_offsets): New function.
25455         (main): Test call with and without offsets.
25456
25457 2007-01-22  Bruno Haible  <bruno@clisp.org>
25458
25459         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
25460         * modules/sys_select (Makefile.am): Likewise.
25461         * modules/sys_socket (Makefile.am): Likewise.
25462         * modules/sys_time (Makefile.am): Likewise.
25463
25464 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
25465
25466         * modules/gettimeofday (License): Change from GPL to LGPL, since
25467         gettimeofday is a library function.
25468
25469 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25470
25471         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
25472
25473 2007-01-21  Bruno Haible  <bruno@clisp.org>
25474
25475         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
25476
25477 2007-01-21  Bruno Haible  <bruno@clisp.org>
25478
25479         * modules/striconveha: New file.
25480         * lib/striconveha.h: New file.
25481         * lib/striconveha.c: New file.
25482         * MODULES.html.sh (Internationalization functions): Add striconveha.
25483         * lib/striconv.c (str_iconv): Optimize the case of an empty input
25484         string.
25485         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
25486
25487 2007-01-21  Bruno Haible  <bruno@clisp.org>
25488
25489         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
25490         * lib/striconveh.c (str_iconveh): Likewise.
25491
25492 2007-01-21  Bruno Haible  <bruno@clisp.org>
25493
25494         * lib/striconveh.h (mem_iconveh): New declaration.
25495         * lib/striconveh.c (mem_iconveh): New function.
25496         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
25497
25498 2007-01-21  Bruno Haible  <bruno@clisp.org>
25499
25500         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
25501
25502         * lib/striconveh.h (mem_cd_iconveh): Change specification.
25503         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
25504         original result buffer.
25505         (str_cd_iconveh): Update.
25506         * tests/test-striconveh.c (main): Update.
25507
25508         * lib/striconv.h (mem_cd_iconv): Change specification.
25509         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
25510         result buffer.
25511         (str_cd_iconv): Update.
25512         * tests/test-striconv.c (main): Update.
25513
25514 2007-01-21  Bruno Haible  <bruno@clisp.org>
25515
25516         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
25517
25518 2007-01-20  Jim Meyering  <jim@meyering.net>
25519
25520         * lib/userspec.c (parse_with_separator): If a user or group string
25521         starts with "+", skip the corresponding name-to-ID look-up, since
25522         such a look-up must fail: user and group names may not include "+".
25523
25524 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
25525
25526         * lib/poll.c: Include sys/time.h and time.h unconditionally,
25527         since we now assume the sys_time module.
25528         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
25529         check for sys/time.h; no longer needed.
25530         * modules/poll (Depends-on): Depend on sys_time.
25531
25532 2007-01-18  Bruno Haible  <bruno@clisp.org>
25533
25534         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
25535         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
25536
25537         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
25538         gettimeofday.
25539
25540         * tests/test-gettimeofday.c: Include <time.h>.
25541         (dummy): Remove variable.
25542
25543         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
25544         gl_HEADER_SYS_TIME_H.
25545         (gl_HEADER_SYS_TIME_H): New macro.
25546
25547         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
25548         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25549         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
25550         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
25551         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25552         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
25553         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
25554         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25555         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
25556         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
25557         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25558
25559         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
25560         last change; it caused a compilation error when cross-compiling to
25561         Cygwin.
25562
25563 2007-01-18  Jim Meyering  <jim@meyering.net>
25564
25565         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
25566         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
25567         than the race-prone "test -d sys || mkdir sys".
25568         (configure.ac): Use AC_PROG_MKDIR_P.
25569         * modules/sys_select: Likewise.
25570         * modules/sys_socket: Likewise.
25571         * modules/sys_time: Likewise.
25572
25573 2007-01-18  Eric Blake  <ebb9@byu.net>
25574
25575         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
25576         replace gettimeofday.
25577         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
25578         name, to avoid infinite recursion.
25579
25580 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
25581
25582         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
25583         module sys_time.
25584         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
25585         assume timespec.h defines struct timeval.
25586         * lib/settime.c: Likewise.
25587         * lib/utimens.c: Likewise.
25588         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
25589         since we now assume the gettimeofday module.
25590         * lib/tempname.c (__gen_tempname): Likewise.
25591         * lib/gettimeofday.h: Remove.
25592         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
25593         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
25594         Include <time.h>, for 'time()'.
25595         (localtime_buffer_addr): Also use this workaround if
25596         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
25597         to simplify the uses.  All uses changed.
25598         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
25599         that #undef is inside {}, and 'const' follows type name consistently.
25600         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
25601         (gettimeofday): Do not use the maximum possible value for
25602         tv->tv_usec, since that might break usages other than ls.c.
25603         Instead, we'll leave ls.c alone.  This undoes today's patch
25604         by Bruno.  Add a compile-time warning for 1s-clock resolution;
25605         we've never observed the problem but might as well keep the
25606         canary.
25607         * lib/nanosleep.c: Include timespec.h first, for interface check.
25608         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
25609         now assume the sys_time module.
25610         * lib/tempname.c: Likewise.
25611         * lib/timespec.h: Likewise.
25612         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
25613         needed.
25614         * lib/strftime.c: Likewise.
25615         * lib/timespec.h: Likewise.
25616         * lib/posixtm.c: Include posixtm.h first, for interface check.
25617         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
25618         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
25619         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
25620         * lib/sys_time_.h: New file.
25621         * lib/timespec.h (struct timespec): Use long int, not long.
25622         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
25623         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
25624         Remove obsolescent call to AC_HEADER_TIME.
25625         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
25626         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
25627         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
25628         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
25629         Likewise.
25630         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
25631         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
25632         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
25633         into the sys_time module.  Check for gettimeofday just once.
25634         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
25635         for gettimeofday signature to just check the signature.  Merely
25636         compile it, since linking doesn't test signature.  Improve test for
25637         whether gettimeofday.o is actually needed.
25638         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
25639         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
25640         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
25641         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25642         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
25643         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
25644         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
25645         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
25646         than worrying about sys/time.h.
25647         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
25648         Don't bother worrying about TIME_WITH_SYS_TIME.
25649         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
25650         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
25651         * m4/sys_time_h.m4: New file.
25652         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
25653         Don't include sys/time.h.  Return from main rather than exiting.
25654         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
25655         all uses changed.
25656         * modules/gethrxtime (Depends-on): Add sys_time.
25657         * modules/gettime (Depends-on): Likewise.
25658         * modules/gettimeofday (Depends-on): Likewise.
25659         * modules/nanosleep (Depends-on): Likewise.
25660         * modules/settime (Depends-on): Likewise.
25661         * modules/tempname (Depends-on): Likewise.
25662         * modules/utimens (Depends-on): Likewise.
25663         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
25664         (Include:) Change back to <sys/time.h>.
25665         (Maintainer:) Add self.
25666         * modules/sys_time: New file.
25667         * modules/tempname (Depends-on): Add gettimeofday.
25668         * tests/test-gettimeofday.c: Include <sys/time.h>
25669         rather than gettimeofday.h.
25670
25671 2007-01-17  Bruno Haible  <bruno@clisp.org>
25672
25673         * gnulib-tool (func_get_license): Revert last patch. Instead, let
25674         the license default to GPL.
25675         (func_create_testdir): Don't complain if a module is LGPL and its
25676         tests module depends on GPLed modules.
25677
25678 2007-01-17  Bruno Haible  <bruno@clisp.org>
25679
25680         * lib/gettimeofday.c (gettimeofday): Add code for the case
25681         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
25682         maximum possible value for tv->tv_usec, rather than the minimum one.
25683
25684 2005-10-08  Martin Lambers  <marlam@marlam.de>
25685 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
25686 2007-01-16  Bruno Haible  <bruno@clisp.org>
25687
25688         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
25689         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
25690         gl_FUNC_GETTIMEOFDAY.
25691         (Include): Add gettimeofday.h.
25692         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
25693         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
25694         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
25695         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
25696         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
25697         * lib/gettimeofday.h: New file.
25698         * lib/gettimeofday.c: Include <sys/timeb.h>.
25699         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
25700         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
25701         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
25702         fall back on time().
25703
25704         * tests/test-gettimeofday.c: New file.
25705         * modules/gettimeofday-tests: New file.
25706
25707 2007-01-16  Eric Blake  <ebb9@byu.net>
25708
25709         * modules/fnmatch (Depends-on): Depend on wchar.
25710         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
25711         * m4/fnmatch.m4: Likewise.
25712         * modules/mbchar (Makefile.am): Assume <wchar.h>.
25713         * m4/mbchar.m4: Likewise.
25714         * modules/mbswidth (Depends-on): Depend on wchar.
25715         * lib/mbswidth.c: Assume <wchar.h>.
25716         * m4/mbswidth.m4: Likewise.
25717         * modules/quotearg (Depends-on): Depend on wchar.
25718         * lib/quotearg.c: Assume <wchar.h>.
25719         * m4/quotearg.m4: Likewise.
25720         * modules/regex (Depends-on): Depend on wchar.
25721         * lib/regex_internal.h: Assume <wchar.h>.
25722         * m4/regex.m4: Likewise.
25723         * modules/stdint (Depends-on): Depend on wchar.
25724         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
25725         * m4/stdint.m4: Likewise.
25726         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
25727         * modules/strftime (Depends-on): Depend on wchar.
25728         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
25729         * modules/strtol (Depends-on): Depend on wchar.
25730         * lib/strtol.c: Assume <wchar.h>.
25731         * modules/wcwidth (Depends-on): Depend on wchar.
25732         * lib/wcwidth.h: Assume <wchar.h>.
25733         * m4/wcwidth.m4: Likewise.
25734
25735 2007-01-16  Bruno Haible  <bruno@clisp.org>
25736
25737         * modules/csharpexec-script: New, created from...
25738         * modules/csharpexec: ... this.
25739
25740 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
25741
25742         * modules/javaexec-script: New, created from...
25743         * modules/javaexec: ... this.
25744
25745 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25746
25747         * modules/poll (Dependencies): Add sys_select.
25748
25749 2007-01-15  Jim Meyering  <jim@meyering.net>
25750
25751         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
25752         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
25753         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
25754         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
25755
25756 2007-01-15  Bruno Haible  <bruno@clisp.org>
25757
25758         * modules/striconveh: New file.
25759         * lib/striconveh.h: New file.
25760         * lib/striconveh.c: New file.
25761         * MODULES.html.sh (Internationalization functions): Add striconveh.
25762
25763         * modules/striconveh-tests: New file.
25764         * tests/test-striconveh.c: New file.
25765
25766 2007-01-15  Bruno Haible  <bruno@clisp.org>
25767
25768         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
25769         not from GNU libiconv or GNU libc.
25770
25771 2007-01-15  Bruno Haible  <bruno@clisp.org>
25772
25773         * doc/gnulib-intro.texi (Copyright): Explain the different license
25774         terms for module descriptions, autoconf macros, tests, documentation.
25775
25776 2007-01-14  Bruno Haible  <bruno@clisp.org>
25777
25778         * modules/striconv-tests: New file.
25779         * tests/test-striconv.c: New file.
25780
25781 2007-01-14  Bruno Haible  <bruno@clisp.org>
25782
25783         * modules/iconv-tests: New file.
25784         * tests/test-iconv.c: New file.
25785
25786 2007-01-14  Bruno Haible  <bruno@clisp.org>
25787
25788         * gnulib-tool (func_get_license): For test modules, use the license of
25789         the main module.
25790
25791 2007-01-14  Bruno Haible  <bruno@clisp.org>
25792
25793         * modules/iconv (Include): Clarify that <iconv.h> can only be included
25794         if iconv is found to exist.
25795
25796 2007-01-14  Bruno Haible  <bruno@clisp.org>
25797
25798         * modules/c-ctype-tests: New file.
25799         * tests/test-c-ctype.c: New file.
25800
25801 2007-01-14  Bruno Haible  <bruno@clisp.org>
25802
25803         * modules/binary-io-tests: New file.
25804         * tests/test-binary-io.sh: New file.
25805         * tests/test-binary-io.c: New file.
25806
25807 2007-01-14  Bruno Haible  <bruno@clisp.org>
25808
25809         * modules/array-oset-tests: New file.
25810         * tests/test-array_oset.c: New file.
25811
25812 2007-01-14  Bruno Haible  <bruno@clisp.org>
25813
25814         * modules/array-list-tests: New file.
25815         * tests/test-array_list.c: New file.
25816
25817 2007-01-14  Bruno Haible  <bruno@clisp.org>
25818
25819         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
25820         and make.
25821         Reported by Simon Josefsson in
25822         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
25823
25824 2007-01-14  Bruno Haible  <bruno@clisp.org>
25825
25826         * modules/allocsa-tests: New file.
25827         * tests/test-allocsa.c: New file.
25828
25829 2007-01-14  Bruno Haible  <bruno@clisp.org>
25830
25831         * modules/fchdir (Depends-on): Add absolute-header.
25832         * modules/unistd (Depends-on): Likewise.
25833
25834 2006-12-30  Bruno Haible  <bruno@clisp.org>
25835
25836         * modules/fchdir: New file.
25837         * modules/unistd (Files): Add lib/unistd_.h.
25838         (Makefile.am): Generate unistd.h from unistd_.h.
25839         * lib/fchdir.c: New file.
25840         * lib/dirent_.h: New file.
25841         * lib/unistd_.h: New file.
25842         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
25843         * m4/fchdir.m4: New file.
25844         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
25845         (gl_HEADER_UNISTD): Invoke it.
25846         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
25847         function.
25848         * lib/backupfile.c (opendir, closedir): Undefine.
25849         * lib/chown.c (open, close): Undefine.
25850         * lib/clean-temp.c (open, close): Undefine.
25851         * lib/copy-file.c (open, close): Undefine.
25852         * lib/execute.c (open, close): Undefine.
25853         * lib/fsusage.c (open, close): Undefine.
25854         * lib/gc-gnulib.c (open, close): Undefine.
25855         * lib/getcwd.c (opendir, closedir): Undefine.
25856         * lib/glob.c (opendir, closedir): Undefine.
25857         * lib/javacomp.c (open, close): Undefine.
25858         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
25859         * lib/openat-proc.c (open, close): Undefine.
25860         * lib/pagealign_alloc.c (open, close): Undefine.
25861         * lib/pipe.c (open, close): Undefine.
25862         * lib/progreloc.c (open, close): Undefine.
25863         * lib/savedir.c (opendir, closedir): Undefine.
25864         * lib/utime.c (open, close): Undefine.
25865         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
25866
25867 2007-01-10  Bruno Haible  <bruno@clisp.org>
25868
25869         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
25870
25871 2007-01-12  Eric Blake  <ebb9@byu.net>
25872
25873         Provide a robust <wchar.h>.  Further simplifications are now
25874         possible in other modules, but not included here.
25875         * modules/wchar: New module.
25876         * m4/wchar.m4: New file.
25877         * lib/wchar_.h: Likewise.
25878         * modules/mbchar (Depends-on): Depend on wchar, as the first use
25879         of the new module.
25880         * MODULES.html.sh (Extended multibyte and wide character utilities):
25881         New section.
25882
25883 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
25884
25885         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
25886         to a reasonable default for memory allocation.
25887         (xreadlink): Don't allocate a huge buffer, to work around a buggy
25888         file system that reports garbage st_size values for symlinks.
25889         Problem reported by Liyang Hu.
25890
25891 2007-01-11  Simon Josefsson  <simon@josefsson.org>
25892
25893         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
25894         Emacs .#* auto-save files).
25895
25896 2007-01-11  Bruno Haible  <bruno@clisp.org>
25897
25898         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
25899         directory.
25900
25901 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
25902
25903         Use @...@ consistently in lib/wctype_.h.
25904         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
25905         on it being set to 1 or 0.
25906         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
25907         go back to AC_SUBSTing it.
25908         * modules/wctype (Makefile.am): Undo previous change.
25909
25910 2007-01-10  Eric Blake  <ebb9@byu.net>
25911
25912         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
25913         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
25914         * modules/wctype (Makefile.am): Likewise.
25915         Reported by Chris McGuire.
25916
25917 2007-01-10  Jim Meyering  <jim@meyering.net>
25918
25919         fts.c: a small readability/maintainability improvement
25920         * lib/fts.c (fts_read): Make this code slightly more readable and
25921         maintainable by hoisting the "sp->fts_cur = p" assignments to
25922         immediately follow the statements that set P.  Derived from
25923         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
25924
25925 2007-01-10  Eric Blake  <ebb9@byu.net>
25926
25927         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
25928         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
25929         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
25930         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
25931         Reported by Chris McGuire.
25932
25933 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25934
25935         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
25936         in sed script.
25937
25938 2007-01-09  Bruno Haible  <bruno@clisp.org>
25939
25940         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
25941         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
25942         variables.
25943         (func_module): Use them.
25944
25945 2007-01-09  Bruno Haible  <bruno@clisp.org>
25946
25947         * modules/unistr/base: New file.
25948         * lib/unistr.h: New file.
25949
25950         * modules/unistr/u8-to-u16: New file.
25951         * lib/unistr/u8-to-u16.c: New file.
25952
25953         * modules/unistr/u8-to-u32: New file.
25954         * lib/unistr/u8-to-u32.c: New file.
25955
25956         * modules/unistr/u16-to-u8: New file.
25957         * lib/unistr/u16-to-u8.c: New file.
25958
25959         * modules/unistr/u16-to-u32: New file.
25960         * lib/unistr/u16-to-u32.c: New file.
25961
25962         * modules/unistr/u32-to-u8: New file.
25963         * lib/unistr/u32-to-u8.c: New file.
25964
25965         * modules/unistr/u32-to-u16: New file.
25966         * lib/unistr/u32-to-u16.c: New file.
25967
25968         * modules/unistr/u8-check: New file.
25969         * modules/unistr/u16-check: New file.
25970         * modules/unistr/u32-check: New file.
25971         * lib/unistr/u8-check.c: New file.
25972         * lib/unistr/u16-check.c: New file.
25973         * lib/unistr/u32-check.c: New file.
25974
25975         * modules/unistr/u8-chr: New file.
25976         * modules/unistr/u16-chr: New file.
25977         * modules/unistr/u32-chr: New file.
25978         * lib/unistr/u8-chr.c: New file.
25979         * lib/unistr/u16-chr.c: New file.
25980         * lib/unistr/u32-chr.c: New file.
25981
25982         * modules/unistr/u8-cmp: New file.
25983         * modules/unistr/u16-cmp: New file.
25984         * modules/unistr/u32-cmp: New file.
25985         * lib/unistr/u8-cmp.c: New file.
25986         * lib/unistr/u16-cmp.c: New file.
25987         * lib/unistr/u32-cmp.c: New file.
25988
25989         * modules/unistr/u8-cpy: New file.
25990         * modules/unistr/u16-cpy: New file.
25991         * modules/unistr/u32-cpy: New file.
25992         * lib/unistr/u8-cpy.c: New file.
25993         * lib/unistr/u16-cpy.c: New file.
25994         * lib/unistr/u32-cpy.c: New file.
25995         * lib/unistr/u-cpy.h: New file.
25996
25997         * modules/unistr/u8-cpy-alloc: New file.
25998         * modules/unistr/u16-cpy-alloc: New file.
25999         * modules/unistr/u32-cpy-alloc: New file.
26000         * lib/unistr/u8-cpy-alloc.c: New file.
26001         * lib/unistr/u16-cpy-alloc.c: New file.
26002         * lib/unistr/u32-cpy-alloc.c: New file.
26003         * lib/unistr/u-cpy-alloc.h: New file.
26004
26005         * modules/unistr/u8-endswith: New file.
26006         * modules/unistr/u16-endswith: New file.
26007         * modules/unistr/u32-endswith: New file.
26008         * lib/unistr/u8-endswith.c: New file.
26009         * lib/unistr/u16-endswith.c: New file.
26010         * lib/unistr/u32-endswith.c: New file.
26011         * lib/unistr/u-endswith.h: New file.
26012
26013         * modules/unistr/u8-mblen: New file.
26014         * modules/unistr/u16-mblen: New file.
26015         * modules/unistr/u32-mblen: New file.
26016         * lib/unistr/u8-mblen.c: New file.
26017         * lib/unistr/u16-mblen.c: New file.
26018         * lib/unistr/u32-mblen.c: New file.
26019
26020         * modules/unistr/u8-mbtouc: New file.
26021         * modules/unistr/u16-mbtouc: New file.
26022         * modules/unistr/u32-mbtouc: New file.
26023         * lib/unistr/u8-mbtouc.c: New file.
26024         * lib/unistr/u16-mbtouc.c: New file.
26025         * lib/unistr/u32-mbtouc.c: New file.
26026
26027         * modules/unistr/u8-mbtouc-safe: New file.
26028         * modules/unistr/u16-mbtouc-safe: New file.
26029         * modules/unistr/u32-mbtouc-safe: New file.
26030         * lib/unistr/u8-mbtouc-safe.c: New file.
26031         * lib/unistr/u16-mbtouc-safe.c: New file.
26032         * lib/unistr/u32-mbtouc-safe.c: New file.
26033
26034         * modules/unistr/u8-move: New file.
26035         * modules/unistr/u16-move: New file.
26036         * modules/unistr/u32-move: New file.
26037         * lib/unistr/u8-move.c: New file.
26038         * lib/unistr/u16-move.c: New file.
26039         * lib/unistr/u32-move.c: New file.
26040         * lib/unistr/u-move.h: New file.
26041
26042         * modules/unistr/u8-next: New file.
26043         * modules/unistr/u16-next: New file.
26044         * modules/unistr/u32-next: New file.
26045         * lib/unistr/u8-next.c: New file.
26046         * lib/unistr/u16-next.c: New file.
26047         * lib/unistr/u32-next.c: New file.
26048
26049         * modules/unistr/u8-prev: New file.
26050         * modules/unistr/u16-prev: New file.
26051         * modules/unistr/u32-prev: New file.
26052         * lib/unistr/u8-prev.c: New file.
26053         * lib/unistr/u16-prev.c: New file.
26054         * lib/unistr/u32-prev.c: New file.
26055
26056         * modules/unistr/u8-set: New file.
26057         * modules/unistr/u16-set: New file.
26058         * modules/unistr/u32-set: New file.
26059         * lib/unistr/u8-set.c: New file.
26060         * lib/unistr/u16-set.c: New file.
26061         * lib/unistr/u32-set.c: New file.
26062         * lib/unistr/u-set.h: New file.
26063
26064         * modules/unistr/u8-startswith: New file.
26065         * modules/unistr/u16-startswith: New file.
26066         * modules/unistr/u32-startswith: New file.
26067         * lib/unistr/u8-startswith.c: New file.
26068         * lib/unistr/u16-startswith.c: New file.
26069         * lib/unistr/u32-startswith.c: New file.
26070         * lib/unistr/u-startswith.h: New file.
26071
26072         * modules/unistr/u8-stpcpy: New file.
26073         * modules/unistr/u16-stpcpy: New file.
26074         * modules/unistr/u32-stpcpy: New file.
26075         * lib/unistr/u8-stpcpy.c: New file.
26076         * lib/unistr/u16-stpcpy.c: New file.
26077         * lib/unistr/u32-stpcpy.c: New file.
26078         * lib/unistr/u-stpcpy.h: New file.
26079
26080         * modules/unistr/u8-stpncpy: New file.
26081         * modules/unistr/u16-stpncpy: New file.
26082         * modules/unistr/u32-stpncpy: New file.
26083         * lib/unistr/u8-stpncpy.c: New file.
26084         * lib/unistr/u16-stpncpy.c: New file.
26085         * lib/unistr/u32-stpncpy.c: New file.
26086         * lib/unistr/u-stpncpy.h: New file.
26087
26088         * modules/unistr/u8-strcat: New file.
26089         * modules/unistr/u16-strcat: New file.
26090         * modules/unistr/u32-strcat: New file.
26091         * lib/unistr/u8-strcat.c: New file.
26092         * lib/unistr/u16-strcat.c: New file.
26093         * lib/unistr/u32-strcat.c: New file.
26094         * lib/unistr/u-strcat.h: New file.
26095
26096         * modules/unistr/u8-strchr: New file.
26097         * modules/unistr/u16-strchr: New file.
26098         * modules/unistr/u32-strchr: New file.
26099         * lib/unistr/u8-strchr.c: New file.
26100         * lib/unistr/u16-strchr.c: New file.
26101         * lib/unistr/u32-strchr.c: New file.
26102
26103         * modules/unistr/u8-strcmp: New file.
26104         * modules/unistr/u16-strcmp: New file.
26105         * modules/unistr/u32-strcmp: New file.
26106         * lib/unistr/u8-strcmp.c: New file.
26107         * lib/unistr/u16-strcmp.c: New file.
26108         * lib/unistr/u32-strcmp.c: New file.
26109
26110         * modules/unistr/u8-strcpy: New file.
26111         * modules/unistr/u16-strcpy: New file.
26112         * modules/unistr/u32-strcpy: New file.
26113         * lib/unistr/u8-strcpy.c: New file.
26114         * lib/unistr/u16-strcpy.c: New file.
26115         * lib/unistr/u32-strcpy.c: New file.
26116         * lib/unistr/u-strcpy.h: New file.
26117
26118         * modules/unistr/u8-strcspn: New file.
26119         * modules/unistr/u16-strcspn: New file.
26120         * modules/unistr/u32-strcspn: New file.
26121         * lib/unistr/u8-strcspn.c: New file.
26122         * lib/unistr/u16-strcspn.c: New file.
26123         * lib/unistr/u32-strcspn.c: New file.
26124         * lib/unistr/u-strcspn.h: New file.
26125
26126         * modules/unistr/u8-strdup: New file.
26127         * modules/unistr/u16-strdup: New file.
26128         * modules/unistr/u32-strdup: New file.
26129         * lib/unistr/u8-strdup.c: New file.
26130         * lib/unistr/u16-strdup.c: New file.
26131         * lib/unistr/u32-strdup.c: New file.
26132         * lib/unistr/u-strdup.h: New file.
26133
26134         * modules/unistr/u8-strlen: New file.
26135         * modules/unistr/u16-strlen: New file.
26136         * modules/unistr/u32-strlen: New file.
26137         * lib/unistr/u8-strlen.c: New file.
26138         * lib/unistr/u16-strlen.c: New file.
26139         * lib/unistr/u32-strlen.c: New file.
26140         * lib/unistr/u-strlen.h: New file.
26141
26142         * modules/unistr/u8-strmblen: New file.
26143         * modules/unistr/u16-strmblen: New file.
26144         * modules/unistr/u32-strmblen: New file.
26145         * lib/unistr/u8-strmblen.c: New file.
26146         * lib/unistr/u16-strmblen.c: New file.
26147         * lib/unistr/u32-strmblen.c: New file.
26148
26149         * modules/unistr/u8-strmbtouc: New file.
26150         * modules/unistr/u16-strmbtouc: New file.
26151         * modules/unistr/u32-strmbtouc: New file.
26152         * lib/unistr/u8-strmbtouc.c: New file.
26153         * lib/unistr/u16-strmbtouc.c: New file.
26154         * lib/unistr/u32-strmbtouc.c: New file.
26155
26156         * modules/unistr/u8-strncat: New file.
26157         * modules/unistr/u16-strncat: New file.
26158         * modules/unistr/u32-strncat: New file.
26159         * lib/unistr/u8-strncat.c: New file.
26160         * lib/unistr/u16-strncat.c: New file.
26161         * lib/unistr/u32-strncat.c: New file.
26162         * lib/unistr/u-strncat.h: New file.
26163
26164         * modules/unistr/u8-strncmp: New file.
26165         * modules/unistr/u16-strncmp: New file.
26166         * modules/unistr/u32-strncmp: New file.
26167         * lib/unistr/u8-strncmp.c: New file.
26168         * lib/unistr/u16-strncmp.c: New file.
26169         * lib/unistr/u32-strncmp.c: New file.
26170
26171         * modules/unistr/u8-strncpy: New file.
26172         * modules/unistr/u16-strncpy: New file.
26173         * modules/unistr/u32-strncpy: New file.
26174         * lib/unistr/u8-strncpy.c: New file.
26175         * lib/unistr/u16-strncpy.c: New file.
26176         * lib/unistr/u32-strncpy.c: New file.
26177         * lib/unistr/u-strncpy.h: New file.
26178
26179         * modules/unistr/u8-strnlen: New file.
26180         * modules/unistr/u16-strnlen: New file.
26181         * modules/unistr/u32-strnlen: New file.
26182         * lib/unistr/u8-strnlen.c: New file.
26183         * lib/unistr/u16-strnlen.c: New file.
26184         * lib/unistr/u32-strnlen.c: New file.
26185         * lib/unistr/u-strnlen.h: New file.
26186
26187         * modules/unistr/u8-strpbrk: New file.
26188         * modules/unistr/u16-strpbrk: New file.
26189         * modules/unistr/u32-strpbrk: New file.
26190         * lib/unistr/u8-strpbrk.c: New file.
26191         * lib/unistr/u16-strpbrk.c: New file.
26192         * lib/unistr/u32-strpbrk.c: New file.
26193         * lib/unistr/u-strpbrk.h: New file.
26194
26195         * modules/unistr/u8-strrchr: New file.
26196         * modules/unistr/u16-strrchr: New file.
26197         * modules/unistr/u32-strrchr: New file.
26198         * lib/unistr/u8-strrchr.c: New file.
26199         * lib/unistr/u16-strrchr.c: New file.
26200         * lib/unistr/u32-strrchr.c: New file.
26201
26202         * modules/unistr/u8-strspn: New file.
26203         * modules/unistr/u16-strspn: New file.
26204         * modules/unistr/u32-strspn: New file.
26205         * lib/unistr/u8-strspn.c: New file.
26206         * lib/unistr/u16-strspn.c: New file.
26207         * lib/unistr/u32-strspn.c: New file.
26208         * lib/unistr/u-strspn.h: New file.
26209
26210         * modules/unistr/u8-strstr: New file.
26211         * modules/unistr/u16-strstr: New file.
26212         * modules/unistr/u32-strstr: New file.
26213         * lib/unistr/u8-strstr.c: New file.
26214         * lib/unistr/u16-strstr.c: New file.
26215         * lib/unistr/u32-strstr.c: New file.
26216         * lib/unistr/u-strstr.h: New file.
26217
26218         * modules/unistr/u8-strtok: New file.
26219         * modules/unistr/u16-strtok: New file.
26220         * modules/unistr/u32-strtok: New file.
26221         * lib/unistr/u8-strtok.c: New file.
26222         * lib/unistr/u16-strtok.c: New file.
26223         * lib/unistr/u32-strtok.c: New file.
26224         * lib/unistr/u-strtok.h: New file.
26225
26226         * modules/unistr/u8-uctomb: New file.
26227         * modules/unistr/u16-uctomb: New file.
26228         * modules/unistr/u32-uctomb: New file.
26229         * lib/unistr/u8-uctomb.c: New file.
26230         * lib/unistr/u16-uctomb.c: New file.
26231         * lib/unistr/u32-uctomb.c: New file.
26232
26233         * MODULES.html.sh (Unicode string functions): Add the new modules.
26234
26235 2007-01-08  Bruno Haible  <bruno@clisp.org>
26236
26237         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
26238         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
26239         subdirectories.
26240
26241 2007-01-08  Karl Berry  <karl@gnu.org>
26242
26243         * doc/error.texi: mention that main() fns must set program_name
26244         when progname is used.
26245
26246 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
26247
26248         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
26249         WCTYPE_H is empty, for the benefit of builds from non-distclean
26250         directories.  Problem reported by Eric Blake in
26251         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
26252
26253 2007-01-08  Bruno Haible  <bruno@clisp.org>
26254
26255         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
26256         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
26257         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
26258         PROVIDE_CANONICALIZE_FILENAME_MODE.
26259         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
26260
26261 2007-01-08  Bruno Haible  <bruno@clisp.org>
26262
26263         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
26264         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
26265         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
26266         * lib/fts.c: Likewise.
26267         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
26268
26269 2006-12-25  Bruno Haible  <bruno@clisp.org>
26270
26271         * modules/utf8-ucs4-safe: New file.
26272         * lib/utf8-ucs4-safe.h: New file.
26273         * lib/unistr/utf8-ucs4-safe.c: New file.
26274
26275         * modules/utf16-ucs4-safe: New file.
26276         * lib/utf16-ucs4-safe.h: New file.
26277         * lib/unistr/utf16-ucs4-safe.c: New file.
26278
26279         * MODULES.html.sh (Unicode string functions): Add the new modules.
26280
26281 2007-01-08  Bruno Haible  <bruno@clisp.org>
26282
26283         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
26284         (Depends-on): Add unitypes.
26285         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
26286         (u8_mbtouc_aux): Move out to separate file.
26287         (u8_mbtouc): Use ucs4_t, uint8_t types.
26288         * lib/unistr/utf8-ucs4.c: New file.
26289
26290         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
26291         (Depends-on): Add unitypes.
26292         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
26293         (u16_mbtouc_aux): Move out to separate file.
26294         (u16_mbtouc): Use ucs4_t, uint16_t types.
26295         * lib/unistr/utf16-ucs4.c: New file.
26296
26297         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
26298         (Depends-on): Add unitypes.
26299         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
26300         (u8_uctomb_aux): Move out to separate file.
26301         (u8_uctomb): Use ucs4_t, uint8_t types.
26302         * lib/unistr/ucs4-utf8.c: New file.
26303
26304         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
26305         (Depends-on): Add unitypes.
26306         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
26307         (u16_uctomb_aux): Move out to separate file.
26308         (u16_uctomb): Use ucs4_t, uint16_t types.
26309         * lib/unistr/ucs4-utf16.c: New file.
26310
26311 2006-12-25  Bruno Haible  <bruno@clisp.org>
26312
26313         * modules/unitypes: New file.
26314         * lib/unitypes.h: New file.
26315         * MODULES.html.sh (func_all_modules): New section "Unicode string
26316         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
26317         this section. Add unitypes.
26318
26319 2007-01-08  Bruno Haible  <bruno@clisp.org>
26320
26321         Avoid variable names that conflict with those from libtool.
26322         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
26323         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
26324         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
26325         library_names_spec to acl_library_names_spec, hardcode_* to
26326         acl_hardcode_*.
26327         Reported by Ralf Wildenhues.
26328
26329 2007-01-08  Bruno Haible  <bruno@clisp.org>
26330
26331         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
26332         definition.
26333         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
26334         definition.
26335         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
26336         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
26337         definition.
26338         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
26339         definition.
26340         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
26341         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
26342         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
26343         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
26344         definition.
26345         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
26346         definition.
26347         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
26348         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
26349         GC_USE_<algorithm>.
26350         * lib/gc-libgcrypt.c: Likewise.
26351         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
26352         * modules/gc-arctwo (configure.ac): Likewise.
26353         * modules/gc-des (configure.ac): Likewise.
26354         * modules/gc-hmac-md5 (configure.ac): Likewise.
26355         * modules/gc-hmac-sha1 (configure.ac): Likewise.
26356         * modules/gc-md2 (configure.ac): Likewise.
26357         * modules/gc-md4 (configure.ac): Likewise.
26358         * modules/gc-md5 (configure.ac): Likewise.
26359         * modules/gc-random (configure.ac): Likewise.
26360         * modules/gc-rijndael (configure.ac): Likewise.
26361         * modules/gc-sha1 (configure.ac): Likewise.
26362
26363 2007-01-08  Bruno Haible  <bruno@clisp.org>
26364
26365         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
26366         macro definition.
26367         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
26368         definition.
26369         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
26370         definition.
26371         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
26372         * modules/fcntl-safer (configure.ac): Likewise.
26373         * modules/fopen-safer (configure.ac): Likewise.
26374         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
26375         GNULIB_FWRITEERROR macro definition.
26376
26377 2007-01-08  Bruno Haible  <bruno@clisp.org>
26378
26379         * m4/gnulib-common.m4: New file.
26380         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
26381         (func_get_filelist): Add m4/gnulib-common.m4.
26382
26383 2007-01-08  Bruno Haible  <bruno@clisp.org>
26384
26385         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
26386         command.
26387
26388 2007-01-08  Jim Meyering  <jim@meyering.net>
26389
26390         Use a more robust test for a "can't happen" condition.
26391         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
26392         narrowed the st_size value.  Presuming the "can't happen" condition
26393         is true, that narrowing could conceivably convert an invalid st_size
26394         value into a valid one.  Instead, use a change based on Matthew
26395         Woehlke's original patch.
26396
26397         Slight readability improvement: use an assert-like macro
26398         in place of literal "abort ()" uses.
26399         * lib/fts.c (fts_assert): Define.
26400         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
26401         Use this macro instead of a bare 'abort'.
26402
26403 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
26404
26405         Don't worry about using IRIX 5.3's wctype.h broken definitions;
26406         simply work around them.
26407         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
26408         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
26409         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
26410         declaring.
26411         Don't bother to define as macros, since the standard doesn't require it.
26412         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
26413         longer worry about IRIX 5.3.
26414         (HAVE_WCTYPE_CTMP_BUG): Remove.
26415
26416 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
26417
26418         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
26419         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
26420         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
26421         Problems reported by Georg Schwarz for IRIX 5.3.
26422
26423         * gnulib-tool (autoconf_minversion): Take the maximum version number
26424         found, not the minimum.  Problem reported by James Youngman.
26425
26426 2007-01-03  Karl Berry  <karl@gnu.org>
26427
26428         * doc/error.texi: new file, explaining interaction with progname.
26429         * doc/gnulib.texi: include it.  Update copyright.
26430
26431 2007-01-03  Simon Josefsson  <simon@josefsson.org>
26432
26433         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
26434         AC_CANONICAL_HOST, to improve autobuild outputs.
26435
26436 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
26437             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
26438
26439         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
26440         sockets, server sockets, and other file descriptors.  Count errors
26441         to compute the return value.  Reorder the code a bit to be easier
26442         to follow.  Don't set event bits that were not requested (except
26443         POLLERR and POLLHUP).
26444
26445 2007-01-01  Bruno Haible  <bruno@clisp.org>
26446
26447         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
26448
26449 2007-01-03  Jim Meyering  <jim@meyering.net>
26450
26451         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
26452
26453 2007-01-02  Bruno Haible  <bruno@clisp.org>
26454
26455         * modules/settime (Include): Require timespec.h.
26456         * modules/nanosleep (Include): Likewise.
26457
26458 2007-01-01  Bruno Haible  <bruno@clisp.org>
26459
26460         * gnulib-tool (func_emit_copyright_notice): Bump year.
26461         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
26462
26463 2007-01-01  Bruno Haible  <bruno@clisp.org>
26464
26465         Improve support for OpenBSD.
26466         * build-aux/config.rpath (libname_spec): Export.
26467         (library_names_spec): New variable. Export.
26468         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
26469         library_names_spec from the config.rpath output. Locate shared library
26470         through the name pattern in library_names_spec.
26471
26472 2007-01-01  Eric Blake  <ebb9@byu.net>
26473
26474         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
26475
26476 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
26477
26478         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
26479         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
26480         assume the C locale, and avoid an "eval" that could cause trouble.
26481         Problem with SORT reported by Bob Proulx.
26482
26483         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
26484         Define.  Trivial patch from Henning Nielsen Lund, originally
26485         sent to bug-grep@gnu.org today.
26486
26487 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
26488
26489         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
26490         struct stat.  Problem reported by Henning Nielsen Lund.
26491         * lib/acl.c: Include acl.h first, to check interface.  Don't
26492         bother to include sys/types.h and sys/stat.h again.
26493
26494 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
26495
26496         Import the following change from libc; problem reported by
26497         Sven Verdoolaege.
26498
26499         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
26500
26501         [BZ #1373]
26502         * lib/argp.h: Remove __NTH for __argp_usage inline function.
26503
26504 2006-12-28  Jim Meyering  <jim@meyering.net>
26505
26506         * build-aux/announce-gen: Do not assume that the package
26507         builds any of tar.gz, tar.bz2, and .xdelta files.
26508         Suggestion from Simon Josefsson.
26509
26510 2006-12-28  Simon Josefsson  <simon@josefsson.org>
26511
26512         * modules/announce-gen: New file.
26513
26514 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
26515
26516         * lib/mbchar.h: Just include <wctype.h>; the wctype module
26517         handles its gotchas now.
26518         * lib/mbswidth.c: Likewise.
26519         * lib/wcwidth.h: Likewise.
26520         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
26521         and iswcntrl; the wctype module does this stuff now.
26522         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
26523         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
26524         * modules/mbchar (Depends-on): Add wctype.
26525         * modules/mbswidth (Depends-on): Likewise.
26526         * modules/wcwidth (Depends-on): Likewise.
26527
26528 2006-12-27  Eric Blake  <ebb9@byu.net>
26529
26530         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
26531         module uses more than what <wctype.h> is required to provide.
26532
26533 2006-12-26  Eric Blake  <ebb9@byu.net>
26534
26535         * gnulib-tool (sed_extract_prog): Avoid space-tab.
26536
26537 2006-12-26  Eric Blake  <ebb9@byu.net>
26538
26539         * modules/absolute-header: New module.
26540         * modules/fcntl (Depends-on): Depend on it.
26541         * modules/inttypes (Depends-on): Likewise.
26542         * modules/stdint (Depends-on): Likewise.
26543         * modules/sys_stat (Depends-on): Likewise.
26544         * modules/wctype (Depends-on): Likewise.
26545         * MODULES.html.sh (Support for building libraries and
26546         executables): Document it.
26547
26548 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
26549
26550         * gnulib-tool (SED): Remove, undoing previous change.
26551         The problem was that it broke coreutils on Solaris, because
26552         "sed --posix" leaked into a makefile.
26553         (sed): New alias, if 'alias' and GNU sed.
26554
26555 2006-12-24  Jim Meyering  <jim@meyering.net>
26556
26557         Work around an fchownat bug in glibc-2.4:
26558         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
26559         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
26560         in spite of the -P option.
26561         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
26562         New macros.
26563         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
26564         * modules/openat (Files): Add lib/fchownat.c.
26565         * lib/openat.c (fchownat): Don't define here.  Move to...
26566         * lib/fchownat.c: ...this new file.
26567
26568 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
26569
26570         Fix bug reported by Bruno Haible in
26571         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
26572         where quotearg.c didn't compile on Mac OS X 10.2 because it
26573         lacks <wchar.h> and wint_t.
26574         * lib/wctype_.h (__wctype_wint_t): New type.
26575         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
26576         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
26577         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
26578         Arg is now of type __wctype_wint_t, not wint_t.
26579         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
26580         substitute HAVE_WINT_T.
26581         * modules/wctype (Files): Add m4/wint_t.m4.
26582         (wctype.h): Substitute HAVE_WINT_T.
26583
26584 2006-12-23  Bruno Haible  <bruno@clisp.org>
26585
26586         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
26587
26588 2006-12-23  Bruno Haible  <bruno@clisp.org>
26589
26590         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
26591         S_ISLNK.
26592         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
26593         mingw.
26594
26595 2006-12-22  Bruno Haible  <bruno@clisp.org>
26596
26597         * lib/copy-file.c: Include acl.h.
26598         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
26599         Close the file descriptors only after being done with copy_acl.
26600         * modules/copy-file (Depends-on): Add acl.
26601
26602 2006-12-22  Bruno Haible  <bruno@clisp.org>
26603
26604         * gnulib-tool (SED): New variable.
26605         Use $SED instead of sed everywhere.
26606
26607 2006-12-22  Bruno Haible  <bruno@clisp.org>
26608
26609         * modules/no-c++: New file.
26610         * m4/no-c++.m4: New file.
26611         * MODULES.html.sh (Support for building libraries and executables):
26612         Add no-c++.
26613
26614 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
26615
26616         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
26617         Include <limits.h>, and use its INT_MAX to rewrite the
26618         j loop so that it does not overflow 'int'.  Problem reported by
26619         Ralf Wildenhues in
26620         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
26621         Play it safe by shifting left by 1 rather than multiplying by 2,
26622         as GCC is less likely to optimize this away when the value
26623         is signed (when it assumes overflow leads to undefined behavior).
26624         Also, don't assume time_t uses two's complement.
26625
26626 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
26627
26628         * MODULES.html.sh: New module wctype.
26629         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
26630         * lib/fnmatch.c: Don't bother to include <wchar.h> before
26631         <wctype.h>, since the new wctype module should fix this.
26632         * lib/quotearg.c: Include <wctype.h> unconditionally, since
26633         the wctype module should arrange for it.
26634         * lib/regex_internal.h: Likewise.
26635         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
26636         since the wctype module should handle this now.
26637         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
26638         * modules/fnmatch (Depends-on): Add wctype.
26639         * modules/quotearg (Depends-on): Likewise.
26640         * modules/regex (Depends-on): Likewise.
26641
26642 2006-12-19  Bruno Haible  <bruno@clisp.org>
26643
26644         * lib/strdup.h [C++]: Wrap definitions in extern "C".
26645         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
26646
26647 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26648
26649         * modules/savewd (Depends-on): Fix dependency on fcntl.
26650
26651 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
26652
26653         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
26654         conforms to C99, rather than relying on the user's environment
26655         setting of STDINT_H.
26656
26657 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
26658         and Eric Blake  <ebb9@byu.net>
26659
26660         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
26661         This is more consistent with the other defines here.
26662         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
26663         Port to z/OS.  Problem reported by Paul Gilmartin.
26664         Change local vars to use gl_ prefix rather than ac_.
26665         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
26666         with other defines.
26667         * modules/double-slash-root: New module.
26668         * modules/dirname (Files): Remove m4/double-slash-root.m4.
26669         (Depends-on): Add double-slash-root.
26670         * MODULES.html.sh (File system functions): Mention new module.
26671
26672 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
26673
26674         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
26675         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
26676         This is for the benefit of gzip, which doesn't do i18n.
26677
26678 2006-12-12  Jim Meyering  <jim@meyering.net>
26679
26680         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
26681         Reported by Andreas Schwab <schwab@suse.de>.
26682
26683 2006-12-12  Bruno Haible  <bruno@clisp.org>
26684
26685         Merge these changes.
26686         2006-09-05  Bruno Haible  <bruno@clisp.org>
26687         * lib/iconvme.c (iconv_string): No need to save and restore errno when
26688         iconv_alloc succeeded.
26689         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
26690         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
26691         test for " && dest " at the end - dest is always != NULL there. Call
26692         iconv with 4xNULL arguments initially, to reset the state. Call iconv
26693         with 2xNULL arguments, also to flush the state storage. Handle the
26694         IRIX iconv behaviour. Realloc the final result, to throw away unused
26695         memory.
26696
26697 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
26698
26699         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
26700         and fchmodat unconditionally, since glibc 2.4 has them.
26701         Problem reported by Arkadiusz Miskiewicz.
26702
26703 2006-12-10  Bruno Haible  <bruno@clisp.org>
26704
26705         * gnulib-tool (func_import): Show the include files only for those
26706         modules that are copied and specified.
26707         Reported by Karl Berry.
26708
26709 2006-12-08  Jim Meyering  <jim@meyering.net>
26710
26711         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
26712         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
26713
26714         * build-aux/announce-gen: Add two new options, both optional:
26715         --bootstrap-tools=TOOL_LIST
26716               a comma-separated list of tools, e.g.,
26717               autoconf,automake,bison,gnulib
26718         --gnulib-snapshot-date=DATE
26719               if gnulib is in the bootstrap tool list,
26720               then report this as the snapshot date.
26721               If not specified, use the current date/time.
26722               If you specify a date here, be sure it's UTC.
26723
26724 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26725
26726         * tests/test-argp-2.sh: Fix test to match actual output.
26727         (func_compare): Fix sed script to be portable.
26728
26729 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
26730
26731         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
26732         workaround for this case.  It is not autoconfigured now; offhand
26733         it's hard to see how to autoconfigure it.
26734
26735 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
26736
26737         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
26738         a directory that is about to be chowned.  Such a directory's
26739         initial file permissions should permit the owner only and this
26740         should not be changed until after the chown, since the group and
26741         other bits would be incorrect if they granted permission before
26742         the chown.
26743
26744         Fix porting problem for iswctype reported by Georg Schwarz in:
26745         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
26746         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
26747         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
26748         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
26749         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
26750
26751 2006-12-03  Jim Meyering  <jim@meyering.net>
26752
26753         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
26754         p->fts_statp may not yet be defined.
26755         (fts_read): Instead, set it in the caller, once p->fts_statp is
26756         sure to be defined, and corresponds to a top-level directory.
26757         This bug made du -x fail.  Here's the coreutils test case:
26758         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
26759         Reported by Mike Frysinger.
26760
26761 2006-12-01  Jim Meyering  <jim@meyering.net>
26762
26763         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
26764         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
26765         Reported by Simon Josefsson.
26766
26767 2006-11-30  Jim Meyering  <jim@meyering.net>
26768
26769         * m4/warning.m4: Use the all-permissive copyright notice
26770         recommended by RMS (rather than LGPL).
26771         * m4/vararrays.m4: Likewise.
26772         * m4/flexmember.m4: Likewise.
26773
26774 2006-11-29  Bruno Haible  <bruno@clisp.org>
26775
26776         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
26777         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
26778         using +=.
26779         Reported by Simon Josefsson <simon@josefsson.org>.
26780
26781 2006-11-28  James Youngman <jay@gnu.org>
26782
26783         * README: Advise users that they might find the bug-gnulib@gnu.org
26784         and autotools-announce@gnu.org mailing lists useful.
26785
26786 2006-11-28  Bruno Haible  <bruno@clisp.org>
26787
26788         * m4/ptrdiff_max.m4: Remove file.
26789
26790 2006-11-21  Bruno Haible  <bruno@clisp.org>
26791
26792         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
26793         _AC_COMPUTE_INT.
26794         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
26795         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
26796         _AC_COMPUTE_INT.
26797         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
26798         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
26799         _AC_COMPUTE_INT.
26800         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
26801
26802 2006-11-28  Jim Meyering  <jim@meyering.net>
26803
26804         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
26805         warning from "gcc -Wshadow" about shadowing the builtin.
26806
26807 2006-11-27  Bruno Haible  <bruno@clisp.org>
26808
26809         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
26810         _AC_COMPUTE_INT.
26811         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
26812
26813 2006-11-27  Bruno Haible  <bruno@clisp.org>
26814             Paul Eggert  <eggert@cs.ucla.edu>
26815
26816         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
26817
26818 2006-11-26  Bruno Haible  <bruno@clisp.org>
26819
26820         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
26821         noinst_LTLIBRARIES.
26822
26823 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
26824             Bruno Haible  <bruno@clisp.org>
26825
26826         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
26827         if compiling with "gcc -ansi".
26828
26829 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
26830
26831         Fix some incompatibilities with gcc -ansi -pedantic.
26832         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
26833         if compiling pedantically with GCC, unless it's C99 or later.
26834         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
26835         it mishandles gcc -ansi -pedantic as well.
26836         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
26837         if gcc -pedantic.
26838         * lib/regexec.c (check_node_accept_bytes): Don't use auto
26839         initializers for struct if -pedantic, unless it's C99 or later.
26840
26841 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
26842
26843         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
26844         Don't close an fd more than once. Identical atimes indicate
26845         success, not failure.
26846
26847 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
26848
26849         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
26850
26851 2006-11-23  Jim Meyering  <jim@meyering.net>
26852
26853         * build-aux/announce-gen: New file.  From coreutils.
26854
26855 2006-11-22  Jim Meyering  <jim@meyering.net>
26856
26857         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
26858         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
26859         (fts_read): Use a temporary to narrow the overused st_size member
26860         before using it in a switch statement.  Reported by Matthew Woehlke.
26861
26862         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
26863         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
26864
26865 2006-11-20  Bruno Haible  <bruno@clisp.org>
26866
26867         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
26868         changequote instead of pairs of brackets.
26869         Reported by Andreas Schwab <schwab@suse.de>.
26870
26871 2006-11-21  Jim Meyering  <jim@meyering.net>
26872
26873         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
26874         so as to remain compatible with older compilers.
26875         Patch from Michael Deutschmann.
26876
26877 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
26878
26879         * MODULES.html.sh (File system functions): Add openat.
26880
26881         * lib/openat.h (rpl_fstatat): New macro, if
26882         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
26883         (fstatat): Define to rpl_fstatat under the same conditions,
26884         unless COMPILING_FSTATAT.
26885         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
26886         seems to have the bug.
26887         * lib/fstatat.c: New file.
26888         * modules/openat (Files): Add it.
26889
26890 2006-11-20  Bruno Haible  <bruno@clisp.org>
26891
26892         * Makefile: New file.
26893
26894 2006-11-20  Jim Meyering  <jim@meyering.net>
26895
26896         The beginnings of syntax-related checks for gnulib.
26897         * lib/Makefile: New file.
26898         * lib/t-idcache: New script.  Ensure that the two halves of
26899         idcache.c stay in sync.
26900
26901         * lib/idcache.c: Adjust comments in user- and group- portions to
26902         be more accurate, and to be consistent with one another.
26903
26904 2006-11-20  Jim Meyering  <jim@meyering.net>
26905
26906         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
26907         continue using the flexible array member (thus, this module performs
26908         half as many malloc calls), with the addition that...
26909         (getgroup, getuser): Consistently record a non-match via an empty
26910         "name" string, and map an empty string match to a NULL return value.
26911         * modules/idcache (Depends-on): Re-add flexmember.
26912
26913         * lib/idcache.c (getuser): Remove all uses of the register keyword.
26914         (getuidbyname, getgroup, getgidbyname): Likewise.
26915
26916         Use cleaner syntax: NULL rather than 0.
26917         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
26918
26919 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
26920
26921         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
26922         It mishandled the case where the group was missing.
26923         Problem reported by Greg Schafer.
26924         * modules/idcache: Likewise.
26925
26926 2006-11-18  Jim Meyering  <jim@meyering.net>
26927
26928         * check-module (%exempt_header): Add exception for some
26929         conditionally-included headers.
26930
26931         * modules/i-ring (Depends-on): Add verify.
26932         (License): Change to LGPL.
26933
26934 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
26935
26936         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
26937         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
26938         and inttostr.h.  Use snprintf rather than uinttostr, so that
26939         LGPLed code doesn't depend on GPLed.
26940
26941 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
26942
26943         * modules/inline (License): Change from GPL to LGPL.
26944
26945 2006-11-17  Jim Meyering  <jim@meyering.net>
26946
26947         * modules/d-type (License): Switch to LGPL.
26948
26949 2006-11-15  Bruno Haible  <bruno@clisp.org>
26950
26951         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
26952
26953 2006-11-15  Eric Blake  <ebb9@byu.net>
26954
26955         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
26956         the module dependency.
26957
26958 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26959             Bruno Haible  <bruno@clisp.org>
26960
26961         * gnulib-tool (func_create_testdir): Add license consistency check.
26962
26963 2006-11-15  Eric Blake  <ebb9@byu.net>
26964
26965         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
26966         random "(cached)" in configure output.
26967
26968 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26969
26970         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
26971         test for conforming inttypes.h is both announced and cached.
26972
26973         * MODULES.html.sh (seen_modules, seen_files): New variables.
26974         (func_module): Rewrite to use a few less gnulib-tool and sed
26975         invocations.  Avoid a couple of quadratic algorithms for ...
26976         (missed_modules, missed_files): ... these, with ...
26977         (func_append, func_tmpdir): ... these new functions, from
26978         gnulib-tool.  Analogously, install traps for cleanup.
26979
26980         * tests/test-gc.c (main): Remove unused variables.
26981         * tests/test-read-file.c: Include stdlib.h, for 'free'.
26982
26983 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
26984
26985         * modules/inttostr (License): Change to LGPL.
26986
26987 2006-11-14  Eric Blake  <ebb9@byu.net>
26988
26989         * modules/tempname (License): Change to LGPL.
26990
26991 2006-11-14  Eric Blake  <ebb9@byu.net>
26992
26993         * doc/functions.texi (Function Portability): *printf functions on
26994         Cygwin now understand all POSIX size specifiers.
26995
26996 2006-11-14  Bruno Haible  <bruno@clisp.org>
26997
26998         * modules/c-ctype (License): Change to LGPL.
26999
27000 2006-11-12  Bruno Haible  <bruno@clisp.org>
27001
27002         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
27003         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
27004         for GNOME libraries, for which the include files are installed in
27005         subdirectories of $prefix/include.
27006
27007 2006-11-12  Bruno Haible  <bruno@clisp.org>
27008
27009         * m4/lib-link.m4: Require at least autoconf-2.54.
27010         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
27011         name to underscores for the --with option.
27012
27013 2006-11-13  Bruno Haible  <bruno@clisp.org>
27014
27015         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
27016         the tests directory.
27017         Reported by Ralf Wildenhues.
27018
27019 2006-11-13  Bruno Haible  <bruno@clisp.org>
27020
27021         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
27022         (func_emit_initmacro_end): Undo the override here.
27023         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
27024         Works around the famous automake error in coreutils.
27025
27026 2006-11-13  Eric Blake  <ebb9@byu.net>
27027
27028         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
27029         element, not its node.
27030
27031 2006-11-12  Bruno Haible  <bruno@clisp.org>
27032
27033         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
27034         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
27035
27036 2006-11-12  Bruno Haible  <bruno@clisp.org>
27037
27038         * gnulib-tool: New option --local-symlink.
27039         (func_usage): Document it.
27040         (lsymbolic): New variable.
27041         (func_import, func_create_testdir): If --symlink was not specified,
27042         test whether --local-symlink was specified and the file comes from
27043         the local_gnulib_dir.
27044
27045 2006-11-12  Bruno Haible  <bruno@clisp.org>
27046
27047         * gnulib-tool (func_ln): New function.
27048         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
27049
27050 2006-11-12  Bruno Haible  <bruno@clisp.org>
27051
27052         Finish support for source files in subdirectories.
27053         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
27054         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
27055         AUTOMAKE_OPTIONS.
27056         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
27057
27058 2006-11-12  Bruno Haible  <bruno@clisp.org>
27059
27060         * gnulib-tool (func_get_automake_snippet): Synthesize also an
27061         EXTRA_lib_SOURCES augmentation.
27062         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
27063
27064 2006-11-12  Jim Meyering  <jim@meyering.net>
27065
27066         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
27067         file descriptors.  This also averts a failure on systems with
27068         native openat support when a traversed directory lacks "x" access.
27069         * lib/fts_.h: Include "i-ring.h"
27070         (struct FTS) [fts_fd_ring]: New member.
27071         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
27072         (FCHDIR): Add parentheses.
27073         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
27074         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
27075         When descending, rather than simply closing the previous
27076         fts_cwd_fd value, push that file descriptor onto the ring.
27077         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
27078         (fts_open): Initialize the new fd_ring member.
27079         (fts_close): Clear the ring.
27080         (fts_safe_changedir): When possible, use our new fd_ring to skip
27081         the diropen and fstat and dev/ino comparison that would normally
27082         accompany a virtual `chdir ("..")'.
27083
27084         * modules/fts (Depends-on): Add i-ring.
27085         * modules/i-ring: New module.
27086         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
27087         * m4/i-ring.m4: New file.
27088
27089 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27090
27091         * gnulib-tool (func_create_testdir): Fix replacement of
27092         `build-aux' in configure.ac.  Run autotools in gltests
27093         subdirectory.
27094         (func_create_testdir, func_create_megatestdir, test): There is
27095         no need for '--force' in most autotool invocations in a new
27096         tree.  Actually fail the whole test if any of the tools, or the
27097         configure or make stages fail.
27098
27099         Sync from Automake.
27100         * build-aux/gnupload: Revert last change.  Add pointer to upload
27101         instructions of the GNU Maintenance Instructions.
27102         Suggestion by Karl Berry.
27103
27104 2006-11-10  Jim Meyering  <jim@meyering.net>
27105
27106         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
27107
27108 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
27109
27110         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
27111         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
27112         (bind_textdomain_codeset) [! ENABLE_NLS]:
27113         Evaluate all the arguments.  That way, callers get compatible behavior
27114         if the arguments have side effects.  Also, it avoids some GCC
27115         diagnostics in some cases; Joel E. Denny reported problems when Bison
27116         was configured with --enable-gcc-warnigs.
27117
27118 2006-11-10  Jim Meyering  <jim@meyering.net>
27119
27120         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
27121         relevant options in CFLAGS (like -O, -fno-inline) are taken into
27122         account.
27123
27124 2006-11-10  Jim Meyering  <jim@meyering.net>
27125
27126         * modules/inline: New file/module.
27127         * modules/xalloc (Files): Remove m4/inline.m4.
27128         (Depends-on): Add inline, instead.
27129         * modules/oset: Likewise.
27130         * modules/list: Likewise.
27131
27132 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
27133
27134         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
27135         Problem reported by Matthew Woehlke.
27136
27137 2006-11-09  Bruno Haible  <bruno@clisp.org>
27138
27139         * lib/tempname.c (gen_tempname): Remove variant that invokes
27140         __gen_tempname.
27141         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
27142         __gen_tempname.
27143
27144 2006-11-08  Bruno Haible  <bruno@clisp.org>
27145
27146         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
27147         to 'yes' instead of 'cross-compiling'.
27148
27149 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
27150
27151         * lib/quotearg.h (quotearg_free): New decl.
27152         * lib/quotearg.c (quotearg_free): New function.
27153         (slot0, nslots, slotvec0, slotvec):
27154         Now file-scope so that quotearg_free can get at them.
27155
27156 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27157
27158         Sync from Automake.
27159         * build-aux/gnupload: Add missing 'gnu' to example URL.
27160         Report by Karl Berry.
27161
27162 2006-11-08  Bruno Haible  <bruno@clisp.org>
27163
27164         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
27165         Suggested by Paul Eggert.
27166
27167 2006-11-08  Jim Meyering  <jim@meyering.net>
27168
27169         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
27170         It's already included if !_LIBC.
27171         (fts_safe_changedir): Add a comment.
27172
27173 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
27174
27175         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
27176         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
27177         Matthew Woehlke.
27178
27179         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
27180         definitions up, to avoid colliding with change below.
27181         (static_inline) [HAVE_INLINE]: New macro.
27182         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
27183         Provide extern decls when !HAVE_INLINE.  Do not define unless
27184         static_inline is defined, either by us or by xmalloc.c.  Use
27185         static_inline rather than static inline.
27186         (XCALLOC): Optimize sizeof(T) = 1 case.
27187         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
27188
27189 2006-11-07  Bruno Haible  <bruno@clisp.org>
27190
27191         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
27192         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
27193         AC_C_INLINE.
27194         * modules/xalloc (Files): Add m4/inline.m4.
27195
27196 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27197
27198         * README: Fix typo.
27199         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
27200         (Miscellanous Notes): ...from this.
27201
27202 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
27203
27204         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
27205         Mention that offsetof should be used instead of sizeof.
27206         From Bruno Haible.
27207
27208 2006-11-07  Bruno Haible  <bruno@clisp.org>
27209
27210         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
27211
27212 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
27213
27214         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
27215         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
27216         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
27217         (gl_tree_add_before, gl_tree_add_after):
27218         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
27219         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
27220         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
27221         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
27222         (gl_linked_add_after, gl_linked_add_at): Likewise.
27223         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
27224         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
27225         (gl_tree_add_before, gl_tree_add_after): Likewise.
27226         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
27227         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
27228         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
27229
27230 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27231
27232         * lib/gl_oset.h: Use C comment style, not C++ comment style.
27233
27234 2006-11-06  Bruno Haible  <bruno@clisp.org>
27235
27236         * m4/inline.m4: New file.
27237         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
27238         * modules/list (Files): Add m4/inline.m4.
27239         * modules/oset (Files): Likewise.
27240
27241 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
27242
27243         * lib/idcache.c: Include <stddef.h>, for offsetof.
27244         (struct userid.name): Change from char * to a flexible array member.
27245         All uses changed.
27246         * modules/idcache (Depends-on): Add flexmember.
27247
27248         * MODULES.html.sh (Core language properties): New module flexmember.
27249         * modules/flexmember, m4/flexmember.m4: New files.
27250
27251         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
27252         inline functions that are identical with the old xnmalloc_inline,
27253         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
27254         that we can avoid some unnecessary integer multiplications and
27255         divisions in the common case where the element size is known at
27256         compile time.
27257         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
27258         needed.
27259         (xnboundedmalloc): Remove.
27260         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
27261         arguments, for consistency with rest of this header.
27262         (xcharalloc): Rewrite using XNMALLOC.
27263         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
27264         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
27265         versions have been moved to lib/xalloc.h and renamed to be the
27266         non-*_inline versions.
27267         (xmalloc, xrealloc): Implement without reference to the xnmalloc
27268         and xnrealloc functions, since those functions are now inline and
27269         now call us.
27270         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
27271         renaming described above.
27272         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
27273         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
27274         captures the dependency in AC_C_INLINE.
27275
27276         New module canonicalize-lgpl, proposed by Charles Wilson in
27277         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
27278         with a few small changes afterwards.
27279         * MODULES.html.sh (File system functions): New module
27280         canonicalize-lgpl.
27281         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
27282         and canonicalize_file_name.
27283         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
27284         * modules/canonicalize-lgpl: New files.
27285
27286 2006-11-05  Bruno Haible  <bruno@clisp.org>
27287
27288         * gnulib-tool (func_import, func_create_testdir): Create directories
27289         also for files in subdirectories of lib/.
27290
27291 2006-11-05  Bruno Haible  <bruno@clisp.org>
27292
27293         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
27294         ANSI C compliant.
27295
27296 2006-11-03  Bruno Haible  <bruno@clisp.org>
27297
27298         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
27299         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
27300         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
27301         (xnboundedmalloc): New inline function.
27302         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
27303         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
27304         xmalloc.
27305         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
27306         xmalloc.
27307         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
27308         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
27309         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
27310         xmalloc.
27311         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
27312         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
27313         xmalloc.
27314         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
27315         gl_tree_add_after): Use XMALLOC instead of xmalloc.
27316         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
27317         xmalloc.
27318         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
27319         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
27320         gl_tree_add_after): Use XMALLOC instead of xmalloc.
27321         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
27322         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
27323         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
27324         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
27325
27326 2006-11-03  Bruno Haible  <bruno@clisp.org>
27327
27328         * lib/c-ctype.h [C++]: Define functions without name mangling.
27329         * lib/fwriteerror.h [C++]: Likewise.
27330         * lib/gcd.h [C++]: Likewise.
27331         * lib/linebreak.h [C++]: Likewise.
27332
27333 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
27334
27335         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
27336         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
27337         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
27338         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
27339         Check for functions and headers just once.
27340         Check for declaration of canonicalize_file_name.
27341         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
27342
27343 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
27344
27345         * gnulib-tool (func_import): Fix typo in actioncmd.
27346
27347 2006-11-02  Bruno Haible  <bruno@clisp.org>
27348
27349         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
27350         newline sequence in the Makefile.am snippet as a space, like "make"
27351         does.
27352         Reported by Roger Persson <perrog@gmail.com>.
27353
27354 2006-11-01  Bruno Haible  <bruno@clisp.org>
27355
27356         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
27357         already declared in <string.h>.
27358         * lib/strcase.h (strncasecmp): Don't declare it if yes.
27359
27360 2006-11-01  Bruno Haible  <bruno@clisp.org>
27361
27362         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
27363         * lib/strcase.h: Include <string.h>.
27364         (strcasecmp): Define to rpl_strcasecmp here.
27365
27366 2006-11-01  Bruno Haible  <bruno@clisp.org>
27367
27368         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
27369
27370 2006-11-01  Eric Blake  <ebb9@byu.net>
27371
27372         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
27373
27374         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
27375
27376 2006-10-29  Bruno Haible  <bruno@clisp.org>
27377
27378         Make it compile in C++ mode.
27379         * lib/full-write.c (full_rw): Add a cast.
27380
27381 2006-11-01  Bruno Haible  <bruno@clisp.org>
27382
27383         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
27384         be POSIX compliant.
27385         Reported by Roger Persson <perrog@gmail.com>.
27386
27387 2006-11-01  Eric Blake  <ebb9@byu.net>
27388
27389         * lib/getopt_.h: Fix comments.
27390
27391 2006-10-31  Eric Blake  <ebb9@byu.net>
27392
27393         * modules/tmpdir (Depends-on): Add sys_stat.
27394         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
27395         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
27396         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
27397         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
27398         tempname.
27399
27400 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
27401
27402         Avoid some C++ diagnostics reported by Bruno Haible.
27403         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
27404         xmalloc.
27405         (quotearg_alloc): Use xcharalloc rather than xmalloc.
27406         (struct slotvec): Move to top level.
27407         (quotearg_n_options): Rewrite to avoid xmalloc.
27408         * lib/xalloc.h (xcharalloc): New function.
27409         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
27410         [defined __cplusplus]: Add function template that provides result
27411         type propagation.  This part of the change is from Bruno Haible.
27412
27413 2006-10-29  Bruno Haible  <bruno@clisp.org>
27414
27415         Make it compile in C++ mode.
27416         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
27417         * lib/strnlen1.c (strnlen1): Cast memchr result.
27418         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
27419         * lib/clean-temp.c (string_equals, string_hash): Add casts.
27420         (create_temp_dir): Rename local variable 'template'.
27421         (compile_csharp_using_sscli): Add cast.
27422         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
27423         * lib/findprog.c (find_in_path): Likewise.
27424         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
27425         * lib/wait-process.c (register_slave_subprocess): Likewise.
27426
27427 2006-10-22  Bruno Haible  <bruno@clisp.org>
27428
27429         * modules/tsearch: New file.
27430         * lib/tsearch.h: New file.
27431         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
27432         * m4/tsearch.m4: New file.
27433         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
27434
27435 2006-10-29  Eric Blake  <ebb9@byu.net>
27436
27437         * lib/arcfour.c: Assume config.h.
27438         * lib/arctwo.c: Likewise.
27439         * lib/base64.c: Likewise.
27440         * lib/check-version.c: Likewise.
27441         * lib/crc.c: Likewise.
27442         * lib/des.c: Likewise.
27443         * lib/gc-gnulib.c: Likewise.
27444         * lib/gc-libgcrypt.c: Likewise.
27445         * lib/gc-pbkdf2-sha1.c: Likewise.
27446         * lib/getaddrinfo.c: Likewise.
27447         * lib/getdelim.c: Likewise.
27448         * lib/getline.c: Likewise.
27449         * lib/hmac-md5.c: Likewise.
27450         * lib/hmac-sha1.c: Likewise.
27451         * lib/iconvme.c: Likewise.
27452         * lib/md2.c: Likewise.
27453         * lib/md4.c: Likewise.
27454         * lib/memxor.c: Likewise.
27455         * lib/read-file.c: Likewise.
27456         * lib/readline.c: Likewise.
27457         * lib/rijndael-alg-fst.c: Likewise.
27458         * lib/rijndael-api-fst.c: Likewise.
27459         * lib/xgetdomainname.c: Likewise.
27460
27461 2006-10-28  Eric Blake  <ebb9@byu.net>
27462
27463         * lib/xstrndup.c: Assume config.h.
27464
27465 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
27466
27467         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
27468         stat-macros.h is now for our own macros, whereas stat_h is for
27469         macros in the <sys/stat.h> name space.
27470         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
27471         (STAT_MACROS_H): Remove.
27472         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
27473         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
27474         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
27475         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
27476         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
27477         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
27478         Move these macros to ...
27479         * lib/stat_.h: here.  Don't include stat-macros.h.
27480         * lib/canonicalize.c: Don't include stat-macros.h.
27481         * lib/chown.c: Likewise.
27482         * lib/euidaccess.c: Likewise.
27483         * lib/file-type.c: Likewise.
27484         * lib/filemode.c: Likewise.
27485         * lib/glob.c: Likewise.
27486         * lib/isapipe.c: Likewise.
27487         * lib/lchown.c: Likewise.
27488         * lib/lstat.c: Likewise.
27489         * lib/mkdir-p.c: Likewise.
27490         * lib/rmdir.c: Likewise.
27491         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
27492         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
27493         unless mkdir isn't declared, to speed up 'configure'.
27494         Always create sys/stat.h, since it's unlikely any real sys/stat.h
27495         would define all the S_* symbols.
27496         * modules/canonicalize (Depends-on):
27497         Depend on sys_stat, not stat-macros.
27498         * modules/chown: Likewise.
27499         * modules/euidaccess: Likewise.
27500         * modules/filemode: Likewise.
27501         * modules/file-type: Likewise.
27502         * modules/glob: Likewise.
27503         * modules/isapipe: Likewise.
27504         * modules/lchown: Likewise.
27505         * modules/lstat: Likewise.
27506         * modules/mkancesdirs: Likewise.
27507         * modules/rmdir: Likewise.
27508         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
27509         * modules/modechange: Likewise.
27510         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
27511         (configure.ac): Remove gl_STAT_MACROS.
27512         * modules/sys_stat (Depends-on): Remove stat-macros.
27513
27514 2006-10-27  Bruno Haible  <bruno@clisp.org>
27515
27516         * m4/signed.m4: Remove file.
27517         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
27518         invocation.
27519         * modules/vasnprintf (Files): Remove m4/signed.m4.
27520
27521 2006-10-27  Bruno Haible  <bruno@clisp.org>
27522
27523         Update to GNU gettext 0.16.
27524         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
27525         m4/inttypes-h.m4, m4/signed.m4.
27526         * m4/gettext.m4: Update to GNU gettext 0.16.
27527         * m4/intl.m4: New file, from GNU gettext.
27528         * m4/intldir.m4: New file, from GNU gettext.
27529         * config/srclist.txt: Update
27530
27531 2006-10-27  Eric Blake  <ebb9@byu.net>
27532
27533         * MODULES.html.sh: Document tempname.
27534         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
27535         dependencies.
27536         (Files): Move lib/tempname.c...
27537         * modules/tempname: ...to this new module.
27538         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
27539         (gl_PREREQ_TEMPNAME): Move...
27540         * m4/tempname.m4: ...to this new file.
27541         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
27542         * modules/sys_stat (Depends-on): Add stat-macros.
27543         * lib/stat_.h (includes): Pick up stat macros.
27544         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
27545         if stat macros are broken.
27546         * lib/tempname.c (includes): No need to include "stat-macros.h".
27547         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
27548         (direxists, __path_search) [!_LIBC]: Don't compile these in
27549         gnulib; the tmpdir module covers that.
27550         * lib/tempname.h: New file.
27551
27552 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
27553
27554         * COPYING: Explain how gnulib-tool converts licence headers.
27555         Almost all wording by Eric Blake.
27556
27557 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
27558
27559         * lib/mbchar.h (is_basic_table): Make read-only.
27560         * lib/mbchar.c (is_basic_table): Likewise.
27561         Reported by John Darrington.
27562
27563 2006-10-25  Bruno Haible  <bruno@clisp.org>
27564
27565         * lib/progname.h (set_program_name): Undefine before defining.
27566
27567 2006-10-25  Bruno Haible  <bruno@clisp.org>
27568
27569         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
27570         false for non-gcc C++ compilers.
27571         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
27572
27573 2006-10-24  Bruno Haible  <bruno@clisp.org>
27574
27575         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
27576         iconv implementations like Irix iconv.
27577
27578 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
27579
27580         * modules/vararrays: New file.
27581         * m4/vararrays.m4: New file, taken from diffutils.
27582         * MODULES.html.sh: New module vararrays.
27583
27584 2006-10-24  Karl Berry  <karl@gnu.org>
27585
27586         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
27587         Don't call GNU Unix.
27588
27589 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27590
27591         * users.txt: Add Libtool.
27592
27593         Sync from Libtool:
27594
27595         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
27596
27597         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
27598         to gnulib's policy of including config.h unconditionally.
27599
27600 2006-10-24  Bruno Haible  <bruno@clisp.org>
27601
27602         * modules/wcwidth (Files): Add m4/wint_t.m4.
27603         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
27604         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
27605
27606 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
27607
27608         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
27609         to pacify GCC with some -W flags enabled.  Problem reported by
27610         Bruno Haible.
27611
27612 2006-10-24  Jim Meyering  <jim@meyering.net>
27613
27614         * MODULES.html.sh: Remove uinttostr.  It's not a module.
27615         Reported by Karl Berry.
27616
27617 2006-10-23  Bruno Haible  <bruno@clisp.org>
27618
27619         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
27620
27621 2006-10-24  Bruno Haible  <bruno@clisp.org>
27622
27623         * lib/gl_list.h: Use C comment style, not C++ comment style.
27624
27625 2006-10-23  Eric Blake  <ebb9@byu.net>
27626
27627         * lib/getaddrinfo.c (includes): Add missing include.
27628
27629 2006-10-23  Bruno Haible  <bruno@clisp.org>
27630             Paul Eggert  <eggert@cs.ucla.edu>
27631
27632         Ability to rename obstack_free.
27633         * lib/obstack.h (__obstack_free): New macro. Declare instead of
27634         obstack_free.
27635         (obstack_free): Invoke the __obstack_free macro.
27636         * lib/obstack.c (obstack_free): Use __obstack_free macro.
27637
27638 2006-10-23  Bruno Haible  <bruno@clisp.org>
27639             Paul Eggert  <eggert@cs.ucla.edu>
27640
27641         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
27642         __argc, __argv from the declaration. (They are defined as macros on
27643         mingw.)
27644
27645 2006-10-22  Bruno Haible  <bruno@clisp.org>
27646
27647         * doc/gnulib-intro.texi: New file.
27648         * doc/gnulib.texi: Include it.
27649
27650 2006-10-21  Bruno Haible  <bruno@clisp.org>
27651
27652         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
27653         "Introduction", "Miscellanous Notes", "Particular Modules".
27654
27655 2006-10-21  Bruno Haible  <bruno@clisp.org>
27656
27657         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
27658         Change mostlyclean-local rule to avoid sh syntax error from bash
27659         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
27660
27661 2006-10-23  Jim Meyering  <jim@meyering.net>
27662
27663         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
27664         in place of snprintf.
27665
27666         * modules/inttostr (Files): Add lib/uinttostr.c.
27667         * lib/uinttostr.c (inttostr): New file/function.
27668         * lib/inttostr.h (uinttostr): Declare.
27669         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
27670         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
27671         Add uinttostr.
27672         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
27673
27674 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
27675
27676         * lib/canonicalize.c (ELOOP): Define if not already defined.
27677         Problem reported by Bruno Haible in
27678         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
27679
27680 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
27681
27682         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
27683         Problem reported by Perry Smith and Ville Laurikari.
27684
27685         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
27686         uses.
27687
27688 2006-10-19  Bruno Haible  <bruno@clisp.org>
27689
27690         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
27691         for mingw.
27692
27693 2006-10-19  Bruno Haible  <bruno@clisp.org>
27694
27695         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
27696         Needed for mingw.
27697
27698 2006-10-19  Bruno Haible  <bruno@clisp.org>
27699
27700         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
27701
27702 2006-10-19  Bruno Haible  <bruno@clisp.org>
27703
27704         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
27705         it.
27706
27707 2006-10-19  Bruno Haible  <bruno@clisp.org>
27708
27709         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
27710         invocation.
27711
27712 2006-10-19  Bruno Haible  <bruno@clisp.org>
27713
27714         * gnulib-tool (func_create_testdir): Don't include ftruncate and
27715         mountlist by default.
27716
27717 2006-10-16  Bruno Haible  <bruno@clisp.org>
27718
27719         * lib/c-strstr.c: Include c-strstr.h.
27720
27721 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
27722
27723         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
27724         in a slash.
27725
27726 2006-10-18  Bruno Haible  <bruno@clisp.org>
27727
27728         * lib/lock.h [C++]: Wrap definitions in extern "C".
27729
27730 2006-10-18  Bruno Haible  <bruno@clisp.org>
27731
27732         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
27733         gl_LIBOBJS list.
27734
27735 2006-10-18  Bruno Haible  <bruno@clisp.org>
27736
27737         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
27738
27739 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
27740
27741         * lib/xstrtol.h: Include gettext.h.
27742         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
27743         Problem reported by Eric Blake.
27744         * modules/xstrtol (Depends-on): Add gettext-h.
27745
27746 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
27747
27748         * lib/strftime.c (advance): New macro.
27749         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
27750         incomplete type, so you can't add 0 to it.  Problem and patch
27751         reported by Eelco Dolstra for dietlibc.
27752
27753 2006-10-18  Jim Meyering  <jim@meyering.net>
27754
27755         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
27756         type for a local, and rename it: s/up/user_proc/.
27757
27758 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
27759
27760         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
27761         READ_UTMP_USER_PROCESS.
27762         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
27763
27764 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
27765
27766         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
27767         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
27768
27769 2006-10-17  Eric Blake  <ebb9@byu.net>
27770
27771         * lib/sigprocmask.c (sigprocmask): Fix typo.
27772
27773         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
27774
27775         * modules/clean-temp (Makefile.am): Don't add to make output...
27776         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
27777         config.h.
27778
27779 2006-10-17  Bruno Haible  <bruno@clisp.org>
27780
27781         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
27782         differently if DEFAULT_TEXT_DOMAIN is set.
27783
27784 2006-10-16  Bruno Haible  <bruno@clisp.org>
27785
27786         * lib/clean-temp.c: Include fwriteerror.h.
27787
27788 2006-10-16  Bruno Haible  <bruno@clisp.org>
27789
27790         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
27791
27792 2006-10-16  Bruno Haible  <bruno@clisp.org>
27793
27794         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
27795         * lib/sigprocmask.h: Include <sys/types.h>.
27796         (sigset_t): Use the system's definition if present.
27797
27798 2006-10-17  Eric Blake  <ebb9@byu.net>
27799
27800         * lib/xvasprintf.c (includes): Assume config.h.
27801         * lib/xasprintf.c (includes): Likewise.
27802
27803 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
27804
27805         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
27806         at least as wide as intmax_t.
27807
27808 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
27809
27810         (Imported from Automake.)
27811         * build-aux/gnupload: Update to version 1.1 of directive file.
27812
27813 2006-10-16  Eric Blake  <ebb9@byu.net>
27814
27815         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
27816         match Automake 1.10a.
27817
27818 2006-10-14  Bruno Haible  <bruno@clisp.org>
27819
27820         * modules/sigprocmask: New file.
27821         * lib/sigprocmask.h: New file.
27822         * lib/sigprocmask.c: New file.
27823         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
27824         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
27825         request sigprocmask.o.
27826         (gl_PREREQ_SIGPROCMASK): New macro.
27827         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
27828         (Depends-on): Add sigprocmask.
27829         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
27830         gt_SIGNALBLOCKING. Test for 'raise' only once.
27831         * lib/fatal-signal.c: Include sigprocmask.h.
27832         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
27833         unblock_fatal_signals): Define always.
27834         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27835         sigprocmask.
27836
27837 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
27838
27839         Sync from Automake.
27840         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
27841         which incorrectly sets the mode of an existing destination
27842         directory.  In some cases the unpatched install-sh could do the
27843         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
27844         system.  We hope this is rare in practice, but it's clearly worth
27845         fixing.  Problem reported by Alex Unleashed in
27846         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
27847         Also, don't bother to check for -m bugs unless we're using -m;
27848         suggested by Stepan Kasal.
27849
27850 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27851
27852         Sync from Automake.
27853         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
27854         `-c' flag, so they appear at the same position as in %FASTDEP%
27855         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
27856         which ignores unknown options only after the first non-option.
27857         Bug report against M4 by Nelson H. F. Beebe.
27858
27859 2006-10-13  Jim Meyering  <jim@meyering.net>
27860
27861         Fix a bug in yesterday's change.
27862         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
27863         p->fts_statp->st_dev would be used uninitialized.
27864         Ensures that we always call fts_stat on the very first entry.
27865         Miklos Szeredi reported that find -xdev stopped working.
27866
27867 2006-10-12  Bruno Haible  <bruno@clisp.org>
27868
27869         * gnulib-tool (func_get_automake_snippet): Append an automatically
27870         computed EXTRA_DIST augmentation.
27871         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
27872         * modules/alloca-opt (Makefile.am): Likewise.
27873         * modules/allocsa (Makefile.am): Likewise.
27874         * modules/arcfour (Makefile.am): Likewise.
27875         * modules/arctwo (Makefile.am): Likewise.
27876         * modules/argmatch (Makefile.am): Likewise.
27877         * modules/argz (Makefile.am): Likewise.
27878         * modules/atexit (Makefile.am): Likewise.
27879         * modules/backupfile (Makefile.am): Likewise.
27880         * modules/byteswap (Makefile.am): Likewise.
27881         * modules/c-strtod (Makefile.am): Likewise.
27882         * modules/c-strtold (Makefile.am): Likewise.
27883         * modules/calloc (Makefile.am): Likewise.
27884         * modules/canon-host (Makefile.am): Likewise.
27885         * modules/canonicalize (Makefile.am): Likewise.
27886         * modules/chdir-long (Makefile.am): Likewise.
27887         * modules/chdir-safer (Makefile.am): Likewise.
27888         * modules/check-version (Makefile.am): Likewise.
27889         * modules/chown (Makefile.am): Likewise.
27890         * modules/cloexec (Makefile.am): Likewise.
27891         * modules/close-stream (Makefile.am): Likewise.
27892         * modules/closeout (Makefile.am): Likewise.
27893         * modules/crc (Makefile.am): Likewise.
27894         * modules/csharpexec (Makefile.am): Likewise.
27895         * modules/cycle-check (Makefile.am): Likewise.
27896         * modules/des (Makefile.am): Likewise.
27897         * modules/dev-ino (Makefile.am): Likewise.
27898         * modules/dirfd (Makefile.am): Likewise.
27899         * modules/dirname (Makefile.am): Likewise.
27900         * modules/dup2 (Makefile.am): Likewise.
27901         * modules/eealloc (Makefile.am): Likewise.
27902         * modules/error (Makefile.am): Likewise.
27903         * modules/euidaccess (Makefile.am): Likewise.
27904         * modules/exclude (Makefile.am): Likewise.
27905         * modules/exitfail (Makefile.am): Likewise.
27906         * modules/fcntl-safer (Makefile.am): Likewise.
27907         * modules/fcntl (Makefile.am): Likewise.
27908         * modules/file-type (Makefile.am): Likewise.
27909         * modules/fileblocks (Makefile.am): Likewise.
27910         * modules/filemode (Makefile.am): Likewise.
27911         * modules/filenamecat (Makefile.am): Likewise.
27912         * modules/fnmatch (Makefile.am): Likewise.
27913         * modules/fopen-safer (Makefile.am): Likewise.
27914         * modules/fpending (Makefile.am): Likewise.
27915         * modules/fprintftime (Makefile.am): Likewise.
27916         * modules/free (Makefile.am): Likewise.
27917         * modules/fsusage (Makefile.am): Likewise.
27918         * modules/ftruncate (Makefile.am): Likewise.
27919         * modules/fts (Makefile.am): Likewise.
27920         * modules/gc-arcfour (Makefile.am): Likewise.
27921         * modules/gc-des (Makefile.am): Likewise.
27922         * modules/gc-hmac-md5 (Makefile.am): Likewise.
27923         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
27924         * modules/gc-md4 (Makefile.am): Likewise.
27925         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
27926         * modules/gc-sha1 (Makefile.am): Likewise.
27927         * modules/gc (Makefile.am): Likewise.
27928         * modules/getaddrinfo (Makefile.am): Likewise.
27929         * modules/getcwd (Makefile.am): Likewise.
27930         * modules/getdelim (Makefile.am): Likewise.
27931         * modules/getdomainname (Makefile.am): Likewise.
27932         * modules/getgroups (Makefile.am): Likewise.
27933         * modules/gethostname (Makefile.am): Likewise.
27934         * modules/gethrxtime (Makefile.am): Likewise.
27935         * modules/getline (Makefile.am): Likewise.
27936         * modules/getloadavg (Makefile.am): Likewise.
27937         * modules/getlogin_r (Makefile.am): Likewise.
27938         * modules/getndelim2 (Makefile.am): Likewise.
27939         * modules/getopt (Makefile.am): Likewise.
27940         * modules/getpagesize (Makefile.am): Likewise.
27941         * modules/getpass-gnu (Makefile.am): Likewise.
27942         * modules/getpass (Makefile.am): Likewise.
27943         * modules/getsubopt (Makefile.am): Likewise.
27944         * modules/gettime (Makefile.am): Likewise.
27945         * modules/gettimeofday (Makefile.am): Likewise.
27946         * modules/getugroups (Makefile.am): Likewise.
27947         * modules/getusershell (Makefile.am): Likewise.
27948         * modules/glob (Makefile.am): Likewise.
27949         * modules/group-member (Makefile.am): Likewise.
27950         * modules/hard-locale (Makefile.am): Likewise.
27951         * modules/hash (Makefile.am): Likewise.
27952         * modules/hmac-md5 (Makefile.am): Likewise.
27953         * modules/hmac-sha1 (Makefile.am): Likewise.
27954         * modules/human (Makefile.am): Likewise.
27955         * modules/idcache (Makefile.am): Likewise.
27956         * modules/imaxabs (Makefile.am): Likewise.
27957         * modules/imaxdiv (Makefile.am): Likewise.
27958         * modules/inet_ntop (Makefile.am): Likewise.
27959         * modules/inet_pton (Makefile.am): Likewise.
27960         * modules/intprops (Makefile.am): Likewise.
27961         * modules/inttostr (Makefile.am): Likewise.
27962         * modules/inttypes (Makefile.am): Likewise.
27963         * modules/isapipe (Makefile.am): Likewise.
27964         * modules/javaversion (Makefile.am): Likewise.
27965         * modules/lchmod (Makefile.am): Likewise.
27966         * modules/lchown (Makefile.am): Likewise.
27967         * modules/localcharset (Makefile.am): Likewise.
27968         * modules/long-options (Makefile.am): Likewise.
27969         * modules/lstat (Makefile.am): Likewise.
27970         * modules/malloc (Makefile.am): Likewise.
27971         * modules/mathl (Makefile.am): Likewise.
27972         * modules/mbchar (Makefile.am): Likewise.
27973         * modules/md2 (Makefile.am): Likewise.
27974         * modules/md4 (Makefile.am): Likewise.
27975         * modules/md5 (Makefile.am): Likewise.
27976         * modules/memcasecmp (Makefile.am): Likewise.
27977         * modules/memchr (Makefile.am): Likewise.
27978         * modules/memcmp (Makefile.am): Likewise.
27979         * modules/memcoll (Makefile.am): Likewise.
27980         * modules/memcpy (Makefile.am): Likewise.
27981         * modules/memmem (Makefile.am): Likewise.
27982         * modules/memmove (Makefile.am): Likewise.
27983         * modules/mempcpy (Makefile.am): Likewise.
27984         * modules/memrchr (Makefile.am): Likewise.
27985         * modules/memset (Makefile.am): Likewise.
27986         * modules/memxor (Makefile.am): Likewise.
27987         * modules/mkancesdirs (Makefile.am): Likewise.
27988         * modules/mkdir-p (Makefile.am): Likewise.
27989         * modules/mkdir (Makefile.am): Likewise.
27990         * modules/mkdtemp (Makefile.am): Likewise.
27991         * modules/mkstemp (Makefile.am): Likewise.
27992         * modules/mktime (Makefile.am): Likewise.
27993         * modules/modechange (Makefile.am): Likewise.
27994         * modules/mountlist (Makefile.am): Likewise.
27995         * modules/nanosleep (Makefile.am): Likewise.
27996         * modules/obstack (Makefile.am): Likewise.
27997         * modules/openat (Makefile.am): Likewise.
27998         * modules/pagealign_alloc (Makefile.am): Likewise.
27999         * modules/pathmax (Makefile.am): Likewise.
28000         * modules/physmem (Makefile.am): Likewise.
28001         * modules/poll (Makefile.am): Likewise.
28002         * modules/posixtm (Makefile.am): Likewise.
28003         * modules/posixver (Makefile.am): Likewise.
28004         * modules/putenv (Makefile.am): Likewise.
28005         * modules/quote (Makefile.am): Likewise.
28006         * modules/quotearg (Makefile.am): Likewise.
28007         * modules/raise (Makefile.am): Likewise.
28008         * modules/read-file (Makefile.am): Likewise.
28009         * modules/readline (Makefile.am): Likewise.
28010         * modules/readlink (Makefile.am): Likewise.
28011         * modules/readtokens (Makefile.am): Likewise.
28012         * modules/readutmp (Makefile.am): Likewise.
28013         * modules/realloc (Makefile.am): Likewise.
28014         * modules/regex (Makefile.am): Likewise.
28015         * modules/rename-dest-slash (Makefile.am): Likewise.
28016         * modules/rename (Makefile.am): Likewise.
28017         * modules/rijndael (Makefile.am): Likewise.
28018         * modules/rmdir (Makefile.am): Likewise.
28019         * modules/rpmatch (Makefile.am): Likewise.
28020         * modules/safe-read (Makefile.am): Likewise.
28021         * modules/safe-write (Makefile.am): Likewise.
28022         * modules/same-inode (Makefile.am): Likewise.
28023         * modules/same (Makefile.am): Likewise.
28024         * modules/save-cwd (Makefile.am): Likewise.
28025         * modules/savedir (Makefile.am): Likewise.
28026         * modules/setenv (Makefile.am): Likewise.
28027         * modules/settime (Makefile.am): Likewise.
28028         * modules/sha1 (Makefile.am): Likewise.
28029         * modules/sig2str (Makefile.am): Likewise.
28030         * modules/snprintf (Makefile.am): Likewise.
28031         * modules/stat-macros (Makefile.am): Likewise.
28032         * modules/stat-time (Makefile.am): Likewise.
28033         * modules/stdbool (Makefile.am): Likewise.
28034         * modules/stdint (Makefile.am): Likewise.
28035         * modules/stdlib-safer (Makefile.am): Likewise.
28036         * modules/stpcpy (Makefile.am): Likewise.
28037         * modules/stpncpy (Makefile.am): Likewise.
28038         * modules/strcase (Makefile.am): Likewise.
28039         * modules/strcasestr (Makefile.am): Likewise.
28040         * modules/strchrnul (Makefile.am): Likewise.
28041         * modules/strcspn (Makefile.am): Likewise.
28042         * modules/strdup (Makefile.am): Likewise.
28043         * modules/strerror (Makefile.am): Likewise.
28044         * modules/strftime (Makefile.am): Likewise.
28045         * modules/strndup (Makefile.am): Likewise.
28046         * modules/strnlen (Makefile.am): Likewise.
28047         * modules/strpbrk (Makefile.am): Likewise.
28048         * modules/strsep (Makefile.am): Likewise.
28049         * modules/strstr (Makefile.am): Likewise.
28050         * modules/strtod (Makefile.am): Likewise.
28051         * modules/strtoimax (Makefile.am): Likewise.
28052         * modules/strtok_r (Makefile.am): Likewise.
28053         * modules/strtol (Makefile.am): Likewise.
28054         * modules/strtoll (Makefile.am): Likewise.
28055         * modules/strtoul (Makefile.am): Likewise.
28056         * modules/strtoull (Makefile.am): Likewise.
28057         * modules/strtoumax (Makefile.am): Likewise.
28058         * modules/strverscmp (Makefile.am): Likewise.
28059         * modules/sys_socket (Makefile.am): Likewise.
28060         * modules/sys_stat (Makefile.am): Likewise.
28061         * modules/sysexits (Makefile.am): Likewise.
28062         * modules/time_r (Makefile.am): Likewise.
28063         * modules/timegm (Makefile.am): Likewise.
28064         * modules/timespec (Makefile.am): Likewise.
28065         * modules/tmpfile-safer (Makefile.am): Likewise.
28066         * modules/trim (Makefile.am): Likewise.
28067         * modules/unistd-safer (Makefile.am): Likewise.
28068         * modules/unlinkdir (Makefile.am): Likewise.
28069         * modules/unlocked-io (Makefile.am): Likewise.
28070         * modules/userspec (Makefile.am): Likewise.
28071         * modules/utime (Makefile.am): Likewise.
28072         * modules/utimecmp (Makefile.am): Likewise.
28073         * modules/utimens (Makefile.am): Likewise.
28074         * modules/vasnprintf (Makefile.am): Likewise.
28075         * modules/vasprintf (Makefile.am): Likewise.
28076         * modules/vsnprintf (Makefile.am): Likewise.
28077         * modules/xalloc (Makefile.am): Likewise.
28078         * modules/xgetcwd (Makefile.am): Likewise.
28079         * modules/xnanosleep (Makefile.am): Likewise.
28080         * modules/xreadlink (Makefile.am): Likewise.
28081         * modules/xstrtod (Makefile.am): Likewise.
28082         * modules/xstrtol (Makefile.am): Likewise.
28083         * modules/xstrtold (Makefile.am): Likewise.
28084         * modules/yesno (Makefile.am): Likewise.
28085         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
28086
28087 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
28088
28089         * modules/error (Makefile.am): Distribute files through
28090         EXTRA_DIST, not lib_SOURCES.
28091
28092 2006-10-12  Eric Blake  <ebb9@byu.net>
28093
28094         * modules/error (Makefile.am): Distribute files in /lib.
28095         * modules/obstack (Makefile.am): Likewise.
28096
28097 2006-10-12  Bruno Haible  <bruno@clisp.org>
28098
28099         * modules/acl (Makefile.am): Distribute all files in lib/ through
28100         EXTRA_DIST.
28101         * modules/arcfour (Makefile.am): Likewise.
28102         * modules/arctwo (Makefile.am): Likewise.
28103         * modules/argmatch (Makefile.am): Likewise.
28104         * modules/argz (Makefile.am): Likewise.
28105         * modules/atexit (Makefile.am): Likewise.
28106         * modules/backupfile (Makefile.am): Likewise.
28107         * modules/c-strtod (Makefile.am): Likewise.
28108         * modules/c-strtold (Makefile.am): Likewise.
28109         * modules/calloc (Makefile.am): Likewise.
28110         * modules/canon-host (Makefile.am): Likewise.
28111         * modules/canonicalize (Makefile.am): Likewise.
28112         * modules/chdir-long (Makefile.am): Likewise.
28113         * modules/chdir-safer (Makefile.am): Likewise.
28114         * modules/check-version (Makefile.am): Likewise.
28115         * modules/chown (Makefile.am): Likewise.
28116         * modules/cloexec (Makefile.am): Likewise.
28117         * modules/close-stream (Makefile.am): Likewise.
28118         * modules/closeout (Makefile.am): Likewise.
28119         * modules/crc (Makefile.am): Likewise.
28120         * modules/cycle-check (Makefile.am): Likewise.
28121         * modules/des (Makefile.am): Likewise.
28122         * modules/dirfd (Makefile.am): Likewise.
28123         * modules/dirname (Makefile.am): Likewise.
28124         * modules/dup2 (Makefile.am): Likewise.
28125         * modules/euidaccess (Makefile.am): Likewise.
28126         * modules/exclude (Makefile.am): Likewise.
28127         * modules/exitfail (Makefile.am): Likewise.
28128         * modules/fcntl-safer (Makefile.am): Likewise.
28129         * modules/file-type (Makefile.am): Likewise.
28130         * modules/fileblocks (Makefile.am): Likewise.
28131         * modules/filemode (Makefile.am): Likewise.
28132         * modules/filenamecat (Makefile.am): Likewise.
28133         * modules/fnmatch (Makefile.am): Likewise.
28134         * modules/fopen-safer (Makefile.am): Likewise.
28135         * modules/fpending (Makefile.am): Likewise.
28136         * modules/fprintftime (Makefile.am): Likewise.
28137         * modules/free (Makefile.am): Likewise.
28138         * modules/fsusage (Makefile.am): Likewise.
28139         * modules/ftruncate (Makefile.am): Likewise.
28140         * modules/fts (Makefile.am): Likewise.
28141         * modules/gc (Makefile.am): Likewise.
28142         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
28143         * modules/getaddrinfo (Makefile.am): Likewise.
28144         * modules/getcwd (Makefile.am): Likewise.
28145         * modules/getdelim (Makefile.am): Likewise.
28146         * modules/getdomainname (Makefile.am): Likewise.
28147         * modules/getgroups (Makefile.am): Likewise.
28148         * modules/gethostname (Makefile.am): Likewise.
28149         * modules/gethrxtime (Makefile.am): Likewise.
28150         * modules/getline (Makefile.am): Likewise.
28151         * modules/getloadavg (Makefile.am): Likewise.
28152         * modules/getlogin_r (Makefile.am): Likewise.
28153         * modules/getopt (Makefile.am): Likewise.
28154         * modules/getpass (Makefile.am): Likewise.
28155         * modules/getpass-gnu (Makefile.am): Likewise.
28156         * modules/getsubopt (Makefile.am): Likewise.
28157         * modules/gettime (Makefile.am): Likewise.
28158         * modules/gettimeofday (Makefile.am): Likewise.
28159         * modules/getugroups (Makefile.am): Likewise.
28160         * modules/getusershell (Makefile.am): Likewise.
28161         * modules/glob (Makefile.am): Likewise.
28162         * modules/group-member (Makefile.am): Likewise.
28163         * modules/hard-locale (Makefile.am): Likewise.
28164         * modules/hash (Makefile.am): Likewise.
28165         * modules/hmac-md5 (Makefile.am): Likewise.
28166         * modules/hmac-sha1 (Makefile.am): Likewise.
28167         * modules/human (Makefile.am): Likewise.
28168         * modules/idcache (Makefile.am): Likewise.
28169         * modules/imaxabs (Makefile.am): Likewise.
28170         * modules/imaxdiv (Makefile.am): Likewise.
28171         * modules/inet_ntop (Makefile.am): Likewise.
28172         * modules/inet_pton (Makefile.am): Likewise.
28173         * modules/inttostr (Makefile.am): Likewise.
28174         * modules/isapipe (Makefile.am): Likewise.
28175         * modules/lchown (Makefile.am): Likewise.
28176         * modules/long-options (Makefile.am): Likewise.
28177         * modules/lstat (Makefile.am): Likewise.
28178         * modules/malloc (Makefile.am): Likewise.
28179         * modules/mathl (Makefile.am): Likewise.
28180         * modules/mbchar (Makefile.am): Likewise.
28181         * modules/md2 (Makefile.am): Likewise.
28182         * modules/md4 (Makefile.am): Likewise.
28183         * modules/md5 (Makefile.am): Likewise.
28184         * modules/memcasecmp (Makefile.am): Likewise.
28185         * modules/memchr (Makefile.am): Likewise.
28186         * modules/memcmp (Makefile.am): Likewise.
28187         * modules/memcoll (Makefile.am): Likewise.
28188         * modules/memcpy (Makefile.am): Likewise.
28189         * modules/memmem (Makefile.am): Likewise.
28190         * modules/memmove (Makefile.am): Likewise.
28191         * modules/mempcpy (Makefile.am): Likewise.
28192         * modules/memrchr (Makefile.am): Likewise.
28193         * modules/memset (Makefile.am): Likewise.
28194         * modules/memxor (Makefile.am): Likewise.
28195         * modules/mkancesdirs (Makefile.am): Likewise.
28196         * modules/mkdir (Makefile.am): Likewise.
28197         * modules/mkdir-p (Makefile.am): Likewise.
28198         * modules/mkdtemp (Makefile.am): Likewise.
28199         * modules/mkstemp (Makefile.am): Likewise.
28200         * modules/mktime (Makefile.am): Likewise.
28201         * modules/modechange (Makefile.am): Likewise.
28202         * modules/mountlist (Makefile.am): Likewise.
28203         * modules/nanosleep (Makefile.am): Likewise.
28204         * modules/openat (Makefile.am): Likewise.
28205         * modules/pagealign_alloc (Makefile.am): Likewise.
28206         * modules/physmem (Makefile.am): Likewise.
28207         * modules/poll (Makefile.am): Likewise.
28208         * modules/posixtm (Makefile.am): Likewise.
28209         * modules/posixver (Makefile.am): Likewise.
28210         * modules/putenv (Makefile.am): Likewise.
28211         * modules/quote (Makefile.am): Likewise.
28212         * modules/quotearg (Makefile.am): Likewise.
28213         * modules/raise (Makefile.am): Likewise.
28214         * modules/read-file (Makefile.am): Likewise.
28215         * modules/readline (Makefile.am): Likewise.
28216         * modules/readlink (Makefile.am): Likewise.
28217         * modules/readtokens (Makefile.am): Likewise.
28218         * modules/readutmp (Makefile.am): Likewise.
28219         * modules/realloc (Makefile.am): Likewise.
28220         * modules/regex (Makefile.am): Likewise.
28221         * modules/rename (Makefile.am): Likewise.
28222         * modules/rename-dest-slash (Makefile.am): Likewise.
28223         * modules/rijndael (Makefile.am): Likewise.
28224         * modules/rmdir (Makefile.am): Likewise.
28225         * modules/rpmatch (Makefile.am): Likewise.
28226         * modules/safe-read (Makefile.am): Likewise.
28227         * modules/safe-write (Makefile.am): Likewise.
28228         * modules/same (Makefile.am): Likewise.
28229         * modules/save-cwd (Makefile.am): Likewise.
28230         * modules/savedir (Makefile.am): Likewise.
28231         * modules/setenv (Makefile.am): Likewise.
28232         * modules/settime (Makefile.am): Likewise.
28233         * modules/sha1 (Makefile.am): Likewise.
28234         * modules/sig2str (Makefile.am): Likewise.
28235         * modules/snprintf (Makefile.am): Likewise.
28236         * modules/stdlib-safer (Makefile.am): Likewise.
28237         * modules/stpcpy (Makefile.am): Likewise.
28238         * modules/stpncpy (Makefile.am): Likewise.
28239         * modules/strcase (Makefile.am): Likewise.
28240         * modules/strcasestr (Makefile.am): Likewise.
28241         * modules/strchrnul (Makefile.am): Likewise.
28242         * modules/strcspn (Makefile.am): Likewise.
28243         * modules/strdup (Makefile.am): Likewise.
28244         * modules/strerror (Makefile.am): Likewise.
28245         * modules/strftime (Makefile.am): Likewise.
28246         * modules/strndup (Makefile.am): Likewise.
28247         * modules/strnlen (Makefile.am): Likewise.
28248         * modules/strpbrk (Makefile.am): Likewise.
28249         * modules/strsep (Makefile.am): Likewise.
28250         * modules/strstr (Makefile.am): Likewise.
28251         * modules/strtod (Makefile.am): Likewise.
28252         * modules/strtoimax (Makefile.am): Likewise.
28253         * modules/strtok_r (Makefile.am): Likewise.
28254         * modules/strtol (Makefile.am): Likewise.
28255         * modules/strtoll (Makefile.am): Likewise.
28256         * modules/strtoul (Makefile.am): Likewise.
28257         * modules/strtoull (Makefile.am): Likewise.
28258         * modules/strtoumax (Makefile.am): Likewise.
28259         * modules/strverscmp (Makefile.am): Likewise.
28260         * modules/time_r (Makefile.am): Likewise.
28261         * modules/timegm (Makefile.am): Likewise.
28262         * modules/tmpfile-safer (Makefile.am): Likewise.
28263         * modules/unistd-safer (Makefile.am): Likewise.
28264         * modules/unlinkdir (Makefile.am): Likewise.
28265         * modules/userspec (Makefile.am): Likewise.
28266         * modules/utime (Makefile.am): Likewise.
28267         * modules/utimecmp (Makefile.am): Likewise.
28268         * modules/utimens (Makefile.am): Likewise.
28269         * modules/vasnprintf (Makefile.am): Likewise.
28270         * modules/vasprintf (Makefile.am): Likewise.
28271         * modules/vsnprintf (Makefile.am): Likewise.
28272         * modules/xalloc (Makefile.am): Likewise.
28273         * modules/xgetcwd (Makefile.am): Likewise.
28274         * modules/xnanosleep (Makefile.am): Likewise.
28275         * modules/xreadlink (Makefile.am): Likewise.
28276         * modules/xstrtod (Makefile.am): Likewise.
28277         * modules/xstrtol (Makefile.am): Likewise.
28278         * modules/xstrtold (Makefile.am): Likewise.
28279         * modules/yesno (Makefile.am): Likewise.
28280
28281 2006-10-12  Jim Meyering  <jim@meyering.net>
28282
28283         * m4/getloadavg.m4: Revert the change below.
28284
28285         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
28286         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
28287         fail with a symlink, which is what coreutils' ./bootstrap now
28288         creates by default.
28289
28290 2006-10-12  Bruno Haible  <bruno@clisp.org>
28291
28292         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
28293         mingw.
28294         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
28295         MSVC and mingw explicitly.
28296
28297 2006-10-11  Simon Josefsson  <jas@extundo.com>
28298             Bruno Haible  <bruno@clisp.org>
28299
28300         Add support for multiple gnulib-tool invocations in the scope of a
28301         single configure.ac file.
28302         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
28303         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
28304         with the same contents as the _LIBADD variable.
28305         (func_emit_initmacro_start, func_emit_initmacro_end,
28306         func_emit_initmacro_done): New functions.
28307         (func_import, func_create_testdir): Invoke them. Allow the identifiers
28308         gl_LIBOBJS and gl_LTLIBOBJS.
28309
28310 2006-10-11  Bruno Haible  <bruno@clisp.org>
28311
28312         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
28313         (func_create_testdir): Don't create po/Makefile.am, don't invoke
28314         autoreconf. Instead, invoke autopoint explicitly but move back the
28315         *.m4 files from gnulib.
28316
28317 2006-10-11  Bruno Haible  <bruno@clisp.org>
28318
28319         * gnulib-tool (func_usage): Make module names after --create-testdir
28320         optional.
28321         (func_create_testdir): If no module was specified, use nearly all
28322         modules.
28323
28324 2006-10-12  Jim Meyering  <jim@meyering.net>
28325
28326         Big performance improvement for fts-based tools that use FTS_NOSTAT.
28327         Avoid spurious inode-mismatch problems on non-POSIX file systems.
28328         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
28329         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
28330         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
28331         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
28332         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
28333         (fts_set_stat_required): New function.
28334         (fts_open): Defer the calls to fts_stat, if possible or requested.
28335         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
28336         into fts_stat itself.
28337         (fts_read): Perform any required (deferred) fts_stat call.
28338         (fts_build): Likewise, for the directory we're about to open and read.
28339         In the readdir loop, carefully decide whether each entry will require
28340         an eventual call to fts_stat, using dirent.d_type info if available.
28341         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
28342         a command line argument into this function.  Update all callers.
28343         Map a return value of FTS_DOT to FTS_D for a command line argument.
28344         * modules/fts (Depends-on): Add d-type.  Alphabetize.
28345         Thanks to Miklos Szeredi for his tenacity and for the initial
28346         bug report about "find" failing on a FUSE-based file system.
28347
28348         * lib/fts.c (fts_open): Use consistent indentation.
28349
28350 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
28351
28352         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
28353         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
28354         reported by Jim Meyering.  All uses of cache variables renamed
28355         to match Autoconf's.
28356         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
28357         the other one.
28358
28359         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
28360         Fix misspelling in diagnostic.
28361
28362 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
28363
28364         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
28365         defined.  Problem reported by Matthew Woehlke.
28366
28367         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
28368         Add support for Tandem NonStop R series.
28369         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
28370         Use new macro.
28371
28372         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
28373         (has_trailing_slash): Omit size arg; all callers changed.
28374         Omit 'inline', since it doesn't help performance and we'd
28375         need to configure it.
28376         Don't count //, ///, etc. as having a trailing slash.
28377         As a side effect, this removes a C99ism reported by Matthew Woehlke.
28378         (rpl_rename_dest_slash): On failure, use rename's errno rather
28379         than (in some cases) an incorrect or junk errno.
28380         Simplify code by removing need to compute length; this does
28381         cause it to make two passes instead of one over the file name,
28382         but it's worth it.
28383
28384         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
28385         change, since Autoconf's version may no longer be appropriate now
28386         that we are using CVS Autoconf's version.  Add support for Tandem.
28387
28388 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
28389             Bruno Haible  <bruno@clisp.org>
28390
28391         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
28392         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
28393         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
28394         gl_AC_TYPE_LONG_LONG.
28395
28396         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
28397         instead of HAVE_LONG_LONG.
28398         * lib/printf-args.c (printf_fetchargs): Likewise.
28399         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
28400         * lib/vasnprintf.c (VASNPRINTF): Likewise.
28401         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
28402         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
28403         gl_AC_TYPE_LONG_LONG.
28404
28405 2006-10-11  Bruno Haible  <bruno@clisp.org>
28406
28407         * m4/longlong.m4: Add comments.
28408         * m4/ulonglong.m4: Likewise.
28409
28410 2006-10-10  Bruno Haible  <bruno@clisp.org>
28411
28412         Make it possible to #define stpcpy, strdup to aliases.
28413         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
28414         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
28415
28416 2006-10-10  Bruno Haible  <bruno@clisp.org>
28417
28418         Make it possible to #define gcd to an alias.
28419         * lib/gcd.c: Include config.h.
28420
28421 2006-10-10  Bruno Haible  <bruno@clisp.org>
28422
28423         Make it possible to #define c_isascii to an alias.
28424         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
28425         defined. Undefine the macros before defining them, to avoid gcc
28426         warnings.
28427         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
28428         define NO_C_CTYPE_MACROS early.
28429
28430 2006-10-10  Bruno Haible  <bruno@clisp.org>
28431
28432         Make it possible to #define set_program_name to an alias.
28433         * lib/progname.c: Don't undefine set_program_name; instead, undefine
28434         ENABLE_RELOCATABLE early.
28435
28436 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
28437
28438         Port to Tandem NSK OSS, which has 64-bit signed int but at most
28439         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
28440         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
28441         More generally, don't assume that 64-bit signed int is available
28442         if unsigned int is, and vice versa.
28443         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
28444         unsigned symbols, not on their signed counterparts.
28445         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
28446         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
28447         (UINT64_C, UINTMAX_C):
28448         Likewise.
28449         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
28450         unsigned counterparts.
28451         (Have_long_long, Unsigned): New macros.
28452         (Int): Renamed from INT.
28453         (strtoimax): Use the new macros.
28454         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
28455         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
28456         * modules/inttypes (inttypes.h): Substitute
28457         HAVE_UNSIGNED_LONG_LONG_INT.
28458         * modules/stdint (stdint.h): Likewise.
28459         (Files): Add m4/ulonglong.m4.
28460
28461 2006-10-10  Bruno Haible  <bruno@clisp.org>
28462
28463         Fix a gcc -Wshadow warning.
28464         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
28465         to 'bucket'.
28466         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
28467         gl_linked_indexof_from_to): Likewise.
28468         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
28469         Likewise.
28470         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
28471         Likewise.
28472         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
28473         Reported by Eric Blake.
28474
28475 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
28476
28477         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
28478         for NetBSD.  Problem reported by Bruno Haible.
28479
28480 2006-10-09  Jim Meyering  <jim@meyering.net>
28481
28482         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
28483         Patch from Bruno Haible.
28484
28485 2006-10-09  Jim Meyering  <jim@meyering.net>
28486
28487         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
28488         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
28489         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
28490
28491 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
28492
28493         Don't include <config.h> twice; this doesn't work in some cases,
28494         e.g., when config.h has "#define intmax_t long long int" and
28495         we include <config.h>, <inttypes.h>, <config.h> in that order.
28496         Problem reported by Matthew Woehlke in:
28497         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
28498         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
28499         * lib/fts-cycle.c: Don't include config.h.
28500         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
28501         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
28502         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
28503         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
28504         inttypes.h.
28505         * lib/xstrtoumax.c: Likewise.
28506         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
28507         __strtol and the like, so that this module is more like its siblings.
28508         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
28509         Remove; no longer needed now that we assume gnulib inttypes.h.
28510
28511 2006-10-08  Bruno Haible  <bruno@clisp.org>
28512
28513         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
28514         option.
28515
28516 2006-10-07  Jim Meyering  <jim@meyering.net>
28517
28518         * modules/inttypes (inttypes.h): Revert what seems to have been
28519         an inadvertent part of today's change: use "|", not "/" in the
28520         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
28521
28522 2006-10-07  Bruno Haible  <bruno@clisp.org>
28523
28524         * modules/sublist: New file.
28525
28526 2006-10-07  Bruno Haible  <bruno@clisp.org>
28527
28528         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
28529         * modules/argz (argz.h): Likewise.
28530         * modules/arpa_inet (arpa/inet.h): Likewise.
28531         * modules/byteswap (byteswap.h): Likewise.
28532         * modules/configmake (configmake.h): Likewise.
28533         * modules/fcntl (fcntl.h): Likewise.
28534         * modules/fnmatch (fnmatch.h): Likewise.
28535         * modules/getopt (getopt.h): Likewise.
28536         * modules/glob (glob.h): Likewise.
28537         * modules/inttypes (inttypes.h): Likewise.
28538         * modules/netinet_in (netinet/in.h): Likewise.
28539         * modules/poll (poll.h): Likewise.
28540         * modules/stdbool (stdbool.h): Likewise.
28541         * modules/stdint (stdint.h): Likewise.
28542         * modules/sys_select (sys/select.h): Likewise.
28543         * modules/sys_socket (sys/socket.h): Likewise.
28544         * modules/sys_stat (sys/stat.h): Likewise.
28545         * modules/sysexits (sysexits.h): Likewise.
28546         * modules/unistd (unistd.h): Likewise.
28547         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
28548         Add a "DO NOT EDIT" comment to the generated file.
28549         (func_import): Likewise for gnulib-comp.m4.
28550
28551 2006-10-07  Bruno Haible  <bruno@clisp.org>
28552
28553         * lib/gl_sublist.h: New file.
28554         * lib/gl_sublist.c: New file.
28555
28556 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
28557
28558         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
28559         name (relative to the original working directory) and the file
28560         name component (relative to the temporary working directory).  All
28561         callers changed.
28562         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
28563         * lib/mkdir-p.c (make_dir_parents): Likewise.
28564         * lib/mkdir-p.h (make_dir_parents): Likewise.
28565
28566 2006-10-06  Eric Blake  <ebb9@byu.net>
28567
28568         Define several macros for use by the clean-temp module.
28569         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
28570         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
28571         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
28572
28573         * lib/clean-temp.h (close_stream_temp): New declaration.
28574         * lib/clean-temp.c (includes): Pull in headers according to what
28575         other modules are in use.
28576         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
28577
28578 2006-10-06  Bruno Haible  <bruno@clisp.org>
28579
28580         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
28581         instead of fopen, fwriteerror.
28582
28583 2006-10-06  Bruno Haible  <bruno@clisp.org>
28584
28585         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
28586         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
28587         int.
28588         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
28589         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
28590         Return an error indicator.
28591         Suggested by Eric Blake.
28592
28593 2006-10-06  Bruno Haible  <bruno@clisp.org>
28594
28595         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
28596         Reported by Eric Blake.
28597
28598 2006-10-06  Bruno Haible  <bruno@clisp.org>
28599
28600         * modules/closeout (Description): Mention stderr too.
28601
28602 2006-10-06  Bruno Haible  <bruno@clisp.org>
28603         and Paul Eggert  <eggert@cs.ucla.edu>
28604
28605         * lib/closeout.c (close_stdout): Also close stderr.
28606         * lib/closeout.h: Update comment.
28607
28608 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
28609
28610         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
28611         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
28612         * lib/dirchownmod.c: Include lchown.h.
28613         * lib/lchown.c: Don't include files that lchown.h now includes.
28614         Don't declare chown, since lchown.h now does that.
28615         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
28616         (lchown): Define to rpl_chown if lchown is declared but
28617         does not exist.  Declare using a prototype if lchown is not
28618         declared.  Add a copyright notice.
28619         * lib/mkstemp.h: Include <unistd.h>.
28620         * lib/openat.c: Include lchown.h.
28621
28622         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
28623         we now test for that separately.
28624         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
28625         rather than O_NOFOLLOW, when testing whether it's possible to
28626         avoid a race condition reliably.
28627         * lib/savewd.c (savewd_chdir): Likewise.
28628
28629         Remove macros that are no longer needed now that stdint.h is
28630         reliable.
28631         * lib/fsusage.c (UINTMAX_MAX): Remove.
28632         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
28633         * lib/utimecmp.c (SIZE_MAX): Remove.
28634
28635         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
28636
28637         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
28638         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
28639         O_NOATIME works.
28640
28641 2006-10-05  Bruno Haible  <bruno@clisp.org>
28642
28643         * lib/gl_list.h (gl_sortedlist_search_from_to,
28644         gl_sortedlist_indexof_from_to): New declarations.
28645         (gl_list_implementation): New fields sortedlist_search_from_to,
28646         sortedlist_indexof_from_to.
28647         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
28648         inline functions.
28649         * lib/gl_list.c (gl_sortedlist_search_from_to,
28650         gl_sortedlist_indexof_from_to): New functions.
28651         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
28652         function.
28653         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
28654         (gl_array_sortedlist_search_from_to): New function.
28655         (gl_array_list_implementation): Update.
28656         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
28657         function.
28658         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
28659         (gl_carray_sortedlist_search_from_to): New function.
28660         (gl_carray_list_implementation): Update.
28661         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
28662         gl_linked_sortedlist_indexof_from_to): New functions.
28663         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
28664         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
28665         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
28666         gl_tree_sortedlist_indexof_from_to): New functions.
28667         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
28668         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
28669         Update.
28670         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
28671         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
28672         Update.
28673
28674 2006-10-05  Bruno Haible  <bruno@clisp.org>
28675
28676         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
28677         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
28678         (struct gl_list_implementation): Add fields search_from_to,
28679         indexof_from_to. Remove fields search, indexof.
28680         (gl_list_search): Use the search_from_to method.
28681         (gl_list_search_from, gl_list_search_from_to): New functions.
28682         (gl_list_indexof): Use the indexof_from_to method.
28683         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
28684         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
28685         (gl_list_search_from, gl_list_search_from_to): New functions.
28686         (gl_list_indexof): Use the indexof_from_to method.
28687         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
28688         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
28689         gl_array_indexof. Add start_index, end_index arguments.
28690         (gl_array_search_from_to): Renamed from gl_array_search. Add
28691         start_index, end_index arguments.
28692         (gl_array_remove, gl_array_list_implementation): Update.
28693         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
28694         gl_carray_indexof. Add start_index, end_index arguments.
28695         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
28696         start_index, end_index arguments.
28697         (gl_carray_remove, gl_carray_list_implementation): Update.
28698         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
28699         gl_linked_search. Add start_index, end_index arguments.
28700         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
28701         start_index, end_index arguments.
28702         (gl_linked_remove): Update.
28703         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
28704         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
28705         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
28706         field to 'size_t'.
28707         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
28708         gl_tree_search. Add start_index, end_index arguments.
28709         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
28710         start_index, end_index arguments.
28711         (gl_tree_remove): Update.
28712         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
28713         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
28714         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
28715         function.
28716         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
28717         gl_tree_search. Add start_index, end_index arguments.
28718         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
28719         start_index, end_index arguments.
28720         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
28721         Update.
28722         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
28723
28724 2006-10-05  Bruno Haible  <bruno@clisp.org>
28725
28726         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
28727
28728         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
28729         fwriteerror_temp): New declarations.
28730         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
28731         (descriptors): New variable.
28732         (cleanup): First, close the descriptors.
28733         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
28734         fclose_temp, fwriteerror_temp): New functions.
28735
28736 2006-10-04  Jim Meyering  <jim@meyering.net>
28737
28738         * lib/fts.c (fts_open): Tiny comment change.
28739
28740 2006-10-04  Bruno Haible  <bruno@clisp.org>
28741
28742         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
28743         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
28744         gl_LOCK_BODY.
28745         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
28746         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
28747         gl_LOCK_EARLY_BODY.
28748         (gl_LOCK): Require gl_LOCK_BODY.
28749
28750 2006-10-04  Bruno Haible  <bruno@clisp.org>
28751
28752         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
28753         (gl_oset_search_atleast): New declaration.
28754         (struct gl_oset_implementation): Add field 'search_atleast'.
28755         (gl_oset_search_atleast): New inline function.
28756         * lib/gl_oset.c (gl_oset_search_atleast): New function.
28757         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
28758         (gl_array_oset_implementation): Update.
28759         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
28760         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
28761         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
28762
28763 2006-10-04  Bruno Haible  <bruno@clisp.org>
28764
28765         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
28766
28767 2006-10-03  Bruno Haible  <bruno@clisp.org>
28768
28769         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
28770         from gl_avltreehash_list_implementation.
28771
28772 2006-10-03  Bruno Haible  <bruno@clisp.org>
28773
28774         * lib/gl_oset.c (gl_oset_add): Fix return type.
28775
28776 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
28777
28778         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
28779
28780 2006-10-02  Eric Blake  <ebb9@byu.net>
28781
28782         * modules/strnlen (Depends-on): Add extensions.
28783
28784 2006-10-02  Eric Blake  <ebb9@byu.net>
28785
28786         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
28787         definition in 2.60+.
28788
28789 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
28790
28791         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
28792         checks.
28793
28794 2006-10-02  Bruno Haible  <bruno@clisp.org>
28795
28796         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
28797         to the AUTOMAKE_OPTIONS.
28798         Reported by Jim Meyering.
28799
28800 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
28801
28802         Work around bug in Solaris 10 /proc file system:
28803         /proc/self/fd/NNN/.. isn't the parent directory of
28804         the directory whose file descriptor is NNN.  This needs to
28805         be worked around at run time, not compile time, since a
28806         program might be built on Solaris 8, where things work, and
28807         run on Solaris 10.
28808         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
28809         to use the following interface instead:
28810         (OPENAT_BUFFER_SIZE): New macro.
28811         (openat_proc_name): New function.
28812         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
28813         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
28814         Likewise.
28815         * lib/openat-proc.c: New file.
28816         * modules/openat (Files): Add lib/openat-proc.c.
28817         (Depends-on): Add same-inode, stdbool.
28818         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
28819
28820 2006-09-29  Bruno Haible  <bruno@clisp.org>
28821
28822         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
28823         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
28824         argument. Set stdout_closed before testing for ferror, not after.
28825         (fwriteerror, fwriteerror_no_ebadf): New functions.
28826
28827 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28828
28829         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
28830
28831 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
28832
28833         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
28834         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
28835
28836 2006-09-28  Jim Meyering  <jim@meyering.net>
28837
28838         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
28839         Include <unistd.h>.
28840
28841 2006-09-28  Bruno Haible  <bruno@clisp.org>
28842
28843         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
28844         * modules/linkedhash-list (Depends-on): Likewise.
28845         * modules/rbtreehash-list (Depends-on): Likewise.
28846
28847 2006-09-28  Bruno Haible  <bruno@clisp.org>
28848
28849         * lib/strndup.h: Simplify the redefinition of strndup.
28850         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
28851         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
28852
28853 2006-09-28  Bruno Haible  <bruno@clisp.org>
28854
28855         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
28856         * lib/gl_linkedhash_list.c: Likewise.
28857         * lib/gl_rbtreehash_list.c: Likewise.
28858
28859 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
28860
28861         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
28862         getaddrinfo.
28863
28864         * lib/__fpending.h: Don't include <stdio_ext.h> unless
28865         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
28866         it causes <stdio_ext.h> to cause a compile-time error.
28867         Problem reported by Nelson H. F. Beebe.
28868         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
28869         of HAVE_DECL___PENDING.
28870
28871         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
28872         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
28873         declaration.
28874
28875 2006-09-27  Jim Meyering  <jim@meyering.net>
28876
28877         This file could end up with a definition for a function
28878         named __strndup, rather than rpl_strndup on a system with
28879         incomplete weak_alias support.
28880         * lib/strndup.c (strndup): Rename from __strndup.
28881         Remove #defines that used to map __strndup to strndup.
28882         Don't use K&R prototypes.
28883         Remove LIBC-related code, since this file is not sync'd with glibc.
28884         * lib/strndup.h: Revamp, accordingly.
28885         * m4/strndup.m4: Modernize.
28886
28887 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
28888
28889         * modules/savewd (Depends-on): Add 'raise'.
28890         * lib/savewd.c: Include <signal.h>, for 'raise'.
28891
28892 2006-09-26  Jim Meyering  <jim@meyering.net>
28893
28894         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
28895         when we detect Darwin 8.7.0's acl_get_file bug.
28896         Rearrange to perform the new (below) run-test while $LIBS
28897         contains any acl-related library.  Set USE_ACL at the end.
28898         (gl_ACL_GET_FILE): New function.
28899
28900 2006-09-26  Eric Blake  <ebb9@byu.net>
28901
28902         * lib/verror.c: Include <config.h> unconditionally.
28903
28904 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
28905
28906         * modules/clock-time (Maintainer): Add self.
28907         * modules/getlogin_r (Depends-on): Add extensions.
28908
28909 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28910
28911         * modules/clock-time: New module.
28912         * modules/nanosleep (Depends-on): Add clock-time.
28913         * modules/gethrxtime (Depends-on): Likewise.
28914         * modules/gettime (Depends-on): Likewise.
28915         * modules/settime (Depends-on): Likewise.
28916
28917         * modules/fts-lgpl: Depend on openat.
28918         * modules/mkancesdirs: Depend on savewd.
28919         * modules/mkdir-p: Likewise.
28920
28921 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28922
28923         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
28924
28925         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
28926         `gl_have_arbitrary_file_name_length_limit' to
28927         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
28928         actually works between configure runs.
28929
28930 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28931             Bruno Haible  <bruno@clisp.org>
28932
28933         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
28934
28935 2006-09-25  Jim Meyering  <jim@meyering.net>
28936
28937         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
28938         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
28939
28940 2006-09-25  Eric Blake  <ebb9@byu.net>
28941
28942         * gnulib-tool (func_import, func_create_testdir): Fix typos in
28943         exec's in 2006-09-18 patch when shuffling fds.
28944
28945 2006-09-25  Bruno Haible  <bruno@clisp.org>
28946
28947         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
28948         Reported by Jim Meyering.
28949
28950 2006-09-24  Jim Meyering  <jim@meyering.net>
28951
28952         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
28953         compare a pointer against a literal "0".  That caused failures with
28954         at least HP-UX's hpcc.
28955
28956 2006-09-22  Simon Josefsson  <jas@extundo.com>
28957
28958         * modules/gc-sha1:
28959         * modules/gc-md4:
28960         * modules/gc-hmac-sha1:
28961         * modules/gc-hmac-md5:
28962         * modules/gc-des:
28963         * modules/gc-arcfour: Distribute more files.
28964
28965 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28966
28967         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
28968         (gl_linked_iterator_from_to): Initialize struct completely.
28969         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
28970         (gl_tree_iterator_from_to): Likewise
28971         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
28972         * lib/gl_array_list.c [lint] (gl_array_iterator)
28973         (gl_array_iterator_from_to): Likewise.
28974         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
28975         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
28976         (gl_carray_iterator_from_to): Likewise.
28977
28978         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
28979         * lib/md4.c (md4_process_block): Remove unused variable.
28980         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
28981         parentheses for clarity.
28982
28983 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28984
28985         * modules/bison-i18n (Depends-on): Add gettext.
28986
28987 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28988
28989         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
28990         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
28991         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
28992         also add missing comma that caused broken test.
28993         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
28994         stdlib.h, for `abort'.
28995         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
28996         variables.
28997         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
28998         include unistd.h if present, for `rmdir'.
28999         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
29000         variables.
29001         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
29002         in the process include standard headers for prototypes.
29003         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
29004         gets declared on GNU/Linux.
29005         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
29006         unistd.h, for `rmdir'.
29007         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
29008
29009         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
29010         always true.
29011         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
29012
29013         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
29014
29015 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29016
29017         * gnulib-tool (func_version): Create output all at once.  This
29018         may help avoid triggering unnecessary SIGPIPEs, and at any
29019         rate it doesn't hurt.
29020
29021 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29022             Bruno Haible  <bruno@clisp.org>
29023
29024         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
29025         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
29026         * m4/signed.m4 (bh_C_SIGNED): Likewise.
29027
29028         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
29029         (gl_FUNC_VASPRINTF): Invoke it.
29030
29031 2006-09-22  Bruno Haible  <bruno@clisp.org>
29032
29033         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
29034         getloadavg.c as first argument.
29035
29036 2006-09-22  Bruno Haible  <bruno@clisp.org>
29037
29038         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
29039         at the beginning of the gl_INIT macro.
29040         * modules/getloadavg (configure.ac): Pass $gl_source_base to
29041         gl_GETLOADAVG.
29042
29043 2006-09-22  Bruno Haible  <bruno@clisp.org>
29044
29045         * gnulib-tool (func_create_megatestdir): Don't include the config-h
29046         module.
29047         Suggested by Ralf Wildenhues.
29048
29049 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
29050
29051         Import this patch from libc:
29052
29053         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
29054
29055         * lib/regex_internal.c (re_string_reconstruct): Handle
29056         offset < pstr->valid_raw_len && pstr->offsets_needed case.
29057         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
29058         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
29059         re_string_context_at.
29060
29061         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
29062         now requires it.
29063         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
29064         gl_REGEX now does it for us.
29065         (gl_REGEX): Add test taken from
29066         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
29067
29068         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
29069         Check that large offsets work.  Modernize Autoconf usages.
29070         Prefer "yes" to mean a good thing rather than a bad.
29071         Don't put "#define mkstemp" in config.h, as this might interfere
29072         with standard system headers that "#define mkstemp mkstemp64".
29073
29074         * modules/mkstemp (Depends-on): Add extensions, so that
29075         mkstemp is visible on some platforms.
29076         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
29077         (Include): Change to "mkstemp.h" from <stdlib.h>.
29078         (Files): Add mkstemp.h.
29079
29080         * lib/mkstemp.h: New file, since some standard headers
29081         #define mkstemp.
29082         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
29083         Include "mkstemp.h".
29084         Make the _LIBC code resemble glibc original more,
29085         e.g., use K&R style.
29086         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
29087         (mkstemp): Remove, since mkstemp.h does this for us.
29088         * lib/stdlib--.h: Include mkstemp.h.
29089
29090         Import this patch from libc:
29091
29092         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
29093
29094         * lib/tempname.c (__gen_tempname): Change attempts_min
29095         into a macro.  Use preprocessor to decide how to initialize
29096         attempts [Coverity CID 67].
29097
29098 2006-09-20  Bruno Haible  <bruno@clisp.org>
29099
29100         * lib/mkdtemp.c: Import from libc.
29101         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
29102                 * sysdeps/posix/tempname.c (__gen_tempname): Change
29103                 attempts_min into a macro.  Use preprocessor to decide how to
29104                 initialize attempts [Coverity CID 67].
29105         2001-11-27  Paul Eggert  <eggert@twinsun.com>
29106                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
29107                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
29108
29109 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29110
29111         * gnulib-tool (func_exit): New function, to allow to pass the
29112         exit status portably through the trap.  Use everywhere.
29113         (--help, --version): Signal a write error.
29114         (trap): catch SIGPIPE, for write errors.
29115         Exit at the end of the trap, with the correct exit status.
29116
29117 2006-09-19  Karl Berry  <karl@gnu.org>
29118
29119         * doc/gnulib.texi: note about the license texinfo files.
29120
29121 2006-09-19  Eric Blake  <ebb9@byu.net>
29122
29123         * gnulib-tool: Avoid space-tab.
29124
29125 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
29126
29127         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
29128         that prevented coreutils 6.1 from building.  Problem reported
29129         by Petter Reinholdtsen.
29130
29131 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
29132
29133         * gnulib-tool (avoidlist): Fix typo that broke options like
29134         --avoid=lock that are used by coreutils bootstrap.
29135
29136 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
29137
29138         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
29139         more systematically.
29140
29141 2006-09-18  Jim Meyering  <jim@meyering.net>
29142
29143         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
29144
29145 2006-09-18  Bruno Haible  <bruno@clisp.org>
29146
29147         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
29148
29149 2006-09-18  Bruno Haible  <bruno@clisp.org>
29150
29151         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
29152         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
29153         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
29154         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
29155         * m4/gettext.m4: Require autoconf >= 2.52.
29156         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
29157         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
29158         of gl_cv_header_inttypes_h.
29159
29160 2006-09-18  Bruno Haible  <bruno@clisp.org>
29161
29162         * lib/javaversion.c: Include configmake.h.
29163
29164 2006-09-18  Bruno Haible  <bruno@clisp.org>
29165
29166         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
29167         avoid that the while loops be executed in a subshell.
29168
29169 2006-09-18  Bruno Haible  <bruno@clisp.org>
29170
29171         * MODULES.html.sh (func_module): Break long lines.
29172         Suggested by Bruce Korb <bkorb@gnu.org>.
29173
29174 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29175
29176         Speed up by a factor of 1.12.
29177         * gnulib-tool (nl): New variable.
29178         (func_import): Rewrite include directive extraction to only read each
29179         directive once.
29180
29181 2006-09-17  Bruno Haible  <bruno@clisp.org>
29182
29183         * modules/javaversion (Makefile.am): Remove DEFS setting.
29184         (Depends-on): Add configmake, for PKGDATADIR definition.
29185
29186 2006-09-17  Bruno Haible  <bruno@clisp.org>
29187
29188         * gnulib-tool (func_create_testdir): Rewrite all files at once.
29189
29190 2006-09-17  Bruno Haible  <bruno@clisp.org>
29191
29192         * gnulib-tool (func_append): New function, stolen from libtool.m4.
29193         (func_modules_transitive_closure, func_modules_add_dummy,
29194         func_modules_to_filelist, func_import, func_create_testdir,
29195         func_create_megatestdir, ...): Use it wherever possible.
29196         Suggested by Ralf Wildenhues.
29197
29198 2006-09-16  Karl Berry  <karl@gnu.org>
29199
29200         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
29201         to avoid sectioning errors.
29202         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
29203         [ifinfo]: blank line after @center-ed titles.
29204         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
29205         Spell FSF address consistently with others.
29206         (These changes approved by rms.)
29207
29208 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29209
29210         Speed up by a factor of 1.61.
29211         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
29212         already checked module names again.
29213
29214 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29215
29216         Speed up by a factor of 1.13.
29217         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
29218         for new_files, and the input to func_add_or_update.
29219
29220 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29221
29222         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
29223         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
29224
29225 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
29226
29227         * modules/mkancesdirs (Depends-on): Add fcntl.
29228         * modules/savewd: New file.
29229         * MODULES.html.sh (File system functions): Add savewd.
29230
29231         * modules/configmake (Makefile.am): Add support for the
29232         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
29233
29234 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
29235
29236         * m4/savewd.m4: New file.
29237
29238 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
29239
29240         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
29241         (dirchownmod): New arg FD.  All callers changed.
29242         Use FD rather than opening the directory ourself, as opening is
29243         now the caller's responsibility.
29244         * lib/dirchownmod.h: Likewise.
29245         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
29246         hosts that require <sys/types.h> before <sys/stat.h>.  Include
29247         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
29248         (test_dir): Remove.
29249         (mkancesdirs): Return length of prefix of FILE that has already
29250         been made, or -2 if there is a child doing the work.  Redo
29251         algorithm so that it is O(N) rather than O(N**2).  Optimize away
29252         ".", and treat ".." specially since it might stray back into
29253         already-created areas.  Use a subprocess if necessary.  New arg
29254         WD; all users changed.  MAKE_DIR function should now return 1
29255         if it creates a directory that is not readable.  Return -2 if
29256         a child process is spun off.
29257         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
29258         Adjust signature to match code.
29259         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
29260         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
29261         all users changed.
29262         * lib/savewd.c, lib/savewd.h: New files.
29263
29264 2006-09-15  Jim Meyering  <jim@meyering.net>
29265
29266         * modules/rename-dest-slash: New module.
29267         * MODULES.html.sh (posix_compat): Add it here.
29268
29269         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
29270
29271 2006-09-15  Jim Meyering  <jim@meyering.net>
29272
29273         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
29274         file.
29275
29276         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
29277
29278 2006-09-15  Jim Meyering  <jim@meyering.net>
29279
29280         * lib/rename-dest-slash.c (has_trailing_slash): Use
29281         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
29282         (rpl_rename_dest_slash): Perform the cheaper trailing slash
29283         test before testing whether SRC is a directory.
29284         Suggestions from Bruno Haible.
29285
29286         Avoid a warning about an unused variable.
29287         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
29288         into the #ifdef block where it's used.
29289
29290         * lib/rename-dest-slash.c: New file.
29291
29292 2006-09-14  Bruno Haible  <bruno@clisp.org>
29293
29294         * lib/allocsa.c: Include <config.h> unconditionally.
29295         * lib/asnprintf.c: Likewise.
29296         * lib/asprintf.c: Likewise.
29297         * lib/c-strcasecmp.c: Likewise.
29298         * lib/c-strcasestr.c: Likewise.
29299         * lib/c-strncasecmp.c: Likewise.
29300         * lib/c-strstr.c: Likewise.
29301         * lib/classpath.c: Likewise.
29302         * lib/clean-temp.c: Likewise.
29303         * lib/concatpath.c: Likewise.
29304         * lib/copy-file.c: Likewise.
29305         * lib/csharpcomp.c: Likewise.
29306         * lib/csharpexec.c: Likewise.
29307         * lib/execute.c: Likewise.
29308         * lib/fatal-signal.c: Likewise.
29309         * lib/findprog.c: Likewise.
29310         * lib/fwriteerror.c: Likewise.
29311         * lib/gl_array_list.c: Likewise.
29312         * lib/gl_array_oset.c: Likewise.
29313         * lib/gl_avltree_list.c: Likewise.
29314         * lib/gl_avltree_oset.c: Likewise.
29315         * lib/gl_avltreehash_list.c: Likewise.
29316         * lib/gl_carray_list.c: Likewise.
29317         * lib/gl_linked_list.c: Likewise.
29318         * lib/gl_linkedhash_list.c: Likewise.
29319         * lib/gl_list.c: Likewise.
29320         * lib/gl_oset.c: Likewise.
29321         * lib/gl_rbtree_list.c: Likewise.
29322         * lib/gl_rbtree_oset.c: Likewise.
29323         * lib/gl_rbtreehash_list.c: Likewise.
29324         * lib/imaxabs.c: Likewise.
29325         * lib/imaxdiv.c: Likewise.
29326         * lib/javacomp.c: Likewise.
29327         * lib/javaexec.c: Likewise.
29328         * lib/javaversion.c: Likewise.
29329         * lib/linebreak.c: Likewise.
29330         * lib/localcharset.c: Likewise.
29331         * lib/lock.c: Likewise.
29332         * lib/mbchar.c: Likewise.
29333         * lib/mbswidth.c: Likewise.
29334         * lib/mkdtemp.c: Likewise.
29335         * lib/pipe.c: Likewise.
29336         * lib/printf-args.c: Likewise.
29337         * lib/printf-parse.c: Likewise.
29338         * lib/progname.c: Likewise.
29339         * lib/progreloc.c: Likewise.
29340         * lib/readlink.c: Likewise.
29341         * lib/sh-quote.c: Likewise.
29342         * lib/stpcpy.c: Likewise.
29343         * lib/stpncpy.c: Likewise.
29344         * lib/strcasecmp.c: Likewise.
29345         * lib/strcasestr.c: Likewise.
29346         * lib/strcspn.c: Likewise.
29347         * lib/striconv.c: Likewise.
29348         * lib/strncasecmp.c: Likewise.
29349         * lib/strnlen1.c: Likewise.
29350         * lib/strstr.c: Likewise.
29351         * lib/strtok_r.c: Likewise.
29352         * lib/tls.c: Likewise.
29353         * lib/tmpdir.c: Likewise.
29354         * lib/unicodeio.c: Likewise.
29355         * lib/unsetenv.c: Likewise.
29356         * lib/vasnprintf.c: Likewise.
29357         * lib/vasprintf.c: Likewise.
29358         * lib/wait-process.c: Likewise.
29359         * lib/xallocsa.c: Likewise.
29360         * lib/xsetenv.c: Likewise.
29361         * lib/xstriconv.c: Likewise.
29362
29363 2006-09-13  Simon Josefsson  <jas@extundo.com>
29364
29365         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
29366         that internally, suggested by Ralf Wildenhues
29367         <Ralf.Wildenhues@gmx.de>.
29368
29369 2006-09-13  Simon Josefsson  <jas@extundo.com>
29370
29371         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
29372         @LIBOBJS@.
29373         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
29374
29375 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
29376
29377         * lib/_fpending.c: Include <config.h> unconditionally, since we no
29378         longer worry about uses that don't define HAVE_CONFIG_H.
29379         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
29380         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
29381         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
29382         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
29383         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
29384         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
29385         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
29386         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
29387         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
29388         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
29389         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
29390         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
29391         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
29392         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
29393         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
29394         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
29395         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
29396         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
29397         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
29398         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
29399         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
29400         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
29401         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
29402         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
29403         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
29404         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
29405         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
29406         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
29407         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
29408         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
29409         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
29410         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
29411         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
29412         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
29413         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
29414         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
29415         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
29416         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
29417         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
29418         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
29419         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
29420         Likewise.
29421
29422 2006-09-13  Eric Blake  <ebb9@byu.net>
29423
29424         * lib/getopt.c: Fix typo in last commit.
29425
29426 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
29427
29428         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
29429         dgettext.
29430
29431 2006-09-12  Jim Meyering  <jim@meyering.net>
29432
29433         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
29434         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
29435         Reported by Nelson H. F. Beebe.
29436
29437 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
29438
29439         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
29440         program_invocation_name and program_invocation_short_name are
29441         initialized.
29442         * lib/argp-namefrob.h: Move declarations of program_invocation_name
29443         and program_invocation_short_name to argp.h, so they are visible
29444         to user programs.
29445         * lib/argp.h: Likewise
29446
29447 2006-09-10  Bruno Haible  <bruno@clisp.org>
29448
29449         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
29450         m4/inttypes_h.m4, m4/uintmax_t.m4.
29451
29452 2006-09-10  Bruno Haible  <bruno@clisp.org>
29453
29454         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
29455         gl_AC_TYPE_UINTMAX_T.
29456
29457 2006-09-10  Bruno Haible  <bruno@clisp.org>
29458
29459         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
29460
29461 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
29462
29463         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
29464         convention.  Text proposed by Bruno Haible.
29465         (struct argp_option): Document the use of N_() wrappers.
29466
29467         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
29468         '\v', and translate the two parts separately, instead of feeding
29469         the whole string to gettext.  This allows to exclude
29470         '\v' from the strings visible to the translator by writing doc
29471         strings as N_("..") "\v" N_("..").
29472
29473 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
29474
29475         * config/srclist.txt: Undo latest change; the bug was fixed.
29476
29477 2006-09-09  Bruno Haible  <bruno@clisp.org>
29478
29479         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
29480         assignments if building a library without libtool.
29481         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
29482         in func_emit_lib_Makefile_am.
29483         (func_import): When building a static library libfoo.a, arrange to
29484         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
29485         (func_create_testdir): Likewise.
29486         * modules/gc (configure.ac, Makefile.am): If building statically,
29487         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
29488         * modules/iconvme (configure.ac, Makefile.am): Likewise.
29489         * modules/striconv (configure.ac, Makefile.am): Likewise.
29490         Based on a suggestion by Ralf Wildenhues.
29491
29492 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
29493
29494         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
29495         Check for unistd.h too, since Autoconf doesn't assume POSIX.
29496         Also:
29497
29498         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
29499         Add year_2050_test to catch glibc bug 2821
29500         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
29501
29502         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
29503         Prefer #ifdef to #if.
29504
29505         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
29506         Return from 'main' instead of calling 'exit'.
29507
29508 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
29509
29510         * lib/mktime.c (guess_time_tm): Fix bug where mktime
29511         returned the maximum time_t value rather than (time_t) -1.
29512         Problem originally reported by William Bardwell
29513         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
29514
29515         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
29516         Moved to here ...
29517         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
29518         ... from here.
29519
29520 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
29521
29522         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
29523         2821 is fixed.
29524
29525 2006-09-08  Jim Meyering  <jim@meyering.net>
29526
29527         Don't make generated files read-only.  That would bother too many
29528         people.  However, do retain the ability to work when targets are
29529         read-only: remove the destination and temporary files before writing
29530         them (when generated via sed or echo), or by using the -f option for
29531         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
29532         * modules/alloca-opt, modules/argz, modules/arpa_inet:
29533         * modules/byteswap, modules/configmake, modules/fcntl:
29534         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
29535         * modules/localcharset, modules/netinet_in, modules/poll:
29536         * modules/stdbool, modules/stdint, modules/sys_select:
29537         * modules/sys_socket, modules/sys_stat, modules/sysexits:
29538
29539 2006-09-08  Jim Meyering  <jim@meyering.net>
29540
29541         Avoid new build failure on FreeBSD 6.0.
29542         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
29543         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
29544         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
29545
29546 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29547
29548         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
29549
29550 2006-09-07  Jim Meyering  <jim@meyering.net>
29551
29552         Fix global typo in last change: use chmod u-w, not chmod u-x.
29553         Spotted by Paul Eggert and Bruce Korb.
29554         * modules/alloca-opt, modules/argz, modules/arpa_inet:
29555         * modules/byteswap, modules/configmake, modules/fcntl:
29556         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
29557         * modules/localcharset, modules/netinet_in, modules/poll:
29558         * modules/stdbool, modules/stdint, modules/sys_select:
29559         * modules/sys_socket, modules/sys_stat, modules/sysexits:
29560
29561 2006-09-06  Jim Meyering  <jim@meyering.net>
29562
29563         Make generated files be read-only.
29564         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
29565         Ensure that each generated file is now read-only.
29566         * modules/argz: Likewise.
29567         * modules/arpa_inet: Likewise.
29568         * modules/byteswap: Likewise.
29569         * modules/configmake: Likewise.
29570         * modules/fcntl: Likewise.
29571         * modules/fnmatch: Likewise.
29572         * modules/getopt: Likewise.
29573         * modules/glob: Likewise.
29574         * modules/inttypes: Likewise.
29575         * modules/netinet_in: Likewise.
29576         * modules/poll: Likewise.
29577         * modules/stdbool: Likewise.
29578         * modules/stdint: Likewise.
29579         * modules/sys_select: Likewise.
29580         * modules/sys_socket: Likewise.
29581         * modules/sys_stat: Likewise.
29582         * modules/sysexits: Likewise.
29583         * modules/localcharset: Same as above, but continue using temporary
29584         file named "t-$@" (why different?) rather than the "$@-t" used
29585         everywhere else.
29586
29587         * modules/sysexits (Makefile.am): Replace literal occurrences
29588         of "sysexit.h" more readable, and more consistent, "$@".
29589
29590 2006-09-06  Bruno Haible  <bruno@clisp.org>
29591
29592         * modules/striconv: New file.
29593         * modules/xstriconv: New file.
29594         * MODULES.html.sh (Internationalization functions): Add striconv,
29595         xstriconv.
29596
29597 2006-09-06  Bruno Haible  <bruno@clisp.org>
29598
29599         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
29600         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
29601         not using libtool correctly.
29602
29603 2006-09-06  Bruno Haible  <bruno@clisp.org>
29604
29605         * lib/striconv.h: New file.
29606         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
29607         iconvstring.c.
29608         * lib/xstriconv.h: New file.
29609         * lib/xstriconv.c: New file.
29610
29611 2006-09-06  Bruno Haible  <bruno@clisp.org>
29612
29613         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
29614         lib_..._LDFLAGS.
29615
29616 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29617
29618         * lib/argz_.h: Sync from Libtool.
29619
29620         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
29621                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
29622
29623         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
29624
29625 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
29626
29627         * modules/trim: New file.
29628
29629 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
29630
29631         * lib/trim.h: New file.
29632         * lib/trim.c: New file.
29633
29634 2006-09-05  Bruno Haible  <bruno@clisp.org>
29635
29636         * MODULES.html.sh (String handling): Add trim.
29637
29638 2006-09-04  Karl Berry  <karl@gnu.org>
29639
29640         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
29641         until next release.
29642
29643 2006-09-03  Bruno Haible  <bruno@clisp.org>
29644
29645         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
29646         correctly.
29647
29648 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
29649
29650         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
29651         not gl_GETLOADAVG.  Omit unneeded semicolons.
29652         Problems reported by Ralf Wildenhues in
29653         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
29654         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
29655         at the end, which is the usual gnulib style.
29656
29657         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
29658         of doing all the work ourselves.
29659         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
29660         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
29661
29662 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
29663
29664         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
29665         Problem reported by Ralf Wildenhues in
29666         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
29667
29668         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
29669         HAVE_STRUCT_STATFS_F_FSTYPENAME.
29670
29671 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
29672
29673         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
29674         yesterday's patch by changing test -n to test -z.
29675
29676 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29677
29678         * modules/getloadavg (Files): Add m4/getloadavg.m4.
29679         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
29680         the former is now obsolescent.
29681
29682         * modules/chdir-long (Depends-on): Add fcntl.
29683
29684 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29685
29686         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
29687         obsolescent, and programs should use gnulib instead.
29688         * m4/getloadavg.m4: New file, with contents taken from Autoconf
29689         but with prefixes changed.
29690
29691 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
29692
29693         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
29694         or stdbool.h, because they might not exist while configuring.
29695
29696         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
29697         Don't include unistd.h or limits.h; not needed, since chdir-long.h
29698         does that for us.
29699         (O_DIRECTORY): Remove.
29700
29701 2006-08-31  Eric Blake  <ebb9@byu.net>
29702
29703         * gnulib-tool: Don't let emacs change spaces to TAB.
29704
29705 2006-08-31  Bruno Haible  <bruno@clisp.org>
29706
29707         * gnulib-tool: When calling func_import more than once, do it in a
29708         subshell.
29709         Reported by Eric Blake <ebb9@byu.net>.
29710
29711 2006-08-31  Bruno Haible  <bruno@clisp.org>
29712
29713         * gnulib-tool (nl): Remove variable.
29714         (sed_transform_lib_file): Use more robust test for config-h module.
29715         (func_import): Fix typo in 2006-08-25 patch.
29716
29717 2006-08-31  Bruno Haible  <bruno@clisp.org>
29718
29719         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
29720         specified, augment Makefile.am variables instead of assigning them.
29721
29722 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
29723
29724         Work around a bug in both the Linux and SunOS 64-bit kernels:
29725         nanosleep mishandles sleeps for longer than 2**31 seconds.
29726         Problem reported by Frank v Waveren in
29727         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
29728         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
29729         Check for nanosleep bug.
29730         (LIB_NANOSLEEP): Append clock_gettime library if needed.
29731
29732 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
29733
29734         Work around a bug in both the Linux and SunOS 64-bit kernels:
29735         nanosleep mishandles sleeps for longer than 2**31 seconds.
29736         Problem reported by Frank v Waveren in
29737         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
29738         * lib/nanosleep.c (BILLION): New constant.
29739         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
29740         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
29741         implementation.
29742
29743 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
29744
29745         * modules/nanosleep (Depends-on): Add gettime.
29746
29747 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
29748         and Simon Josefsson  <jas@extundo.com>
29749         and Oskar Liljeblad  <oskar@osk.mine.nu>
29750
29751         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
29752         * gnulib-tool (func_import): New license type 'unmodifiable license
29753         text'.
29754         * modules/fdl: Use it.  Longer description.
29755         * module/gpl, module/lgpl: New files.
29756
29757 2006-08-30  Jim Meyering  <jim@meyering.net>
29758
29759         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
29760         shadowing the parameter.
29761
29762 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29763
29764         Sync from Libtool:
29765
29766         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29767
29768         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
29769         sharing with gnulib.  Report by Eric Blake.
29770
29771 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
29772
29773         * modules/isapipe: New file.
29774         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
29775
29776 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         * modules/configmake (Makefile.am): Add a comment, and omit
29779         the CONFIGMAKE_ prefix from generated macro names.  Suggested
29780         by Bruno Haible.
29781
29782 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
29783
29784         * m4/isapipe.m4: New file.
29785
29786 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
29787
29788         * lib/isapipe.c, lib/isapipe.h: New files.
29789
29790 2006-08-29  Jim Meyering  <jim@meyering.net>
29791
29792         * modules/configmake (Makefile.am): Make configmake.h depend on
29793         Makefile.  Otherwise, a stale configmake.h could hang around.
29794
29795 2006-08-29  Eric Blake  <ebb9@byu.net>
29796
29797         * lib/error.c (error_at_line, print_errno_message): Match libc, after
29798         resolution of upstream bug 3044.
29799
29800 2006-08-29  Bruno Haible  <bruno@clisp.org>
29801
29802         * modules/localcharset (Depends-on): Add configmake.
29803         (Makefile.am): Remove setting of LIBDIR through DEFS.
29804
29805 2006-08-29  Bruno Haible  <bruno@clisp.org>
29806
29807         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
29808         defined.
29809
29810 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
29811
29812         * modules/fcntl: New file.
29813         * modules/chdir-safer (Depends-on): Add fcntl.
29814         * modules/fts: Likewise.
29815         * modules/mkdir-p: Likewise.
29816
29817         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
29818         This undoes the most recent change, since we're now addressing the
29819         problem in a different way.
29820
29821         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
29822         into output, since the output might be called Makefile.am even
29823         if $makefile_name is something different.
29824         (func_import): Use $makefile_am rather than
29825         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
29826         empty.
29827
29828         * modules/inttypes (Files): Add m4/inttypes-h.m4.
29829
29830 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
29831
29832         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
29833         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
29834         recent change to stdint.m4, since we're now addressing the problem in a
29835         different way.
29836
29837 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
29838
29839         * m4/fcntl_h.m4: New file.
29840
29841 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
29842
29843         * lib/fcntl_.h: New file.
29844         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
29845         the fcntl module.
29846         * lib/dirchownmod.c: Likewise.
29847         * lib/fts.c: Likewise.
29848
29849         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
29850         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
29851         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
29852         just before including <inttypes.h>, to avoid circular inclusion.
29853
29854 2006-08-28  Jim Meyering  <jim@meyering.net>
29855
29856         * doc/visibility.texi: Actually read and correct the grammar of the
29857         sentence affected by yesterday's change.
29858
29859 2006-08-28  Eric Blake  <ebb9@byu.net>
29860
29861         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
29862         needs wrapper.
29863
29864 2006-08-28  Eric Blake  <ebb9@byu.net>
29865
29866         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
29867
29868 2006-08-28  Eric Blake  <ebb9@byu.net>
29869
29870         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
29871
29872 2006-08-28  Bruno Haible  <bruno@clisp.org>
29873
29874         * modules/c-strstr: New file, from GNU gettext.
29875         * MODULES.html.sh (String handling): Add c-strstr.
29876
29877 2006-08-28  Bruno Haible  <bruno@clisp.org>
29878
29879         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
29880         macros.
29881         Reported by Eric Blake.
29882
29883 2006-08-28  Bruno Haible  <bruno@clisp.org>
29884
29885         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
29886         (VASNPRINTF): Return a string of length > INT_MAX without failing.
29887         * lib/vasprintf.c: Include errno.h, limits.h.
29888         (EOVERFLOW): New fallback definition.
29889         (vasprintf): Test here whether the string length is > INT_MAX.
29890         * lib/vsnprintf.c: Include errno.h, limits.h.
29891         (EOVERFLOW): New fallback definition.
29892         (vsnprintf): Fix bug when generated string was too long for the buffer.
29893         Test here whether the string length is > INT_MAX.
29894
29895 2006-08-28  Bruno Haible  <bruno@clisp.org>
29896
29897         * lib/inttypes_.h (SCNX*): Remove definitions.
29898         Reported by Eric Blake.
29899
29900 2006-08-28  Bruno Haible  <bruno@clisp.org>
29901
29902         * lib/c-strstr.h: New file, from GNU gettext.
29903         * lib/c-strstr.c: New file, from GNU gettext.
29904
29905 2006-08-28  Bruno Haible  <bruno@clisp.org>
29906
29907         * gnulib-tool: Reorder some statements.
29908
29909 2006-08-28  Bruno Haible  <bruno@clisp.org>
29910
29911         * gnulib-tool: New option --makefile-name.
29912         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
29913         $makefile_name.
29914         (func_import): Write $makefile_name to the cache file, and read it from
29915         there unless explicitly specified. Use $makefile_name as file name
29916         instead of Makefile.am. Adjust the recommendations accordingly.
29917
29918 2006-08-28  Bruno Haible  <bruno@clisp.org>
29919
29920         * gnulib-tool (func_verify_module): Check against misapplying patch.
29921
29922 2006-08-28  Bruno Haible  <bruno@clisp.org>
29923
29924         * gnulib-tool (func_relativize, func_relconcat): New functions.
29925         Give an error if --local-dir is given with --update.
29926         Remove trailing slashes from $local_gnulib_dir.
29927         (func_import): Store the relativized $local_gnulib_dir in
29928         gnulib-cache.m4, and read it from there if not specified explicitly.
29929
29930 2006-08-28  Bruno Haible  <bruno@clisp.org>
29931
29932         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
29933         is the current directory. Respect also $local_gnulib_dir.
29934
29935 2006-08-28  Bruno Haible  <bruno@clisp.org>
29936             Simon Josefsson  <jas@extundo.com>
29937
29938         BeOS portability.
29939         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
29940
29941 2006-08-27  Jim Meyering  <jim@meyering.net>
29942
29943         * doc/visibility.texi: Remove duplicate word: "pointer".
29944
29945 2006-08-26  Bruno Haible  <bruno@clisp.org>
29946
29947         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
29948         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
29949         (Makefile.am): Create inttypes.h from inttypes_.h.
29950         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
29951
29952         * modules/imaxabs: New file.
29953
29954         * modules/imaxdiv: New file.
29955
29956 2006-08-26  Bruno Haible  <bruno@clisp.org>
29957
29958         * m4/inttypes.m4: New file.
29959         * m4/_inttypes_h.m4: Remove file.
29960         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
29961         PRI_MACROS_BROKEN.
29962         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
29963
29964         * m4/imaxabs.m4: New file.
29965
29966         * m4/imaxdiv.m4: New file.
29967
29968 2006-08-26  Bruno Haible  <bruno@clisp.org>
29969
29970         * lib/inttypes_.h: New file.
29971         * lib/inttypes.h: Remove file.
29972         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
29973
29974         * lib/imaxabs.c: New file.
29975
29976         * lib/imaxdiv.c: New file.
29977
29978 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29979
29980         New config-h module, so that "make" output needn't be cluttered
29981         by -DHAVE_CONFIG_H.
29982         * MODULES.html.sh (Support for building libraries and executables):
29983         Add config-h.
29984         * modules/config-h: New file.
29985         * gnulib-tool (nl, sed_transform_lib_file): New vars.
29986         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
29987         the config-h module is used.
29988
29989         New configmake module, so that "make" output needn't be cluttered
29990         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
29991         * MODULES.html.sh (Support for building libraries and executables):
29992         Add configmake.
29993         * modules/configmake: New file.
29994
29995 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
29996
29997         * m4/config-h.m4: New file.
29998
29999 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
30000
30001         * config/srclist.txt: Add elisp-comp.
30002
30003 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
30004
30005         * MODULES.html.sh (Support for building libraries and executables):
30006         Add elisp-comp.
30007         * build-aux/elisp-comp: New file.
30008         * modules/elisp-comp: New file.
30009
30010 2006-08-24  Bruno Haible  <bruno@clisp.org>
30011
30012         * gnulib-tool (func_create_testdir): Use non-default values of
30013         sourcebase and m4base.
30014
30015 2006-08-24  Bruno Haible  <bruno@clisp.org>
30016
30017         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
30018         HTML structure.
30019
30020 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
30021
30022         * modules/openat (Depends-on): Add lchown.
30023
30024 2006-08-23  Bruno Haible  <bruno@clisp.org>
30025
30026         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
30027         of gl_LOCK_EARLY instead of gl_LOCK.
30028
30029 2006-08-23  Bruno Haible  <bruno@clisp.org>
30030
30031         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
30032         on OSF/1 to no.
30033         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
30034
30035 2006-08-23  Bruno Haible  <bruno@clisp.org>
30036
30037         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
30038         as unusable.
30039
30040         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
30041         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
30042         (gl_LOCK): New macro.
30043
30044 2006-08-22  Simon Josefsson  <jas@extundo.com>
30045
30046         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
30047         to md5 module.
30048
30049 2006-08-22  Simon Josefsson  <jas@extundo.com>
30050
30051         * MODULES.html.sh: Add "Support for maintaining and release
30052         projects".
30053
30054         * build-aux/gnupload: New file, from coreutils.
30055
30056 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
30057
30058         Avoid the need for AC_LIBSOURCES in m4 macros.
30059         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
30060         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
30061         * modules/check-version (EXTRA_DIST): Add check-version.h.
30062         * modules/crc (EXTRA_DIST): Add crc.h.
30063         * modules/des (EXTRA_DIST): Add des.h.
30064         * modules/gc (EXTRA_DIST): Add gc.h.
30065         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
30066         * modules/getline (EXTRA_DIST): Add getline.h.
30067         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
30068         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
30069         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
30070         * modules/md2 (EXTRA_DIST): Add md2.h.
30071         * modules/md4 (EXTRA_DIST): Add md4.h.
30072         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
30073         * modules/read-file (EXTRA_DIST): Add read-file.h.
30074         * modules/readline (EXTRA_DIST): Add readline.h.
30075         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
30076         rijndael-api-fst.h.
30077
30078 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
30079
30080         * m4/rijndael.m4 (gl_ARCFOUR):
30081         * m4/arctwo.m4 (gl_ARCTWO):
30082         * m4/check-version.m4 (gl_CHECK_VERSION):
30083         * m4/crc.m4 (gl_CRC):
30084         * m4/des.m4 (gl_DES):
30085         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
30086         * m4/gc.m4 (gl_GC):
30087         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
30088         * m4/getline.m4 (gl_FUNC_GETLINE):
30089         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
30090         * m4/hmac-md5.m4 (gl_HMAC_MD5):
30091         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
30092         * m4/md2.m4 (gl_MD2):
30093         * m4/md4.m4 (gl_MD4):
30094         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
30095         * m4/read-file.m4 (gl_FUNC_READ_FILE):
30096         * m4/readline.m4 (gl_FUNC_READLINE):
30097         * m4/rijndael.m4 (gl_RIJNDAEL):
30098         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
30099         to get the necessary .h files and whatnot.
30100
30101 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
30102
30103         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
30104         gnulib rather than the other way around.
30105         * config/srclistvars.sh (COREUTILS): Remove.
30106
30107 2006-08-22  Jim Meyering  <jim@meyering.net>
30108
30109         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
30110
30111         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
30112
30113 2006-08-22  Eric Blake  <ebb9@byu.net>
30114
30115         * modules/regexprops-generic: New file.
30116         * MODULES.html.sh (Support for building documentation): List it.
30117
30118 2006-08-22  Eric Blake  <ebb9@byu.net>
30119
30120         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
30121         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
30122         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
30123         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
30124
30125 2006-08-22  Bruno Haible  <bruno@clisp.org>
30126
30127         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
30128         and lib_LTLIBRARIES like the other lib_* variables.
30129
30130 2006-08-22  Bruno Haible  <bruno@clisp.org>
30131
30132         * build-aux/x-to-1.in: New file, from GNU gettext.
30133
30134 2006-08-22  Bruno Haible  <bruno@clisp.org>
30135
30136         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
30137         <utmpx.h> exists.
30138
30139 2006-08-22  Bruno Haible  <bruno@clisp.org>
30140
30141         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
30142         <utmpx.h> exists.
30143
30144 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
30145
30146         BeOS portability.
30147         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
30148         exist.
30149         Problem reported by Bruno Haible.
30150
30151 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
30152
30153         Avoid the need for AC_LIBSOURCES in m4 macros.
30154         * modules/acl (EXTRA_DIST): Add acl.h.
30155         * modules/argmatch (Files): Add m4/argmatch.m4.
30156         (configure.ac): Add gl_ARGMATCH.
30157         (EXTRA_DIST): Renamed from lib_SOURCES, for
30158         consistency with the other modules.  Remove argmatch.c.
30159         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
30160         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
30161         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
30162         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
30163         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
30164         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
30165         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
30166         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
30167         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
30168         * modules/closeout (EXTRA_DIST): Add closeout.h.
30169         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
30170         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
30171         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
30172         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
30173         dirname.h; remove basename.c and stripslash.c.
30174         * modules/exclude (EXTRA_DIST): Add exclude.h.
30175         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
30176         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
30177         * modules/file-type (EXTRA_DIST): Add file-type.h.
30178         * modules/filemode (EXTRA_DIST): Add filemode.h.
30179         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
30180         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
30181         * modules/fpending (EXTRA_DIST): Add __fpending.h.
30182         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
30183         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
30184         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
30185         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
30186         * modules/getdate (EXTRA_DIST): Add getdate.c.
30187         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
30188         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
30189         * modules/getpass (EXTRA_DIST): Add getpass.h.
30190         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
30191         * modules/group-member (EXTRA_DIST): Add group-member.h.
30192         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
30193         * modules/hash (EXTRA_DIST): Add hash.h.
30194         * modules/human (EXTRA_DIST): Add human.h.
30195         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
30196         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
30197         * modules/lchown (EXTRA_DIST): Add lchown.h.
30198         * modules/long-options (EXTRA_DIST): Add long-options.h.
30199         * modules/lstat (EXTRA_DIST): Add lstat.h.
30200         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
30201         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
30202         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
30203         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
30204         * modules/memxor (EXTRA_DIST): Add memxor.h.
30205         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
30206         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
30207         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
30208         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
30209         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
30210         * modules/physmem (EXTRA_DIST): Add physmem.h.
30211         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
30212         * modules/posixver (EXTRA_DIST): Add posixver.h.
30213         * modules/quote (EXTRA_DIST): Add quote.h.
30214         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
30215         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
30216         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
30217         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
30218         regex_internal.h regexec.c.
30219         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
30220         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
30221         * modules/same (EXTRA_DIST): Add same.h.
30222         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
30223         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
30224         * modules/savedir (EXTRA_DIST): Add savedir.h.
30225         * modules/sha1 (EXTRA_DIST): Add sha1.h.
30226         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
30227         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
30228         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
30229         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
30230         * modules/strdup (EXTRA_DIST): Add strdup.h.
30231         * modules/strftime (EXTRA_DIST): Add strftime.h.
30232         * modules/strndup (EXTRA_DIST): Add strndup.h.
30233         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
30234         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
30235         * modules/time_r (EXTRA_DIST): Add time_r.h.
30236         * modules/timespec (EXTRA_DIST): Add timespec.h.
30237         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
30238         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
30239         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
30240         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
30241         * modules/userspec (EXTRA_DIST): Add userspec.h.
30242         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
30243         * modules/utimens (EXTRA_DIST): Add utimens.h.
30244         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
30245         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
30246         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
30247         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
30248         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
30249         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
30250         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
30251         * modules/yesno (EXTRA_DIST): Add yesno.h.
30252
30253 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
30254
30255         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
30256
30257         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
30258         * m4/dev-ino.m4, same-inode.m4: Remove.
30259
30260         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
30261         * m4/acl.m4 (AC_FUNC_ACL):
30262         * m4/backupfile.m4 (gl_BACKUPFILE):
30263         * m4/c-strtod.m4 (gl_C99_STRTOLD):
30264         * m4/canon-host.m4 (gl_CANON_HOST):
30265         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
30266         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
30267         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
30268         * m4/cloexec.m4 (gl_CLOEXEC):
30269         * m4/close-stream.m4 (gl_CLOSE_STREAM):
30270         * m4/closeout.m4 (gl_CLOSEOUT):
30271         * m4/dirfd.m4 (gl_FUNC_DIRFD):
30272         * m4/dirname.m4 (gl_DIRNAME):
30273         * m4/exclude.m4 (gl_EXCLUDE):
30274         * m4/exitfail.m4 (gl_EXITFAIL):
30275         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
30276         * m4/file-type.m4 (gl_FILE_TYPE):
30277         * m4/filemode.m4 (gl_FILEMODE):
30278         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
30279         * m4/fpending.m4 (gl_FUNC_FPENDING):
30280         * m4/fprintftime.m4 (gl_FPRINTFTIME):
30281         * m4/fts.m4 (gl_FUNC_FTS):
30282         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
30283         * m4/getdate.m4 (gl_GETDATE):
30284         * m4/gethrxtime.m4 (gl_GETHRXTIME):
30285         * m4/getpagesize.m4 (gl_GETPAGESIZE):
30286         * m4/getpass.m4 (gl_FUNC_GETPASS):
30287         * m4/gettime.m4 (gl_GETTIME):
30288         * m4/getugroups.m4 (gl_GETUGROUPS):
30289         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
30290         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
30291         * m4/hard-locale.m4 (gl_HARD_LOCALE):
30292         * m4/hash.m4 (gl_HASH):
30293         * m4/idcache.m4 (gl_IDCACHE):
30294         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
30295         * m4/lchown.m4 (gl_FUNC_LCHOWN):
30296         * m4/long-options.m4 (gl_LONG_OPTIONS):
30297         * m4/lstat.m4 (gl_FUNC_LSTAT):
30298         * m4/md5.m4 (gl_MD5):
30299         * m4/memcasecmp.m4 (gl_MEMCASECMP):
30300         * m4/memcoll.m4 (gl_MEMCOLL):
30301         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
30302         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
30303         * m4/memxor.m4 (gl_MEMXOR):
30304         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
30305         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
30306         * m4/modechange.m4 (gl_MODECHANGE):
30307         * m4/mountlist.m4 (gl_MOUNTLIST):
30308         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
30309         * m4/openat.m4 (gl_FUNC_OPENAT):
30310         * m4/pathmax.m4 (gl_PATHMAX):
30311         * m4/physmem.m4 (gl_PHYSMEM):
30312         * m4/posixtm.m4 (gl_POSIXTM):
30313         * m4/posixver.m4 (gl_POSIXVER):
30314         * m4/quote.m4 (gl_QUOTE):
30315         * m4/quotearg.m4 (gl_QUOTEARG):
30316         * m4/readtokens.m4 (gl_READTOKENS):
30317         * m4/readutmp.m4 (gl_READUTMP):
30318         * m4/regex.m4 (gl_REGEX):
30319         * m4/safe-read.m4 (gl_SAFE_READ):
30320         * m4/safe-write.m4 (gl_SAFE_WRITE):
30321         * m4/same.m4 (gl_SAME):
30322         * m4/save-cwd.m4 (gl_SAVE_CWD):
30323         * m4/savedir.m4 (gl_SAVEDIR):
30324         * m4/settime.m4 (gl_SETTIME):
30325         * m4/sha1.m4 (gl_SHA1):
30326         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
30327         * m4/stat-macros.m4 (gl_STAT_MACROS):
30328         * m4/stat-time.m4 (gl_STAT_TIME):
30329         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
30330         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
30331         * m4/strdup.m4 (gl_FUNC_STRDUP):
30332         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
30333         * m4/strndup.m4 (gl_FUNC_STRNDUP):
30334         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
30335         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
30336         * m4/time_r.m4 (gl_TIME_R):
30337         * m4/timespec.m4 (gl_TIMESPEC):
30338         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
30339         * m4/unlinkdir.m4 (gl_UNLINKDIR):
30340         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
30341         * m4/userspec.m4 (gl_USERSPEC):
30342         * m4/utimecmp.m4 (gl_UTIMECMP):
30343         * m4/utimens.m4 (gl_UTIMENS):
30344         * m4/xalloc.m4 (gl_XALLOC):
30345         * m4/xgetcwd.m4 (gl_XGETCWD):
30346         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
30347         * m4/xreadlink.m4 (gl_XREADLINK):
30348         * m4/xstrtod.m4 (gl_XSTRTOD):
30349         * m4/yesno.m4 (gl_YESNO):
30350         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
30351         to get the necessary .h files and whatnot.
30352
30353 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
30354             Bruno Haible  <bruno@clisp.org>
30355
30356         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
30357         /bin/sh understanding of '!' conditional negation.
30358
30359 2006-08-21  Jim Meyering  <jim@meyering.net>
30360
30361         * modules/openat (Depends-on): Really alphabetize.
30362
30363         * modules/acl (Depends-on): Add error and quote.
30364
30365         * check-module (find_included_lib_files): Add at-func.c to the
30366         ok-to-include-more-than-once white list.
30367
30368         * modules/openat (Depends-on): Add lstat.  Alphabetize.
30369
30370 2006-08-21  Bruno Haible  <bruno@clisp.org>
30371
30372         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30373         Emit a pkgdata_DATA variable only if some snippets add contents to it.
30374         Reported by Martin Lambers <marlam@marlam.de>.
30375
30376 2006-08-21  Bruno Haible  <bruno@clisp.org>
30377
30378         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
30379         specify an installation location, don't emit a noinst_LIBRARIES or
30380         noinst_LTLIBRARIES assignment.
30381
30382 2006-08-21  Bruno Haible  <bruno@clisp.org>
30383
30384         BeOS portability.
30385         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
30386         BeOS has mbrtowc() but no <wctype.h>.
30387
30388 2006-08-21  Bruno Haible  <bruno@clisp.org>
30389
30390         BeOS portability.
30391         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
30392         exist.
30393
30394 2006-08-21  Bruno Haible  <bruno@clisp.org>
30395
30396         BeOS portability.
30397         * lib/mbchar.h: Include <wctype.h> only if it exists.
30398
30399 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
30400
30401         Remove files that are no longer needed by their respective modules.
30402         * m4/obstack.m4: Remove.
30403         * m4/strerror_r.m4: Remove.
30404         * m4/uint32_t.m4: Remove.
30405         * m4/uintptr_t.m4: Remove.
30406         * m4/ullong_max.m4: Remove.
30407         * m4/xstrtoimax.m4: Remove.
30408         * m4/xstrtoumax.m4: Remove.
30409
30410         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
30411         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
30412         dependencies now capture this.
30413
30414         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
30415         Do not use AC_LIBSOURCES, since gnulib modules now do this.
30416         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
30417         * m4/human.m4 (gl_HUMAN): Likewise.
30418         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
30419         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
30420
30421         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
30422
30423         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
30424         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
30425         stdint.
30426         * m4/human.m4 (gl_HUMAN): Likewise.
30427         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
30428         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
30429         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
30430         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
30431         * m4/xstrtol (gl_XSTRTOL): Likewise.
30432
30433         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
30434         AC_TYPE_LONG_LONG_INT.
30435         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
30436         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
30437         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
30438         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
30439
30440         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
30441         on stdbool.
30442
30443         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
30444         (gl_PREREQ_XSTRTOUL): Remove.
30445
30446         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
30447
30448         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
30449         mode.
30450
30451 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
30452
30453         Add and change modules to make it easier for coreutils to use
30454         gnulib-tool.
30455         * modules/backupfile (Files): Remove m4/d-ino.m4.
30456         (Depends-on): Add d-ino.
30457         * modules/cycle-check (Depends-on): Add stdint.
30458         (lib_SOURCES): Add cycle-check.h.
30459         * modules/d-ino: New module.
30460         * modules/d-type: New module.
30461         * modules/error (Files): Remove m4/strerror_r.m4.
30462         * modules/filemode (Files): Add m4/st_dm_mode.m4.
30463         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
30464         m4/inttypes_h.m4, m4/uintmax_t.m4.
30465         (Depends-on): Add stdint.
30466         (lib_SOURCES): Add fsusage.h.
30467         * modules/getcwd (Files): Remove d-ino.m4.
30468         (Depends-on): Add d-ino.
30469         * modules/getndelim2 (Depends-on): Add stdint.
30470         * modules/glob (Files): Remove m4/d-type.m4.
30471         (Depends-on): Add d-type.
30472         * modules/host-os: New module.
30473         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
30474         m4/inttypes_h.m4, m4/uintmax_t.m4.
30475         * Depends-on: Add stdint.
30476         (lib_SOURCES): Add human.h.
30477         * modules/inttostr (Files): Remove m4/intmax_t.m4,
30478         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
30479         m4/uintmax_t.m4, m4/ulonglong.m4.
30480         (Depends-on): Add stdint.
30481         (EXTRA_DIST): Add inttostr.h.
30482         * modules/lchmod: New module.
30483         * modules/link-follow: New module.
30484         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
30485         (Depends-on): Add lchmod.
30486         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
30487         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
30488         (Depends-on): Add stdint.
30489         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
30490         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
30491         (Depends-on): Add stdint.
30492         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
30493         * modules/perl: New module.
30494         * modules/regex (Depends-on): Add stdint.
30495         * modules/rmdir-errno: New module.
30496         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
30497         m4/intmax_t.m4.
30498         (Depends-on): Add stdint.
30499         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
30500         m4/uintmax_t.m4.
30501         (Depends-on): Add stdint.
30502         * modules/unlink-busy: New module.
30503         * modules/utimecmp (Depends-on): Add stdint.
30504         * modules/uptime: New module.
30505         * modules/winsz-ioctl: New module.
30506         * modules/winsz-termios: New module.
30507         * modules/xnanosleep (Depends-on): Add nanosleep.
30508         * modules/ullong_max: Remove.
30509         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
30510         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
30511         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
30512         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
30513         (Depends-on): Add inttypes.
30514         (lib_SOURCES): Add xstrtol.h.
30515         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
30516         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
30517         * MODULES.html.sh: Move 'assert' into the assert section.
30518         Move 'dummy' into the linking section.
30519         Remove ullong_max.
30520         Add section for compatibility checks for POSIX:2001 functions,
30521         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
30522         winsz-ioctl, and winsz-termios into it.
30523         Add lchmod.
30524         Add top-level Misc section and put host-os, perl, and uptime
30525         into it.
30526
30527 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
30528
30529         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
30530         now assume the stdint module.  Do not include inttypes.h.
30531         * lib/fsusage.h: Likewise.
30532         * lib/getndelim2.c: Likewise.
30533         * lib/human.h: Likewise.
30534         * lib/inttostr.h: Likewise.
30535         * lib/obstack.c: Likewise.
30536         * lib/regex_internal.h: Likewise.
30537         * lib/tempname.c: Likewise.
30538         * lib/utimecmp.c: Likewise.
30539         * lib/xstrtol.h: Likewise.
30540
30541         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
30542
30543         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
30544         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
30545         * lib/xtime.h: Likewise.
30546
30547 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
30548
30549         * modules/openat (Files): Add lib/fchmodat.c.
30550         Fixes problem reported by Jay Youngman.
30551
30552 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
30553
30554         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
30555         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
30556
30557 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
30558             Bruno Haible  <bruno@clisp.org>
30559
30560         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
30561         and is a script that invokes bison. Tighten the code. Add comments.
30562
30563 2006-08-18  Jim Meyering  <jim@meyering.net>
30564
30565         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
30566         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
30567         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
30568         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
30569
30570 2006-08-18  Bruno Haible  <bruno@clisp.org>
30571
30572         * modules/bison-i18n: New file.
30573         * MODULES.html.sh (Internationalization functions): Add it.
30574
30575 2006-08-18  Bruno Haible  <bruno@clisp.org>
30576
30577         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
30578         sys/statvfs.h. When getmntinfo was found, check its declaration and
30579         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
30580
30581 2006-08-18  Bruno Haible  <bruno@clisp.org>
30582
30583         * m4/bison-i18n.m4: New file, from bison.
30584
30585 2006-08-18  Bruno Haible  <bruno@clisp.org>
30586
30587         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
30588         (ME_DUMMY): Treat "kernfs" as a dummy.
30589         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
30590
30591 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
30592
30593         Update from coreutils.
30594
30595         2006-08-15  Jim Meyering  <jim@meyering.net>
30596
30597         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
30598
30599         2006-01-17  Jim Meyering  <jim@meyering.net>
30600
30601         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
30602
30603         2006-01-11  Jim Meyering  <jim@meyering.net>
30604
30605         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
30606         Check for the lchmod function.
30607
30608 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
30609
30610         Update from coreutils.
30611
30612         * lib/__fpending.h: Add copyright notice.
30613         * lib/fprintftime.h: Likewise.
30614         * lib/savedir.c: Use (C) in copyright notice.
30615         * lib/savedir.h: Likewise.
30616
30617         2006-08-15  Jim Meyering  <jim@meyering.net>
30618
30619         * lib/at-func.c: New file, with the logic of all emulated at-functions.
30620         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
30621         in support of the EXPECTED_ERRNO macro.
30622         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
30623         definitions.  Instead, define the appropriate symbols and include
30624         "at-func.c".
30625         * lib/mkdirat.c (mkdirat): Likewise.
30626         * lib/fchmodat.c (fchmodat): Likewise.
30627         (ENOSYS): Remove definition.
30628         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
30629         it.  Don't include "unistd--.h" -- it wasn't ever used.
30630
30631         2006-01-17  Jim Meyering  <jim@meyering.net>
30632
30633         Rewrite fts.c not to change the current working directory,
30634         by using openat, fstatat, fdopendir, etc..
30635
30636         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
30637         (HAVE_OPENAT_SUPPORT): Define.
30638         [_LIBC] (fchdir): Don't undef or define; no longer used.
30639         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
30640         Now, this `function' always succeeds, and consumes its file descriptor
30641         parameter -- so callers must not close such FDs.  Update callers.
30642         (diropen_fd, opendirat, cwd_advance_fd): New functions.
30643         (diropen): Add parameter, SP.  Adjust all callers.
30644         Implement using diropen_fd, rather than open.
30645         (fts_open): Initialize new member, fts_cwd_fd.
30646         Remove fts_rft-setting code.
30647         (fts_close): Close fts_cwd_fd, if necessary.
30648         (__opendir2): Define in terms of opendir or opendirat,
30649         depending on whether the FST_NOCHDIR flag is set.
30650         (fts_build): Since fts_safe_changedir consumes its FD, and since
30651         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
30652         and close the dup'd file descriptor upon failure.
30653         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
30654         (fts_safe_changedir): Tweak semantics to reflect that this function
30655         now calls cwd_advance_fd and hence consumes its FD argument.
30656         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
30657         [struct FTS] (fts_rft): Remove now-unused member.
30658         [struct FTS] (fts_cycle.state): Improve comment.
30659
30660         * lib/openat.c (openat_needs_fchdir): New function.
30661         * lib/openat.h (openat_needs_fchdir): Declare it.
30662
30663 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
30664
30665         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
30666         Problem and fix reported by Pádraig Brady in
30667         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
30668
30669 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30670
30671         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
30672
30673 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30674
30675         * lib/memcoll.c (memcoll): Optimize for the common case where the
30676         arguments are bytewise equal.
30677
30678 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30679
30680         * doc/regexprops-generic.texi: Add a copyright notice.
30681
30682 2006-08-15  Bruno Haible  <bruno@clisp.org>
30683
30684         * modules/tmpdir (License): Change to LGPL.
30685
30686 2006-08-15  Bruno Haible  <bruno@clisp.org>
30687
30688         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
30689         module.
30690
30691 2006-08-14  Simon Josefsson  <jas@extundo.com>
30692
30693         * config/srclist.txt: Add gnupload.
30694
30695 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
30696
30697         Change copyright notice from LGPL 2 to GPL 2, since that's the
30698         standard form used in the gnulib repository.
30699         * tests/test-lock.c: Likewise.
30700         * tests/test-stdint.c: Likewise.
30701         * tests/test-tls.c: Likewise.
30702
30703         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
30704         prelude-manager.  User shorter URLs for GNU projects, without '?'.
30705         Add copyright notice.
30706
30707         * check-module: Add copyright notice.  Output a copyright
30708         notice if "--version" is specified.
30709         * modules/COPYING: New file.
30710         * tests/test-getaddrinfo.c: Add copyright notice.
30711         * tests/test-verify.c: Likewise.
30712
30713 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
30714
30715         Change copyright notice from LGPL 2 to GPL 2, since that's the
30716         standard form used in the gnulib repository.
30717         * lib/lock.c: LGPL -> GPL.
30718         * lib/lock.h: Likewise.
30719         * lib/strnlen1.c: Likewise.
30720         * lib/strnlen1.h: Likewise.
30721         * lib/tls.c: Likewise.
30722         * lib/tls.h: Likewise.
30723         * lib/tmpdir.c: Likewise.
30724
30725         * lib/TODO: Remove; this belongs only in coreutils.
30726
30727 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
30728
30729         Add copyright notices to long-enough files that lack them, since
30730         otherwise the files aren't clearly free.  Use the same notice that
30731         getdate.texi already uses.
30732         * doc/alloca-opt.texi: Add copyright notice.
30733         * doc/alloca.texi: Likewise.
30734         * doc/ctime.texi: Likewise.
30735         * doc/functions.texi: Likewise.
30736         * doc/gcd.texi: Likewise.
30737         * doc/gnulib-tool.texi: Likewise.
30738         * doc/inet_ntoa.texi: Likewise.
30739         * doc/visibility.texi: Likewise.
30740
30741         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
30742         * doc/quote.texi: Add copyright notice.
30743
30744         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
30745         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
30746         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
30747         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
30748         is now obsolete, and give a pointer to the Sun list.
30749         Add copyright notice.
30750
30751 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
30752
30753         * config/srclistvars.sh: Add copyright notice.
30754
30755 2006-08-14  Eric Blake  <ebb9@byu.net>
30756
30757         Import the following change from libc:
30758
30759         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
30760
30761         Upstream bug 2997.
30762         * lib/misc/error.c: Add space between program name and message if file
30763         name is missing.
30764
30765 2006-08-12  Karl Berry  <karl@gnu.org>
30766
30767         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
30768         remove, these originate in gnulib now.
30769
30770 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30771
30772         * doc/Makefile (standards.info standards.html standards.dvi):
30773         Also depend on make-stds.texi.
30774
30775 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
30776
30777         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
30778         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
30779
30780         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
30781         in wchar_t.  Problem reported by Eric Blake.
30782
30783         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
30784         LEN is smaller than SIZE.  Suggested by Bruno Haible.
30785         Also, help the compiler to keep LEN in a register.
30786
30787 2006-08-11  Eric Blake  <ebb9@byu.net>
30788
30789         * users.txt: Sort.  Add tar.
30790
30791 2006-08-11  Bruno Haible  <bruno@clisp.org>
30792
30793         * users.txt: New file.
30794
30795 2006-08-11  Bruno Haible  <bruno@clisp.org>
30796
30797         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
30798         before <wchar.h>. Needed for OSF/1 and BSD/OS.
30799
30800 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
30801
30802         * modules/snprintf (Depends-on): Remove minmax.
30803         (Maintainer): Add self and Bruno.
30804
30805 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
30806
30807         * lib/.cppi-disable: Add snprintf.h, socket_.h.
30808         * lib/snprintf.c: Include <errno.h> and <limits.h>.
30809         (EOVERFLOW): Define if the system does not.
30810         Do not include "minmax.h"; it wasn't used.
30811         (snprintf): Don't assume size_t promotes to an unsigned type.
30812         Fix bug when generated string was too long for the buffer: the
30813         buffer's contents are supposed to be the initial prefix of the
30814         output.  Don't assume vasnprintf returns EOVERFLOW if the size
30815         exceeds INT_MAX; do the check ourselves.
30816
30817         Import the following changes from libc:
30818
30819         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
30820
30821         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
30822         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
30823         set wc to the byte which couldn't be converted.
30824         (re_string_reconstruct): Don't clear valid_raw_len before calling
30825         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
30826         tip_context using re_string_context_at.
30827
30828         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
30829
30830         * lib/posix/regex.h: g++ still cannot handled [restrict].
30831
30832         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
30833
30834         * lib/posix/regex.h: Remove special handling for VMS.
30835
30836 2006-08-10  Jim Meyering  <jim@meyering.net>
30837
30838         * modules/same-inode: New module.
30839         * modules/dev-ino: New module.
30840         * modules/cycle-check: Depend on these modules, rather than simply
30841         including their .h files.
30842         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
30843         required via m4/cycle-check.m4.
30844         * modules/same: Depend on new same-inode module, rather than
30845         including same-inode.h.
30846         * modules/chdir-safer: New file.
30847
30848         * modules/chown (Depends-on): Add stat-macros.
30849
30850 2006-08-10  Jim Meyering  <jim@meyering.net>
30851
30852         * m4/cycle-check.m4: New file.
30853         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
30854         * m4/dev-ino.m4, m4/same-inode.m4: New files.
30855
30856 2006-08-10  Eric Blake  <ebb9@byu.net>
30857
30858         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
30859         in from original proposal.
30860
30861 2006-08-10  Eric Blake  <ebb9@byu.net>
30862         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
30863
30864         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
30865         namespace.
30866
30867 2006-08-10  Bruno Haible  <bruno@clisp.org>
30868
30869         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
30870         as well.
30871
30872 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30873
30874         Sync from coreutils.
30875
30876         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
30877
30878         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
30879         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
30880
30881 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30882
30883         * modules/restrict: Remove; no longer needed now that we assume
30884         Autoconf 2.59 or later.
30885         * MODULES.html.sh: Remove 'restrict'.
30886         * modules/argp (Depends-on): Remove 'restrict'.
30887         * modules/base64 (Depends-on): Likewise.
30888         * modules/gc (Depends-on): Likewise.
30889         * modules/getaddrinfo (Depends-on): Likewise.
30890         * modules/glob (Depends-on): Likewise.
30891         * modules/inet_ntop (Depends-on): Likewise.
30892         * modules/inet_pton (Depends-on): Likewise.
30893         * modules/memxor (Depends-on): Likewise.
30894         * modules/regex (Depends-on): Likewise.
30895         * modules/strtok_r (Depends-on): Likewise.
30896         * modules/time_r (Depends-on): Likewise.
30897
30898 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30899
30900         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
30901         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
30902         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
30903         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
30904         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
30905         * m4/memxor.m4 (gl_MEMXOR): Likewise.
30906         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
30907         gl_C_RESTRICT replaced by AC_C_RESTRICT.
30908
30909         Merge from coreutils.
30910         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
30911         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
30912         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
30913         * m4/time_r.m4 (gl_TIME_R): Likewise.
30914
30915 2006-08-09  Karl Berry  <karl@gnu.org>
30916
30917         * config/srclist.txt: no more gettext-tools, per Bruno.
30918
30919 2006-08-08  Eric Blake  <ebb9@byu.net>
30920
30921         * modules/verror: New module.
30922         * MODULES.html.sh: Document it.
30923
30924 2006-08-08  Eric Blake  <ebb9@byu.net>
30925
30926         * lib/verror.h, lib/verror.c: New files.
30927
30928 2006-08-08  Eric Blake  <ebb9@byu.net>
30929
30930         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
30931         verror_at_line output complies with GNU Coding Standards even when
30932         file is NULL.
30933
30934 2006-08-07  Bruno Haible  <bruno@clisp.org>
30935
30936         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
30937         versions of AIX.
30938         Reported by Ralf Wildenhues.
30939
30940 2006-08-07  Bruno Haible  <bruno@clisp.org>
30941
30942         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
30943         in an AC_DEFUN. Needed so that the autoconf snippets can use
30944         AC_REQUIRE.
30945
30946 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30947
30948         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30949         Initialize pkgdata_DATA.
30950         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
30951         overriding it.
30952
30953 2006-08-06  Eric Blake  <ebb9@byu.net>
30954
30955         * lib/error.h: Fold in some upstream changes from glibc.
30956         * lib/error.c: Likewise.
30957
30958 2006-08-04  Bruno Haible  <bruno@clisp.org>
30959
30960         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30961         Make the mostlyclean-local rule depend on mostlyclean-generic.
30962         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
30963
30964 2006-07-31  Bruno Haible  <bruno@clisp.org>
30965
30966         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
30967         <stdlib.h>, <string.h>.
30968
30969 2006-07-30  Bruno Haible  <bruno@clisp.org>
30970
30971         * modules/readlink (License): Change to LGPL.
30972
30973 2006-07-30  Bruno Haible  <bruno@clisp.org>
30974
30975         * modules/javaversion (Makefile.am): Distribute javaversion.java and
30976         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
30977         set PKGDATADIR to point to it.
30978
30979 2006-07-30  Bruno Haible  <bruno@clisp.org>
30980
30981         * modules/csharpexec (configure.ac): Comment out macro invocation.
30982         * modules/javaexec (configure.ac): Likewise.
30983         * modules/javacomp-script (configure.ac): Likewise.
30984
30985         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
30986
30987 2006-07-30  Bruno Haible  <bruno@clisp.org>
30988
30989         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
30990         linked-list.
30991
30992 2006-07-30  Bruno Haible  <bruno@clisp.org>
30993
30994         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
30995
30996 2006-07-30  Bruno Haible  <bruno@clisp.org>
30997
30998         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
30999         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
31000         get removed.
31001
31002 2006-07-29  Bruno Haible  <bruno@clisp.org>
31003
31004         Make it possible for gnulib-tool to work with locally modified or
31005         augmented gnulib repositories.
31006         * gnulib-tool (func_usage): Document --local-dir option.
31007         (local_gnulib_dir): New variable.
31008         Handle --local-dir option.
31009         (func_lookup_file): New function.
31010         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
31011         (func_get_description, func_get_filelist, func_get_description,
31012         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
31013         func_get_automake_snippet, func_get_include_directive,
31014         func_get_license, func_get_maintainer): Use func_lookup_file.
31015         (func_import, func_create_testdir): Use func_lookup_file.
31016
31017 2006-07-29  Bruno Haible  <bruno@clisp.org>
31018
31019         * modules/setenv (Depends-on): Add unistd.
31020
31021 2006-07-29  Bruno Haible  <bruno@clisp.org>
31022
31023         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
31024
31025 2006-07-29  Bruno Haible  <bruno@clisp.org>
31026
31027         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
31028
31029 2006-07-29  Bruno Haible  <bruno@clisp.org>
31030
31031         * gnulib-tool (import, update): If there is no Makefile.am, look at
31032         aclocal.m4, instead of bailing out.
31033
31034 2006-07-29  Bruno Haible  <bruno@clisp.org>
31035
31036         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
31037         Categorize the options by when they are useful.
31038
31039 2006-07-29  Bruno Haible  <bruno@clisp.org>
31040
31041         * gnulib-tool (func_usage): Document option --no-libtool.
31042         Handle option --no-libtool.
31043         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
31044         for changed semantics of $libtool variable.
31045         (func_import): Likewise. If libtool is not used, show this through
31046         an option --no-libtool.
31047         (func_create_testdir): Update.
31048
31049 2006-07-29  Bruno Haible  <bruno@clisp.org>
31050
31051         * gnulib-tool (func_import): Extend error message about missing
31052         --doc-base.
31053
31054 2006-07-29  Bruno Haible  <bruno@clisp.org>
31055
31056         * gnulib-tool (func_import): Don't create the $docbase directory if
31057         there is no file to store there.
31058
31059 2006-07-29  Bruno Haible  <bruno@clisp.org>
31060
31061         * gnulib-tool (autoconf_minversion): If a --dir option is given and
31062         relevant, look for configure.ac there, not in the current directory.
31063         Also use a simple search for AC_PREREQ, not "autoconf --trace".
31064
31065 2006-07-29  Bruno Haible  <bruno@clisp.org>
31066
31067         * gnulib-tool (SORT): New variable.
31068         (func_usage): Undocument --assume-autoconf option.
31069         Remove --assume-autoconf option handling.
31070         (autoconf_minversion): Determine from the contents of configure.ac.
31071         (func_import): Remove autoconf_minversion handling.
31072         Suggested by Eric Blake.
31073
31074 2006-07-29  Bruno Haible  <bruno@clisp.org>
31075
31076         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
31077
31078 2006-07-29  Bruno Haible  <bruno@clisp.org>
31079
31080         * config/srclist.txt (*setenv.[ch]): Remove rules.
31081
31082 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31083
31084         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
31085
31086 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31087
31088         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
31089         arpa/inet.h.
31090
31091 2006-07-28  Simon Josefsson  <jas@extundo.com>
31092
31093         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
31094         * modules/inet_pton (Depends-on): Likewise.
31095
31096 2006-07-28  Simon Josefsson  <jas@extundo.com>
31097
31098         * m4/netinet_in_h.m4: New file.
31099
31100 2006-07-28  Simon Josefsson  <jas@extundo.com>
31101
31102         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
31103         #include's.
31104
31105 2006-07-28  Simon Josefsson  <jas@extundo.com>
31106
31107         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
31108         #include's.
31109
31110 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
31111
31112         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
31113         setgid on directories only if they set these bits.
31114         * lib/modechange.h: Remove obsolete comment about masks.
31115
31116 2006-07-28  Eric Blake  <ebb9@byu.net>
31117
31118         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
31119         macro expansion.
31120
31121 2006-07-28  Bruno Haible  <bruno@clisp.org>
31122
31123         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
31124
31125 2006-07-28  Bruno Haible  <bruno@clisp.org>
31126
31127         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
31128
31129 2006-07-28  Bruno Haible  <bruno@clisp.org>
31130
31131         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
31132         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
31133         Define fallbacks.
31134         Avoids link error on FreeBSD 4.x.
31135         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
31136
31137         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
31138         encoding.
31139         * lib/mbswidth.c (iswcntrl): Likewise.
31140
31141 2006-07-27  Bruno Haible  <bruno@clisp.org>
31142
31143         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
31144         test.
31145
31146 2006-07-27  Bruno Haible  <bruno@clisp.org>
31147
31148         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
31149         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
31150         defined.
31151
31152 2006-07-26  Eric Blake  <ebb9@byu.net>
31153
31154         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
31155
31156 2006-07-26  Eric Blake  <ebb9@byu.net>
31157
31158         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
31159         like mingw that lack mkstemp.
31160         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
31161         avoid compilation warning on mingw.
31162
31163 2006-07-26  Bruno Haible  <bruno@clisp.org>
31164
31165         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
31166         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
31167         INT_FAST*_MIN, INTPTR_MIN.
31168
31169 2006-07-25  Bruno Haible  <bruno@clisp.org>
31170
31171         * modules/version-etc (Depends-on): Add stdarg.
31172
31173 2006-07-25  Bruno Haible  <bruno@clisp.org>
31174
31175         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
31176         complex commands.
31177
31178 2006-07-25  Bruno Haible  <bruno@clisp.org>
31179
31180         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
31181         defined in <stdarg.h> or config.h.
31182
31183 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
31184
31185         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
31186         (gl_STDIO_SAFER): Remove.
31187
31188 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
31189
31190         * MODULES.html.sh (File stream based Input/Output):
31191         Add fopen-safer, tmpfile-safer; remove stdio-safer.
31192         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
31193         * modules/fopen-safer, modules/tmpfile-safer: New files.
31194         * modules/stdio-safer: Remove.
31195
31196 2006-07-24  Bruno Haible  <bruno@clisp.org>
31197
31198         * modules/tmpdir: New file.
31199         * MODULES.html.sh (File system functions): Add it.
31200
31201 2006-07-24  Bruno Haible  <bruno@clisp.org>
31202
31203         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
31204         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
31205
31206 2006-07-24  Bruno Haible  <bruno@clisp.org>
31207
31208         * modules/clean-temp: New file.
31209
31210 2006-07-24  Bruno Haible  <bruno@clisp.org>
31211
31212         * m4/tmpdir.m4: New file, from GNU gettext.
31213
31214 2006-07-24  Bruno Haible  <bruno@clisp.org>
31215
31216         * lib/tmpdir.h: New file, from GNU gettext.
31217         * lib/tmpdir.c: New file, from GNU gettext.
31218
31219 2006-07-24  Bruno Haible  <bruno@clisp.org>
31220
31221         * lib/clean-temp.h: New file, from GNU gettext.
31222         * lib/clean-temp.c: New file, from GNU gettext.
31223
31224 2006-07-23  Eric Blake  <ebb9@byu.net>
31225
31226         * modules/stdio-safer (Files): Add tmpfile-safer.c.
31227         (Depends-on): Add binary-io.
31228
31229 2006-07-23  Eric Blake  <ebb9@byu.net>
31230
31231         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
31232
31233 2006-07-23  Eric Blake  <ebb9@byu.net>
31234
31235         * lib/tmpfile-safer.c: New file.
31236         * lib/stdio-safer.h (fopen_safer): Add prototype.
31237         * lib/stdio--.h (tmpfile): Make safer.
31238
31239 2006-07-23  Bruno Haible  <bruno@clisp.org>
31240
31241         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
31242         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
31243         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
31244         gl_linked_remove_at): Use it.
31245
31246 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
31247         and Simon Josefsson <jas@extundo.com>
31248
31249         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
31250
31251         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
31252
31253 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
31254
31255         * modules/close-stream: New file.
31256         * modules/closeout (Description): Make it clear that it exits
31257         with a diagnostic on error.
31258         (Depends-on): Add close-stream.  Remove fpending, stdbool.
31259         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
31260
31261 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
31262
31263         * m4/close-stream.m4: New file.
31264
31265 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
31266
31267         * lib/close-stream.c, lib/close-stream.h: New files.
31268
31269 2006-07-22  Bruno Haible  <bruno@clisp.org>
31270
31271         Merge from GNU gettext 0.15.
31272
31273         2006-05-01  Bruno Haible  <bruno@clisp.org>
31274
31275                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
31276
31277         2006-07-22  Bruno Haible  <bruno@clisp.org>
31278
31279                 * modules/javaversion: New file.
31280                 * MODULES.html.sh (Java): Add javaversion.
31281
31282         2006-03-12  Bruno Haible  <bruno@clisp.org>
31283
31284                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
31285
31286         2005-12-04  Bruno Haible  <bruno@clisp.org>
31287
31288                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
31289                 (untested).
31290
31291         2006-06-21  Bruno Haible  <bruno@clisp.org>
31292
31293                 Avoid warnings from recent versions of mcs.
31294                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
31295                 -o, -L, -r any more. Use options documented since mcs-1.0
31296                 instead. Similarly for -g.
31297
31298         2005-12-04  Bruno Haible  <bruno@clisp.org>
31299
31300                 * build-aux/csharpcomp.sh.in: Suffix for resources is
31301                 .resources, not .resource.
31302
31303         2005-07-09  Bruno Haible  <bruno@clisp.org>
31304
31305                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
31306                 add a .dll suffix.
31307                 Reported by Mark Junker <mjscod@gmx.de>.
31308
31309         2006-07-22  Bruno Haible  <bruno@clisp.org>
31310
31311                 * modules/gettext: Upgrade to gettext-0.15.
31312                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
31313                 m4/visibility.m4.
31314                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
31315
31316 2006-07-22  Bruno Haible  <bruno@clisp.org>
31317
31318         Merge from GNU gettext 0.15.
31319
31320         2006-03-25  Bruno Haible  <bruno@clisp.org>
31321
31322                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
31323
31324         2006-07-21  Bruno Haible  <bruno@clisp.org>
31325
31326                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
31327                 "1.1".
31328
31329         2006-05-09  Bruno Haible  <bruno@clisp.org>
31330
31331                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
31332                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
31333                 for the conftestver execution.
31334
31335         2006-05-01  Bruno Haible  <bruno@clisp.org>
31336
31337                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
31338                 optional target-version argument. Verify that the compiler
31339                 groks source of the specified source-version, or add -source
31340                 option as necessary. Verify that the compiler produces
31341                 bytecode in the specified target-version, or add -target and
31342                 -source options as necessary. Make the result of the test
31343                 available as variable CONF_JAVAC. Also log error output in
31344                 config.log.
31345
31346         2006-03-11  Bruno Haible  <bruno@clisp.org>
31347
31348                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
31349
31350         2006-05-09  Bruno Haible  <bruno@clisp.org>
31351
31352                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
31353                 CLASSPATH_SEPARATOR to a semicolon.
31354
31355         2006-03-12  Bruno Haible  <bruno@clisp.org>
31356
31357                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
31358                 available as variable CONF_JAVA, for subsequent autoconf
31359                 tests. Also log error output in config.log.
31360
31361         2006-07-19  Bruno Haible  <bruno@clisp.org>
31362
31363                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
31364                 that getline works on glibc2 systems. Needed to avoid trouble
31365                 in relocatable.c.
31366                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
31367
31368         2005-12-04  Bruno Haible  <bruno@clisp.org>
31369
31370                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
31371                 launcher (untested).
31372
31373         2005-12-04  Bruno Haible  <bruno@clisp.org>
31374
31375                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
31376
31377         2006-07-22  Bruno Haible  <bruno@clisp.org>
31378
31379                 * gettext.m4: Update from GNU gettext-0.15.
31380                 * nls.m4: Likewise.
31381                 * po.m4: Likewise.
31382                 * inttypes-pri.m4: Likewise.
31383                 * inttypes-h.m4: Renamed from inttypes.m4.
31384                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
31385
31386 2006-07-22  Bruno Haible  <bruno@clisp.org>
31387
31388         Merge from GNU gettext 0.15.
31389
31390         2005-07-05  Bruno Haible  <bruno@clisp.org>
31391
31392                 * printf-args.c (printf_fetchargs): Work around broken
31393                 definition of wint_t on mingw.
31394
31395         2005-02-12  Bruno Haible  <bruno@clisp.org>
31396
31397                 * xallocsa.h: Add extern "C" for C++.
31398
31399         2006-05-17  Bruno Haible  <bruno@clisp.org>
31400
31401                 Cygwin portability.
31402                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
31403
31404         2006-04-30  Bruno Haible  <bruno@clisp.org>
31405
31406                 * progreloc.c: Include <mach-o/dyld.h> if available.
31407                 (find_executable): Use _NSGetExecutablePath when possible.
31408
31409         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
31410
31411                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
31412                 function.
31413
31414         2005-12-29  Bruno Haible  <bruno@clisp.org>
31415
31416                 * progreloc.c (set_program_name_and_installdir): Fix
31417                 compilation error.
31418
31419         2005-12-04  Bruno Haible  <bruno@clisp.org>
31420
31421                 Cygwin portability.
31422                 * progreloc.c: Include <windows.h> also on Cygwin.
31423                 (find_executable): Add support for Cygwin.
31424                 (set_program_name_and_installdir): Handle also platforms with
31425                 nonempty EXEEXT.
31426
31427         2006-07-11  Bruno Haible  <bruno@clisp.org>
31428
31429                 * javacomp.c: Fix a comment.
31430                 Reported by Jim Meyering.
31431
31432         2006-04-30  Bruno Haible  <bruno@clisp.org>
31433
31434                 * javacomp.h (compile_java_class): Add source_version,
31435                 target_version arguments.
31436                 * javacomp.c: Rewritten to choose only a compiler that
31437                 respects the specified source_version and target_version.
31438
31439         2006-06-27  Bruno Haible  <bruno@clisp.org>
31440
31441                 Assume correct S_ISDIR macro.
31442                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
31443
31444         2006-07-22  Bruno Haible  <bruno@clisp.org>
31445
31446                 * javaversion.h: New file, from GNU gettext.
31447                 * javaversion.c: New file, from GNU gettext.
31448                 * javaversion.java: New file, from GNU gettext.
31449                 * javaversion.class: New file, from GNU gettext.
31450
31451         2006-05-17  Bruno Haible  <bruno@clisp.org>
31452
31453                 Cygwin portability.
31454                 * javaexec.c (execute_java_class): Test for jview program
31455                 also on Cygwin.
31456
31457         2006-04-09  Bruno Haible  <bruno@clisp.org>
31458
31459                 * fatal-signal.c: Don't include string.h.
31460                 (at_fatal_signal): Use a copying loop instead of memcpy.
31461
31462         2005-12-04  Bruno Haible  <bruno@clisp.org>
31463
31464                 * csharpexec.c: Add support for 'clix' launcher (untested).
31465                 (execute_csharp_using_sscli): New function.
31466                 (execute_csharp_program): Call it.
31467
31468         2006-06-21  Bruno Haible  <bruno@clisp.org>
31469
31470                 Avoid warnings from recent versions of mcs.
31471                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
31472                 -o, -L, -r any more. Use options documented since mcs-1.0
31473                 instead. Similarly for -g.
31474
31475         2005-07-09  Bruno Haible  <bruno@clisp.org>
31476
31477                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
31478                 add a .dll suffix.
31479                 Reported by Mark Junker <mjscod@gmx.de>.
31480
31481         2006-06-17  Bruno Haible  <bruno@clisp.org>
31482
31483                 * config.charset: Update for NetBSD 3.0.
31484
31485         2006-05-17  Bruno Haible  <bruno@clisp.org>
31486
31487                 Cygwin portability.
31488                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
31489
31490         2006-05-16  Bruno Haible  <bruno@clisp.org>
31491
31492                 * localcharset.c [CYGWIN]: Include <windows.h>.
31493                 (get_charset_aliases): For Cygwin, return the same CPxxx
31494                 aliases list as under WIN32.
31495                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
31496                 the environment variables. Fall back to GetACP().
31497
31498         2006-04-05  Bruno Haible  <bruno@clisp.org>
31499
31500                 * config.charset: Update Juan Manuel Guerrero's address.
31501
31502         2005-02-12  Bruno Haible  <bruno@clisp.org>
31503
31504                 * allocsa.h: Add extern "C" for C++.
31505
31506         2005-02-10  Bruno Haible  <bruno@clisp.org>
31507
31508                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
31509                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
31510
31511         2006-07-22  Bruno Haible  <bruno@clisp.org>
31512
31513                 * gettext.h: Update to GNU gettext-0.15.
31514
31515 2006-07-22  Bruno Haible  <bruno@clisp.org>
31516
31517         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
31518         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
31519         lib-prefix.m4, longdouble.m4, ssize_t.m4.
31520
31521 2006-07-21  Eric Blake  <ebb9@byu.net>
31522
31523         * modules/stdlib-safer: New file.
31524         * MODULES.html.sh (File stream based Input/Output): Add
31525         stdlib-safer.
31526
31527 2006-07-21  Eric Blake  <ebb9@byu.net>
31528
31529         * lib/stdlib-safer.h: New file from coreutils, required by
31530         stdlib--.h.
31531
31532 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
31533
31534         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
31535
31536 2006-07-20  Bruno Haible  <bruno@clisp.org>
31537
31538         * gnulib-tool: Recognize new option --assume-autoconf.
31539         (autoconf_minversion): New variable.
31540         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
31541
31542 2006-07-20  Bruno Haible  <bruno@clisp.org>
31543
31544         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
31545
31546 2006-07-19  Derek R. Price  <derek@ximbiot.com>
31547
31548         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
31549         Reindent and repaginate.
31550
31551 2006-07-19  Derek Price  <derek@ximbiot.com>
31552
31553         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
31554         Correct grammar.
31555
31556 2006-07-17  Bruno Haible  <bruno@clisp.org>
31557
31558         * modules/list: New file.
31559         * modules/array-list: New file.
31560         * modules/carray-list, modules/carray-list-tests: New files.
31561         * modules/linked-list, modules/linked-list-tests: New files.
31562         * modules/avltree-list, modules/avltree-list-tests: New files.
31563         * modules/rbtree-list, modules/rbtree-list-tests: New files.
31564         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
31565         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
31566         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
31567         * modules/oset: New file.
31568         * modules/array-oset: New file.
31569         * modules/avltree-oset, modules/avltree-oset-tests: New files.
31570         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
31571         * tests/test-carray_list.c: New file.
31572         * tests/test-linked_list.c: New file.
31573         * tests/test-avltree_list.c: New file.
31574         * tests/test-rbtree_list.c: New file.
31575         * tests/test-linkedhash_list.c: New file.
31576         * tests/test-avltreehash_list.c: New file.
31577         * tests/test-rbtreehash_list.c: New file.
31578         * tests/test-avltree_oset.c: New file.
31579         * tests/test-rbtree_oset.c: New file.
31580         * MODULES.html.sh (Container data structures): New section.
31581
31582 2006-07-17  Bruno Haible  <bruno@clisp.org>
31583
31584         * m4/gl_list.m4: New file.
31585
31586 2006-07-17  Bruno Haible  <bruno@clisp.org>
31587
31588         * lib/gl_list.h: New file.
31589         * lib/gl_list.c: New file.
31590         * lib/gl_array_list.h: New file.
31591         * lib/gl_array_list.c: New file.
31592         * lib/gl_carray_list.h: New file.
31593         * lib/gl_carray_list.c: New file.
31594         * lib/gl_linked_list.h: New file.
31595         * lib/gl_linked_list.c: New file.
31596         * lib/gl_anylinked_list1.h: New file.
31597         * lib/gl_anylinked_list2.h: New file.
31598         * lib/gl_avltree_list.h: New file.
31599         * lib/gl_avltree_list.c: New file.
31600         * lib/gl_anyavltree_list1.h: New file.
31601         * lib/gl_anyavltree_list2.h: New file.
31602         * lib/gl_rbtree_list.h: New file.
31603         * lib/gl_rbtree_list.c: New file.
31604         * lib/gl_anyrbtree_list1.h: New file.
31605         * lib/gl_anyrbtree_list2.h: New file.
31606         * lib/gl_anytree_list1.h: New file.
31607         * lib/gl_anytree_list2.h: New file.
31608         * lib/gl_linkedhash_list.h: New file.
31609         * lib/gl_linkedhash_list.c: New file.
31610         * lib/gl_anyhash_list1.h: New file.
31611         * lib/gl_anyhash_list2.h: New file.
31612         * lib/gl_avltreehash_list.h: New file.
31613         * lib/gl_avltreehash_list.c: New file.
31614         * lib/gl_rbtreehash_list.h: New file.
31615         * lib/gl_rbtreehash_list.c: New file.
31616         * lib/gl_anytreehash_list1.h: New file.
31617         * lib/gl_anytreehash_list2.h: New file.
31618
31619         * lib/gl_oset.h: New file.
31620         * lib/gl_oset.c: New file.
31621         * lib/gl_array_oset.h: New file.
31622         * lib/gl_array_oset.c: New file.
31623         * lib/gl_avltree_oset.h: New file.
31624         * lib/gl_avltree_oset.c: New file.
31625         * lib/gl_rbtree_oset.h: New file.
31626         * lib/gl_rbtree_oset.c: New file.
31627         * lib/gl_anytree_oset.h: New file.
31628
31629 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
31630
31631         * m4/mkancesdirs.m4: New file.
31632         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
31633         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
31634         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
31635         it.
31636
31637 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
31638
31639         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
31640         * lib/mkancesdirs.h: New files.
31641         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
31642         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
31643         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
31644         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
31645         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
31646         callers changed.  Revamp internals significantly, by not
31647         attempting to create directories that are temporarily more
31648         permissive than the final results.  Do not attempt to use
31649         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
31650         This removes some race conditions, fixes some bugs, and simplifies
31651         things.  Use new dirchownmod function to do owner and mode changes.
31652         * lib/mkdir-p.h: Likewise.
31653         * lib/modechange.c (octal_to_mode): New function.
31654         (struct mode_change): New member mentioned.
31655         (make_node_op_equals): New arg mentioned.  All callers changed.
31656         (mode_compile): Keep track of which mode bits the user has explicitly
31657         mentioned.
31658         (mode_adjust): New arg DIR, so that we implement the X op correctly.
31659         New arg PMODE_BITS, to keep track of which mode bits the user
31660         mentioned; it treats S_ISUID and S_ISGID speciall.
31661         All callers changed.
31662         * lib/modechange.h: Likewise.
31663
31664 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
31665
31666         * MODULES.html.sh: Add mkancestors.
31667         * modules/mkancesdirs: New module.
31668         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
31669         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
31670         The chdir-safer and afs files are now orphans; I'll remove them
31671         unless someone speaks up.
31672         Add lib/dirchownmod.c, lib/dirchownmod.h.
31673         (Depends-on): Remove alloca, chown, save-cwd, dirname.
31674         Add lchown, mkancesdirs.
31675         (Maintainer): Add self.
31676
31677 2006-07-15  Karl Berry  <karl@gnu.org>
31678
31679         * gnulib-tool: help message wording/arrangement.
31680
31681 2006-07-14  Simon Josefsson  <jas@extundo.com>
31682
31683         * doc/gnulib.texi (Libtool and Windows): New section.
31684
31685 2006-07-12  Simon Josefsson  <jas@extundo.com>
31686
31687         * modules/gendocs (License): Fix license, approved by Karl.
31688
31689 2006-07-12  Eric Blake  <ebb9@byu.net>
31690
31691         * MODULES.html.sh: Add gendocs.
31692
31693 2006-07-11  Eric Blake  <ebb9@byu.net>
31694
31695         * modules/fdl: New module, to install doc/fdl.texi.
31696         * MODULES.html.sh: Add new section for documentation modules.
31697         * gnulib-tool: Avoid space-tab.
31698         (--doc-base): New option, to manage files from doc.
31699
31700 2006-07-11  Eric Blake  <ebb9@byu.net>
31701
31702         * m4/absolute-header.m4: Fix comments to match recent change.
31703
31704 2006-07-11  Eric Blake  <ebb9@byu.net>
31705
31706         * gnulib-tool: List --doc-base before --tests-base.
31707
31708 2006-07-11  Derek R. Price  <derek@ximbiot.com>
31709
31710         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
31711
31712 2006-07-11  Bruno Haible  <bruno@clisp.org>
31713
31714         * README: Mention where to put documentation.
31715
31716 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31717
31718         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
31719
31720 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
31721
31722         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
31723         to stdint.m4.
31724
31725 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
31726
31727         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
31728         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
31729         "no/such/file/stdint.h" when there is no such file, so that
31730         the resulting C code can be parsed by dodgy compilers.
31731         Problems reported by Bob Proulx.
31732
31733 2006-07-10  Derek R. Price  <derek@ximbiot.com>
31734
31735         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
31736         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
31737         macros into the GNU _D_EXACT_NAMLEN.
31738         * lib/savedir.c:  Likewise.
31739         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
31740
31741 2006-07-10  Derek R. Price  <derek@ximbiot.com>
31742         and Paul Eggert  <eggert@cs.ucla.edu>
31743
31744         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
31745         * m4/savedir.m4:
31746         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
31747         macros into the GNU _D_EXACT_NAMLEN.
31748
31749 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
31750
31751         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
31752         around the absolute name, to work around a problem with the HP-UX
31753         11.23 native C compiler, reported by Bob Proulx.
31754
31755 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
31756
31757         * doc/maintain.texi, make-stds.texi: Sync from
31758         <http://savannah.gnu.org/projects/gnustandards>.
31759
31760 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
31761
31762         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
31763
31764 2006-07-09  Jim Meyering  <jim@meyering.net>
31765
31766         * m4/glob.m4: Remove a doubled word in a comment.
31767
31768 2006-07-09  Jim Meyering  <jim@meyering.net>
31769
31770         * lib/argp-pv.c: Remove a doubled word in a comment.
31771         * lib/check-version.c (check_version): Likewise.
31772         * lib/javacomp.c (compile_java_class): Likewise.
31773
31774 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
31775
31776         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
31777         for the benefit of people using Autoconf 2.60.  If you want to
31778         support older Autoconf versions you can copy m4/onceonly_2_57.m4
31779         (or m4/onceonly.m4, if pre-2.57) manually.
31780
31781 2006-07-08  Jim Meyering  <jim@meyering.net>
31782
31783         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
31784         comment.
31785         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
31786         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
31787         comment.
31788
31789 2006-07-08  Jim Meyering  <jim@meyering.net>
31790
31791         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
31792
31793 2006-07-07  Simon Josefsson  <jas@extundo.com>
31794
31795         * tests/test-crc.c: Change expected crc value, the test vector
31796         were probably computed using the old broken crc.c?
31797
31798 2006-07-06  Simon Josefsson  <jas@extundo.com>
31799
31800         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
31801         now the canonical place for the M4 file).
31802
31803         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
31804         from the sys_socket dependency now.
31805
31806         * modules/inet_pton (Files): Ditto.
31807
31808         * modules/inet_ntop (Files): Ditto.
31809
31810 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
31811
31812         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
31813         not gl_PREREQ_GETUSERSHELL.
31814
31815 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31816
31817         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
31818         with only one argument, for Autoconf 2.60.
31819         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
31820         expand to nothing, so add a shell command to avoid syntax error.
31821         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
31822
31823 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31824
31825         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
31826
31827 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
31828
31829         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
31830         no longer needed.  Check for isblank decl.
31831         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
31832         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
31833         of existence.
31834
31835 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
31836
31837         * lib/getloadavg.c: Use __VMS, not VMS.
31838         * lib/getopt.c: Likewise.
31839         * lib/getpagesize.h: Likewise.
31840         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
31841         and probably does not work.
31842
31843 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
31844
31845         * lib/.cppi-disable: Add wcwidth.
31846         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
31847         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
31848         (ISGRAPH): Remove.  All uses changed to isgraph.
31849         (FOLD) [!defined _LIBC]: Remove special case.
31850         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
31851         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
31852         HAVE_ISBLANK.
31853         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
31854         case.
31855
31856 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
31857
31858         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
31859         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
31860         brackets.  Other minor changes to suppress some compiler
31861         warnings.
31862
31863 2006-07-06  Derek R. Price  <derek@ximbiot.com>
31864         and Paul Eggert  <eggert@cs.ucla.edu>
31865
31866         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
31867         of invoking obsolescent AC_HEADER_DIRENT macro.
31868         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
31869         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
31870         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
31871         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
31872         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
31873         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
31874         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
31875         * m4/readdir.m4: Remove; no longer needed.
31876
31877 2006-07-06  Derek R. Price  <derek@ximbiot.com>
31878         and Paul Eggert  <eggert@cs.ucla.edu>
31879
31880         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
31881         Don't worry about this obsolete case any more.
31882         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
31883         directories.
31884         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
31885         worry about this obsolete case any more.
31886         * lib/fts.c: Likewise.
31887         * lib/getcwd.c: Likewise.
31888         * lib/glob.h: Likewise.
31889         * lib/savedir.c: Likewise.
31890
31891 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
31892
31893         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
31894         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
31895         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
31896         needed.
31897         All uses removed.
31898         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
31899         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
31900         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
31901         needed.
31902         * m4/getdate.m4 (gl_GETDATE): Likewise.
31903         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
31904         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
31905         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
31906         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
31907         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
31908         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
31909         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
31910         needed.
31911
31912 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
31913
31914         * lib/memcasecmp.c: Include <limits.h>.
31915         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
31916         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
31917         Don't assume isdigit succeeds only on '0' through '9'.
31918
31919 2006-07-05  Eric Blake  <ebb9@byu.net>
31920
31921         * modules/getaddrinfo (Depends-on): Add snprintf.
31922
31923 2006-07-05  Eric Blake  <ebb9@byu.net>
31924
31925         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
31926         to avoid 'header present but could not be compiled' on cygwin.
31927
31928 2006-07-05  Eric Blake  <ebb9@byu.net>
31929
31930         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
31931         missing from netdb.h.
31932         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
31933
31934 2006-07-05  Derek R. Price  <derek@ximbiot.com>
31935
31936         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
31937         no longer needed.
31938         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
31939         * m4/getdate.m4 (gl_GETDATE): Likewise.
31940         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
31941         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
31942         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
31943         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
31944         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
31945
31946 2006-07-05  Derek R. Price  <derek@ximbiot.com>
31947
31948         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
31949         All uses of is_space replaced by isspace.
31950         * lib/exit.h: Don't talk about STDC_HEADERS.
31951         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
31952         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
31953         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
31954         replaced by isprint etc.
31955         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
31956         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
31957         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
31958         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
31959         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
31960         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
31961
31962 2006-07-05  Bruno Haible  <bruno@clisp.org>
31963
31964         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
31965         the function exists, before testing against AIX.
31966         Reported by Martin Lambers <marlam@marlam.de>.
31967
31968 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
31969
31970         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
31971         From Mark D. Baushke.
31972
31973 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
31974
31975         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
31976         to the absolute name, not just one, to bypass Sun C 5.8's
31977         "warning: #include of /usr/include/... may be non-portable".
31978
31979 2006-07-04  Eric Blake  <ebb9@byu.net>
31980
31981         * modules/dirname-tests: New test module.
31982         * tests/test-dirname.c: New file, replacing dirname.c
31983         TEST_DIRNAME section that was recently deleted.
31984
31985 2006-07-04  Bruno Haible  <bruno@clisp.org>
31986
31987         Assume ANSI C header files and <ctype.h> functions.
31988         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
31989         (mbsnwidth): Use isprint, iscntrl instead.
31990
31991 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
31992
31993         Merge from coreutils.
31994         * MODULES.html.sh: Add xstrtold.
31995         * modules/xstrtold: New file.
31996         * modules/cycle-check (Files): Add lib/same-inode.h.
31997         * modules/dirname (Files): Add m4/double-slash-root.m4.
31998         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
31999         * modules/mkdir-p (Files): Add lib/same-inode.h.
32000         * modules/same (Files): Add lib/same-inode.h.
32001
32002 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
32003
32004         * m4/absolute-header.m4: Renamed from full-header-path.m4.
32005         This is to keep the terminology clean; POSIX talks about
32006         "absolute pathnames", not "full pathnames", but the GNU
32007         Coding Standards say to use "path" for something else;
32008         so use "absolute" to keep both sides happy.
32009         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
32010         Set gl_absolute_header, not gl_full_header_path.
32011         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
32012         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
32013         All uses changed.
32014
32015         Merge from coreutils.
32016
32017         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
32018
32019         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
32020         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
32021         want to require the building of c-strtod.o.
32022         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
32023         needs -lm directly.
32024         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
32025
32026         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
32027
32028         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
32029         --as-needed option if available.  Problem reported by Albert Chin in
32030         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
32031         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
32032         cc merely issues a bunch of annoying warnings for --as-needed
32033         (this problem was reported by Bob Proulx).  Also, try linking with
32034         -lm to detect a bug in binutils 2.16 (this problem was reported
32035         by Ralf Wildenhues).
32036
32037         2006-06-18  Jim Meyering  <jim@meyering.net>
32038
32039         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
32040         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
32041         macro.
32042         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
32043         also check for glibc-2.4's abort-inducing bug.
32044
32045         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
32046         Low-probability clean-up should be to use rmdir to get rid of
32047         the just-created directory, not unlink.
32048
32049         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
32050         configure fail, and request a bug report to inform us about it.
32051         Add a comment that, barring reports to the contrary, in 2007 we'll
32052         assume ftruncate is universally available.
32053
32054         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
32055
32056         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
32057
32058         2006-03-12  Jim Meyering  <jim@meyering.net>
32059
32060         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
32061         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
32062         * m4/same.m4 (gl_SAME): Likewise.
32063         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
32064
32065         2006-03-11  Eric Blake  <ebb9@byu.net>
32066
32067         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
32068         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
32069         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
32070         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
32071
32072 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
32073
32074         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
32075         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
32076         reported by Mark D. Baushke, one in
32077         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
32078
32079         Merge from coreutils.
32080
32081         * lib/.cppi-disable: Add stdint_.h.
32082         * lib/.cvsignore: Add stdint.h.
32083
32084         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
32085
32086         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
32087         both double and long double versions.
32088         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
32089         * lib/xstrtold.c: New file.
32090         * lib/xstrtod.h (xstrtold): New decl.
32091
32092         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
32093
32094         * lib/filemode.c (setst): Remove.
32095         (strmode): Rewrite to avoid setst.  This makes the code shorter,
32096         (arguably) clearer, and the generated code is a bit smaller on my
32097         Debian GNU/Linux stable x86 host.
32098
32099         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
32100
32101         * lib/filemode.c: Include "filemode.h" first, to test the interface.
32102         Assume that filemode.h includes sys/types.h and sys/stat.h.
32103         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
32104         (ftypelet): Reorder to put common cases first, for efficiency.
32105         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
32106         to do 'M'.
32107         (strmode): Renamed from mode_string, and now stores 12 bytes instead
32108         of 10, for compatibility with FreeBSD.  All callers changed.
32109         (filemodestring): Now stores 12 bytes instead of 10, and sets file
32110         types that can't be deduced solely from st_mode.  First arg is now a
32111         const pointer.
32112         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
32113         (strmode): Renamed from mode_string.
32114         (filemodestring): New decl.
32115         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
32116         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
32117         needed.
32118         (S_ISPORT, S_ISWHT): New macros, if not already defined.
32119
32120         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
32121
32122         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
32123         fsusage.h now does that.  Include fsusage.h first, to test interface.
32124         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
32125         at most one method (the old code could have generated decls that
32126         didn't conform to C89, not that this was ever exercised).
32127         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
32128
32129         2006-03-19  Jim Meyering  <jim@meyering.net>
32130
32131         Work even in a chroot where d_ino values for entries in "/"
32132         don't match the stat.st_ino values for the same names.
32133         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
32134         number, iterate through all entries again, using lstat instead.
32135         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
32136         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
32137
32138         * lib/getcwd.c (__getcwd): Clarify a comment.
32139         Use memcpy in place of a call to strcpy.
32140
32141         2006-03-12  Jim Meyering  <jim@meyering.net>
32142
32143         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
32144         matches that of the current directory (which we're about to chdir ".."
32145         out of), then save the dev-ino of the parent, instead.
32146
32147         * lib/same-inode.h (SAME_INODE): New file/macro.
32148         * lib/chdir-safer.c (SAME_INODE): Remove definition.
32149         Include "same-inode.h", instead.
32150         * lib/same.c: Likewise.
32151         * lib/cycle-check.h: Include "same-inode.h".
32152         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
32153         * lib/cycle-check.c (SAME_INODE): Remove definition.
32154         * lib/root-dev-ino.h: Include "same-inode.h".
32155
32156         2006-03-11  Eric Blake  <ebb9@byu.net>
32157
32158         * lib/same.c (same_name): s/base_name/last_component/
32159         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
32160         * lib/filenamecat.c (file_name_concat): Likewise.
32161
32162         2006-03-11  Eric Blake  <ebb9@byu.net>,
32163                     Paul Eggert  <eggert@cs.ucla.edu>
32164
32165         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
32166         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
32167         drive prefix.
32168         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
32169         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
32170         (last_component): New method.
32171         * lib/dirname.c (dir_len): Determine when drive letters need a
32172         subsequent slash.  Preserve // when it is special.
32173         (dir_name): Don't append dot when drive letter is absolute.
32174         [TEST_DIRNAME]: Move into a full-blown gnulib test.
32175         * lib/basename.c (base_name): New semantics - malloc the result.
32176         Preserve // when it is special.  Preserve relative files that look
32177         like drive letters.
32178         (base_len): Preserve // when it is special.
32179         (last_component): New method, similar to old base_name semantics.
32180         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
32181         base_name.  Strip redundant slashes from ///.
32182
32183 2006-07-03  Jim Meyering  <jim@meyering.net>
32184
32185         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
32186         macro is used before the first cycle_check call.
32187
32188 2006-07-03  Eric Blake  <ebb9@byu.net>
32189
32190         * modules/dirname (Depends-on): Add xstrndup.
32191
32192 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
32193
32194         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
32195         test cases, so that config.log is a bit easier to follow.
32196
32197 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
32198
32199         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
32200         both are 64 bits, since this seems to be the tradition, and this
32201         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
32202         we ever run into a host that prefers long long to long in this
32203         case, we'll need another configure-time test.  Problem reported by
32204         Jim Meyering.
32205
32206 2006-07-02  Eric Blake  <ebb9@byu.net>
32207
32208         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
32209
32210 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
32211
32212         * modules/inttypes (Depends-on): No longer depends on stdint.
32213         * modules/stdint (Description): Say more about assumptions.
32214         Say that the fast types might differ.  Say macros are used.
32215         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
32216         (Makefile.am): Revise list of substituted symbols to match
32217         new stdint.m4.
32218         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
32219         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
32220         * tests/test-stdint.c (verify_same_types)
32221         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
32222         the code conforms to C99/C89.
32223         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
32224         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
32225
32226 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
32227
32228         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
32229         but fix a bug, by requiring at least 64 bits.
32230         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
32231         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
32232         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
32233         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
32234
32235         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
32236         changes.  Make 2.59 a prerequisite.  Check and substitute for
32237         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
32238         inttypes.h.  Do not use special include files; just use the
32239         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
32240         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
32241         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
32242         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
32243         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
32244         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
32245         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
32246         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
32247         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
32248         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
32249         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
32250         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
32251         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
32252         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
32253         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
32254         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
32255         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
32256         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
32257         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
32258         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
32259         WINT_MAX.  Check for C99 conformance more strictly, by detecting
32260         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
32261         not check for things that C99 does not require, e.g., int8_t.  If
32262         a test isn't needed unless <stdint.h> isn't working, and is
32263         unlikely to be needed for any other reason, then don't do it
32264         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
32265         size_t, since we assume C89 freestanding at least.  Do not check
32266         for sig_atomic_t, wchar_t, or wint_t, since the code now does
32267         the right thing even if the types are not defined.  Instead use:
32268         (gl_STDINT_TYPE_PROPERTIES): New macro.
32269         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
32270         testing whether <sys/types.h> clashes, as Autoconf does this for
32271         us now.  All uses removed.
32272         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
32273         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
32274         (gl_CHECK_TYPE_SAME):
32275         Remove; no longer needed.
32276         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
32277         exists, since we'll return 0 anyway in that case.
32278         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
32279
32280 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
32281
32282         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
32283         possible collision with system files.
32284         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
32285         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
32286         WCHAR_MIN and WCHAR_MAX in this case.
32287         (<stddef.h>): Do not include; no longer needed.
32288         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
32289         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
32290         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
32291         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
32292         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
32293         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
32294         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
32295         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
32296         !defined(__c99))]: Include in this case too, since it's harmless
32297         now.
32298         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
32299         dangerous to do so.
32300         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
32301         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
32302         (_STDINT_MIN, _STDINT_MAX): New macros.
32303         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
32304         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
32305         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
32306         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
32307         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
32308         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
32309         macros, not typedefs; this simplifies things quite a bit.
32310         Use long int for all types narrower than int64_t.
32311         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
32312         Define in terms of long long int or int64_t or long int,
32313         not int64_t or int32_t.  This saves some compile-time testing.
32314         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
32315         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
32316         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
32317         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
32318         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
32319         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
32320         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
32321         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
32322         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
32323         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
32324         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
32325         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
32326         undef any previous version and define our own version, for
32327         simplicity and consistency with the new macros for types.
32328         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
32329         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
32330         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
32331         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
32332         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
32333         @WINT_T_SUFFIX@ to keep things simple here.
32334         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
32335         Simplify by assuming typical 8/16/32/64 host, since we're
32336         already doing that elsewhere anyway.
32337         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
32338         and assume long long int is 64 bits if available.  This
32339         speeds up 'configure'.
32340
32341 2006-07-01  Eric Blake  <ebb9@byu.net>
32342
32343         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
32344         Reported by Andreas Buening.
32345
32346 2006-07-01  Eric Blake  <ebb9@byu.net>
32347
32348         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
32349
32350 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
32351
32352         * lib/getaddrinfo.c: fixed typo
32353
32354 2006-06-29  Jim Meyering  <jim@meyering.net>
32355
32356         * modules/strftime (Maintainer): Add my name, since with the
32357         FPRINTFTIME changes strftime.c has forked from glibc.
32358
32359 2006-06-29  Eric Blake  <ebb9@byu.net>
32360
32361         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
32362
32363 2006-06-29  Eric Blake  <ebb9@byu.net>
32364
32365         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
32366
32367 2006-06-29  Eric Blake  <ebb9@byu.net>
32368
32369         * lib/stat_.h: New file.
32370
32371 2006-06-29  Eric Blake  <ebb9@byu.net>
32372
32373         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
32374         unused static function.
32375
32376 2006-06-29  Eric Blake  <ebb9@byu.net>
32377
32378         * doc/functions.texi (Function Portability): Document missing lstat
32379         on mingw.
32380
32381 2006-06-29  Eric Blake  <ebb9@byu.net>
32382
32383         * MODULES.html.sh: Add sys_stat.
32384         * modules/sys_stat: New module.
32385         * modules/mkstemp (Depends-on): Add sys_stat.
32386
32387 2006-06-29  Derek R. Price  <derek@ximbiot.com>
32388
32389         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
32390
32391 2006-06-29  Derek R. Price  <derek@ximbiot.com>
32392
32393         * m4/c-bs-a.m4: Removed.
32394
32395 2006-06-29  Derek R. Price  <derek@ximbiot.com>
32396
32397         * lib/strftime.c: Assume strftime() exists.
32398
32399 2006-06-29  Derek Price  <derek@ximbiot.com>
32400
32401         * modules/c-bs-a: Removed - \a is C89.
32402         * MODULES.html.sh: Remove c-bs-a.
32403
32404 2006-06-29  Bruno Haible  <bruno@clisp.org>
32405
32406         * modules/wcwidth (License): Change to LGPL.
32407
32408 2006-06-28  Simon Josefsson  <jas@extundo.com>
32409
32410         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
32411         on _WIN32.
32412
32413         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
32414         getnameinfo.
32415
32416 2006-06-28  Simon Josefsson  <jas@extundo.com>
32417
32418         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
32419
32420 2006-06-28  Simon Josefsson  <jas@extundo.com>
32421
32422         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
32423         functions there.  It will succeed on Windows XP, but on Windows
32424         2000 and (presumably) earlier, it will fail, and use the internal
32425         re-implementation.
32426         (use_win32_p): New function.
32427         (getaddrinfo): Use strtoul on servname, to support numeric ports.
32428         Support AI_NUMERICSERV to disable getservbyname.
32429         (getnameinfo): New function, only supports
32430         NI_NUMERICHOST|NI_NUMERICSERV for now.
32431
32432         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
32433         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
32434         getnameinfo.
32435
32436 2006-06-28  Eric Blake  <ebb9@byu.net>
32437
32438         * modules/wcwidth: New file.
32439         * modules/mbchar (Depends-on): Add wcwidth.
32440         * modules/mbswidth (Depends-on): Add wcwidth.
32441         * MODULES.html.sh: Add wcwidth.
32442
32443 2006-06-28  Eric Blake  <ebb9@byu.net>
32444
32445         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
32446         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
32447
32448 2006-06-28  Eric Blake  <ebb9@byu.net>
32449
32450         * lib/xvasprintf.h: Fix comments.
32451
32452 2006-06-28  Eric Blake  <ebb9@byu.net>
32453
32454         * lib/mbchar.h (wcwidth): Include wcwidth.h.
32455         * lib/mbswidth.c (wcwidth): Move from here...
32456         * lib/wcwidth.h: ...to this new file.
32457
32458 2006-06-28  Derek R. Price  <derek@ximbiot.com>
32459
32460         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
32461
32462         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
32463         it's obsolete.
32464         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
32465
32466 2006-06-28  Derek R. Price  <derek@ximbiot.com>
32467
32468         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
32469         Autoconf 2.60 says this stuff was obsolete.
32470
32471 2006-06-28  Bruno Haible  <bruno@clisp.org>
32472
32473         * modules/wcwidth (Files): Add m4/wchar_t.m4.
32474
32475 2006-06-28  Bruno Haible  <bruno@clisp.org>
32476
32477         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
32478         gt_TYPE_WCHAR_T.
32479
32480 2006-06-28  Bruno Haible  <bruno@clisp.org>
32481
32482         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
32483         declaration for wcwidth.
32484         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
32485
32486 2006-06-28  Bruno Haible  <bruno@clisp.org>
32487
32488         * lib/mkdtemp.c [MINGW]: Include <io.h>.
32489         (mkdir): Define using _mkdir.
32490
32491 2006-06-28  Bruno Haible  <bruno@clisp.org>
32492
32493         * lib/getaddrinfo.h: Fix POSIX URL.
32494         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
32495         _WIN32.
32496         (use_win32_p): Make static.
32497         (getaddrinfo): Reject service name if it is empty or does not consist
32498         solely of decimal digits, or if its value is > 65535.
32499         (getnameinfo): Remove useless casts.
32500
32501 2006-06-27  Simon Josefsson  <jas@extundo.com>
32502
32503         * modules/sys_select: New file, suggested by Bruno Haible, Paul
32504         Eggert and Martin Lambers.
32505
32506 2006-06-27  Simon Josefsson  <jas@extundo.com>
32507
32508         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
32509         Eggert and Martin Lambers.
32510
32511 2006-06-27  Bruno Haible  <bruno@clisp.org>
32512
32513         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
32514         result to 0, not to empty.
32515         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
32516
32517 2006-06-27  Bruno Haible  <bruno@clisp.org>
32518
32519         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
32520
32521 2006-06-26  Simon Josefsson  <jas@extundo.com>
32522
32523         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
32524         present.
32525
32526 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
32527
32528         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
32529         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
32530         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
32531
32532 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
32533
32534         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
32535
32536 2006-06-26  Bruno Haible  <bruno@clisp.org>
32537
32538         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
32539
32540 2006-06-26  Bruno Haible  <bruno@clisp.org>
32541
32542         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
32543
32544 2006-06-26  Bruno Haible  <bruno@clisp.org>
32545
32546         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
32547         SGI C compiler in pre-C99 mode.
32548         Suggested by Mark D. Baushke and Larry Jones.
32549
32550 2006-06-26  Bruno Haible  <bruno@clisp.org>
32551
32552         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
32553         WCHAR_MAX.
32554         Reported by Mark D. Baushke and Larry Jones.
32555
32556 2006-06-26  Bruno Haible  <bruno@clisp.org>
32557
32558         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
32559         in pre-C99 mode.
32560         Suggested by Mark D. Baushke and Larry Jones.
32561
32562 2006-06-23  Simon Josefsson  <jas@extundo.com>
32563             Bruno Haible  <bruno@clisp.org>
32564
32565         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
32566         Emit mostlyclean-local rule.
32567         (func_emit_tests_Makefile_am): Likewise.
32568         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
32569
32570 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
32571
32572         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
32573
32574 2006-06-23  Bruno Haible  <bruno@clisp.org>
32575
32576         * tests/test-stdint.c: Update to match ISO C 99 Technical
32577         Corrigendum 1.
32578
32579 2006-06-23  Bruno Haible  <bruno@clisp.org>
32580
32581         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
32582
32583 2006-06-23  Bruno Haible  <bruno@clisp.org>
32584
32585         * lib/stdint_.h: Treat IRIX like OpenBSD.
32586
32587 2006-06-23  Bruno Haible  <bruno@clisp.org>
32588
32589         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
32590         ISO C 99 Technical Corrigendum 1.
32591
32592 2006-06-22  Simon Josefsson  <jas@extundo.com>
32593
32594         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
32595         MinGW.
32596
32597 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
32598
32599         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
32600         needed.  Some compiler complained about some of them.  Problem reported
32601         by Larry Jones in
32602         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
32603
32604 2006-06-21  Simon Josefsson  <jas@extundo.com>
32605
32606         * tests/test-getaddrinfo.c: New file.
32607
32608         * modules/getaddrinfo-tests: New file.
32609
32610         * MODULES.html.sh: Add inet_pton.
32611
32612         * modules/inet_pton: New file.
32613
32614 2006-06-21  Simon Josefsson  <jas@extundo.com>
32615
32616         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
32617         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
32618         of using the (limited) gnulib implementation on Windows XP.
32619
32620         * m4/inet_pton.m4: New file.
32621
32622 2006-06-21  Simon Josefsson  <jas@extundo.com>
32623
32624         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
32625         variable.
32626
32627         * lib/socket_.h: Don't define WINVER.
32628
32629         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
32630         slightly modified to work in gnulib.
32631
32632 2006-06-21  Simon Josefsson  <jas@extundo.com>
32633
32634         * doc/gnulib.texi (Windows sockets): Add.
32635
32636 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
32637
32638         * lib/read-file.c (fread_file): Start with buffer allocation of
32639         0 bytes rather than 1 byte; this simplifies the code.
32640         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
32641         code to free buffer and save/restore errno.
32642         (internal_read_file): Remove unused local.
32643
32644 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
32645
32646         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
32647         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
32648         Problem reported by Denis Excoffier in
32649         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
32650
32651 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32652
32653         * modules/sys_socket, modules/socklen: Include sys/types since
32654         FreeBSD 4.x's sys/socket.h needs it.
32655
32656 2006-06-19  Simon Josefsson  <jas@extundo.com>
32657
32658         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
32659
32660 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
32661
32662         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
32663
32664 2006-06-19  Bruno Haible  <bruno@clisp.org>
32665
32666         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
32667         and FULL_PATH_INTTYPES_H in angle brackets.
32668         Reported by Mark D. Baushke <mdb@gnu.org>.
32669
32670 2006-06-17  Eric Blake  <ebb9@byu.net>
32671
32672         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
32673         errno.
32674
32675 2006-06-17  Bruno Haible  <bruno@clisp.org>
32676
32677         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
32678         <sys/inttypes.h>.
32679
32680 2006-06-17  Bruno Haible  <bruno@clisp.org>
32681
32682         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
32683         whether errno is declared. Assume <errno.h> declares errno.
32684
32685 2006-06-17  Bruno Haible  <bruno@clisp.org>
32686
32687         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
32688
32689 2006-06-17  Bruno Haible  <bruno@clisp.org>
32690
32691         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
32692         problem on Solaris 2.5.1.
32693
32694 2006-06-16  Eric Blake  <ebb9@byu.net>
32695
32696         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
32697         * lib/unicodeio.c [!defined errno]: Likewise.
32698         * lib/strtol.c [!defined errno]: Likewise.
32699         * lib/strtod.c [!defined errno]: Likewise.
32700
32701 2006-06-15  Eric Blake  <ebb9@byu.net>
32702
32703         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
32704
32705 2006-06-15  Eric Blake  <ebb9@byu.net>
32706
32707         * config/srclist.txt (ssize_t.m4): Lose sync.
32708
32709 2006-06-15  Bruno Haible  <bruno@clisp.org>
32710
32711         * modules/stdint (Files): Include m4/full-header-path.m4,
32712         m4/size_max.m4, m4/wchar_t.m4.
32713         (Makefile.am): Many more substitutions.
32714         * modules/stdint-tests: New file.
32715         * tests/test-stdint.c: New file.
32716
32717 2006-06-15  Bruno Haible  <bruno@clisp.org>
32718
32719         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
32720         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
32721         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
32722         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
32723         gl_CHECK_TYPE_SAME): New macros.
32724
32725 2006-06-15  Bruno Haible  <bruno@clisp.org>
32726
32727         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
32728
32729 2006-06-15  Bruno Haible  <bruno@clisp.org>
32730
32731         * lib/stdint_.h: Rewritten to be fully auto-configured.
32732         Fixes bug on HP-UX/IA64.
32733
32734 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
32735
32736         * lib/getdate.y (__attribute__): Don't define if already defined.
32737         Problem reported by Larry Jones.
32738         * lib/utimens.c (__attribute__): Likewise.
32739
32740 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
32741
32742         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
32743         reported by Andreas Schwab.
32744
32745 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32746             Bruno Haible  <bruno@clisp.org>
32747
32748         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
32749         check for the declaration of strnlen and a run test that exposes the
32750         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
32751         rpl_strndup.
32752
32753 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32754             Bruno Haible  <bruno@clisp.org>
32755
32756         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
32757
32758 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32759
32760         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
32761         compile test, for Tru64 4.0D.
32762
32763 2006-05-28  Karl Berry  <karl@gnu.org>
32764
32765         * config/srclist.txt (printf-args.c): lose sync.
32766
32767 2006-05-26  Martin Lambers  <marlam@marlam.de>
32768
32769         * lib/getpass.c: Updates the test for the native W32 API, and adds
32770         missing includes, thus fixing compilation warnings.
32771
32772 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
32773
32774         * lib/exclude.c (exclude_fnmatch): New function.
32775         (excluded_file_name): Call exclude_fnmatch.
32776         * lib/exclude.h (excluded_file_name): New prototype
32777
32778 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
32779
32780         * lib/tempname.c (small_open, large_open): New macros.
32781         (__open, __open64) [!_LIBC]: Remove.
32782         (__gen_tempname): Use small_open and large_open instead of __open
32783         and __open64.  This fixes a portability bug on HP-UX 11.11i
32784         reported by Simon Wing-Tang in
32785         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
32786
32787 2006-05-24  Bruno Haible  <bruno@clisp.org>
32788
32789         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
32790         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
32791         Reported by Thorsten Maerz <torte@netztorte.de> via
32792         Aaron Stone <aaron@serendipity.cx>.
32793
32794 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
32795
32796         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
32797         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
32798         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
32799         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
32800         not really conditional on the cache.
32801         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
32802
32803 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
32804
32805         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
32806         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
32807         (my_usleep): Don't mishandle maximum value.
32808
32809 2006-05-19  Jim Meyering  <jim@meyering.net>
32810
32811         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
32812
32813 2006-05-17  Bruno Haible  <bruno@clisp.org>
32814
32815         Cygwin portability.
32816         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
32817
32818 2006-05-17  Bruno Haible  <bruno@clisp.org>
32819
32820         * lib/stdint_.h: Fix recognition of Cygwin.
32821
32822 2006-05-15  Bruno Haible  <bruno@clisp.org>
32823
32824         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
32825         on libtool patch by Ralf Wildenhues.
32826
32827 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
32828
32829         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
32830         test for C99 conformance; (bool) 0.5 is an integer constant
32831         expression, but (bool) -0.5 is not.  Problem reported by Fedor
32832         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
32833
32834 2006-05-11  Simon Josefsson  <jas@extundo.com>
32835
32836         * m4/xvasprintf.m4: Fix obvious typo.
32837
32838 2006-05-11  Jim Meyering  <jim@meyering.net>
32839
32840         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
32841         James Lemley.
32842
32843 2006-05-10  Simon Josefsson  <jas@extundo.com>
32844
32845         * lib/md4.c: Typo fix, update copyright years.
32846         (K1, K2): Don't use L because it turn computations into 64-bit on
32847         64-bit platforms.
32848
32849 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
32850
32851         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
32852         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
32853         unwanted sign propagation, e.g., on hosts with 64-bit int.
32854         There still are some problems with reeelly weird theoretical hosts
32855         (e.g., 33-bit int) but it's not worth worrying about now.
32856         * lib/sha1.c (rol): Likewise.
32857         (K1, K2, K3, K4): Remove unnecessary L suffix.
32858
32859 2006-05-10  Bruno Haible  <bruno@clisp.org>
32860
32861         * lib/des.c: Cast to avoid warnings.
32862
32863 2006-05-09  Bruno Haible  <bruno@clisp.org>
32864
32865         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
32866         (Depends-on): Depend also on xsize, stdarg.
32867         (configure.ac): Add gl_XVASPRINTF.
32868
32869 2006-05-09  Bruno Haible  <bruno@clisp.org>
32870
32871         * m4/xvasprintf.m4: New file.
32872
32873 2006-05-09  Bruno Haible  <bruno@clisp.org>
32874
32875         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
32876         (EOVERFLOW): Define fallback value.
32877         (xstrcat): New function.
32878         (xvasprintf): Recognize the special case of a string concatenation.
32879
32880 2006-05-08  Eric Blake  <ebb9@byu.net>
32881
32882         * gnulib-tool (func_version): Base copyright year on CVS date.
32883         (func_emit_copyright_notice): New function.
32884         (func_emit_lib_Makefile_am): Use it.
32885         (func_emit_tests_Makefile_am): Likewise.
32886         (func_import): Likewise.
32887
32888 2006-05-08  Bruno Haible  <bruno@clisp.org>
32889
32890         * modules/stdarg: New file.
32891         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
32892
32893 2006-05-08  Bruno Haible  <bruno@clisp.org>
32894
32895         * m4/stdarg.m4: New file, from GNU gettext.
32896
32897 2006-05-08  Bruno Haible  <bruno@clisp.org>
32898
32899         * config/srclist.txt (build-aux/config.rpath): different from latest
32900         release.
32901
32902 2006-05-08  Bruno Haible  <bruno@clisp.org>
32903
32904         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
32905
32906 2006-05-05  Jim Meyering  <jim@meyering.net>
32907
32908         * m4/warning.m4: New file, derived from bison's file by the same name.
32909
32910 2006-05-03  Bruno Haible  <bruno@clisp.org>
32911
32912         * lib/stdint_.h: Shorter URL.
32913         * lib/inttypes.h: Likewise.
32914
32915 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
32916
32917         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
32918
32919 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
32920
32921         * lib/verify.h: Document the internals better.  Most of this change
32922         was written by Bruno Haible.
32923
32924 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
32925
32926         * doc/verify.texi: New file, partly based on a proposal by
32927         Bruno Haible.
32928
32929 2006-05-02  Bruno Haible  <bruno@clisp.org>
32930
32931         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
32932         test from here...
32933         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
32934
32935 2006-04-29  Bruno Haible  <bruno@clisp.org>
32936
32937         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
32938         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
32939
32940 2006-04-29  Bruno Haible  <bruno@clisp.org>
32941
32942         * gnulib-tool: Make --update option actually work.
32943
32944 2006-04-29  Bruno Haible  <bruno@clisp.org>
32945
32946         * doc/gcd.texi: New file.
32947         * doc/gnulib.texi: Include it.
32948
32949 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
32950
32951         * lib/getdate.y (get_date): When adding relative date, start with the
32952         initial time, not with the result of the first mktime call.
32953
32954 2006-04-25  Bruno Haible  <bruno@clisp.org>
32955
32956         * gnulib-tool (func_import): Output the include directives in three
32957         blocks, sorted separately.
32958         Reported by Ben Pfaff <blp@cs.stanford.edu>.
32959
32960 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
32961
32962         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
32963         to define main with arguments, for C++.  Reported by Eric Blake.
32964         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
32965         Prefer 'int main ()' to 'int main (void)', for C++.
32966         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
32967         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
32968         for 'main', for C99 and C++.
32969
32970 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
32971
32972         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
32973         Don't assume that exit status -1 is valid.
32974         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
32975         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
32976         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
32977         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
32978         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
32979         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
32980         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
32981         functions can be used without declaring them, or that you can
32982         exit with status -1.
32983         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
32984
32985 2006-04-24  Karl Berry  <karl@gnu.org>
32986
32987         * config/srclist.txt (longdouble.m4): sync lost.
32988
32989 2006-04-24  Eric Blake  <ebb9@byu.net>
32990
32991         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
32992
32993 2006-04-24  Bruno Haible  <bruno@clisp.org>
32994
32995         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
32996         poll() implementation in AIX.
32997         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32998
32999 2006-04-24  Bruno Haible  <bruno@clisp.org>
33000
33001         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
33002         assigned exactly once.
33003
33004 2006-04-23  Claudio Fontana  <claudio@gnu.org>
33005             Bruno Haible  <bruno@clisp.org>
33006
33007         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
33008         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
33009         for AM_CPPFLAGS.
33010
33011 2006-04-23  Bruno Haible  <bruno@clisp.org>
33012
33013         * modules/copy-file: Depend on unistd.
33014         * modules/execute: Likewise.
33015         * modules/fatal-signal: Likewise.
33016         * modules/findprog: Likewise.
33017         * modules/mkdtemp : Likewise.
33018         * modules/pipe: Likewise.
33019         * modules/wait-process: Likewise.
33020
33021 2006-04-23  Bruno Haible  <bruno@clisp.org>
33022
33023         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
33024         condition was already detected.
33025         Reported by Ben Pfaff <blp@cs.stanford.edu>.
33026
33027 2006-04-23  Bruno Haible  <bruno@clisp.org>
33028
33029         * lib/copy-file.c: Include <unistd.h> unconditionally.
33030         * lib/execute.c: Likewise.
33031         * lib/fatal-signal.c: Likewise.
33032         * lib/findprog.c: Likewise.
33033         * lib/mkdtemp.c: Likewise.
33034         * lib/pipe.h: Likewise.
33035         * lib/pipe.c: Likewise.
33036         * lib/wait-process.h: Likewise.
33037
33038 2006-04-23  Bruno Haible  <bruno@clisp.org>
33039
33040         * gnulib-tool (func_usage): Fix --import description. Document
33041         --update.
33042         (func_import): Create temporary file in a temporary directory, if
33043         --dry-run is specified. Silence errors from 'grep' when there are no
33044         m4 files in $m4dir.
33045         (func_create_testdir): Silence errors from 'grep' when there are no
33046         m4 files in $m4dir.
33047         Reported by Karl Berry <karl@freefriends.org>.
33048
33049 2006-04-20  Bruno Haible  <bruno@clisp.org>
33050
33051         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
33052         one argument, so that the code will be portable to Autoconf 2.60.
33053         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
33054         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
33055         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
33056
33057 2006-04-19  Derek Price  <derek@ximbiot.com>
33058             Eric Blake  <ebb9@byu.net>
33059
33060         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
33061         rather than "/full/path.h".  Update comment to match.  Shorten &
33062         generalize m4_translit call via AS_TR_CPP.
33063
33064 2006-04-19  Derek Price  <derek@ximbiot.com>
33065             Eric Blake  <ebb9@byu.net>
33066
33067         * lib/inttypes.h: Correct grammar in comment.
33068
33069 2006-04-18  Derek Price  <derek@ximbiot.com>
33070             Paul Eggert  <eggert@cs.ucla.edu>
33071
33072         * modules/inttypes: New file.
33073         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
33074
33075 2006-04-18  Derek Price  <derek@ximbiot.com>
33076             Paul Eggert  <eggert@cs.ucla.edu>
33077
33078         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
33079         New files.
33080
33081 2006-04-18  Derek Price  <derek@ximbiot.com>
33082             Paul Eggert  <eggert@cs.ucla.edu>
33083
33084         * lib/inttypes.h: New file.
33085         * lib/strtoimax.c: Assume <inttypes.h>.
33086
33087 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
33088
33089         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
33090         isn't mounted.  Problem reported by Kir Kolyshkin.
33091
33092 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
33093
33094         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
33095         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
33096         Derek R. Price.
33097         * lib/regex.h (RE_DUP_MAX): Update comment to match current
33098         implementation.
33099
33100 2006-04-12  Eric Blake  <ebb9@byu.net>
33101
33102         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
33103         is now done automatically by the corresponding Autoconf macro.
33104
33105 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
33106
33107         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
33108         time_r.h.
33109
33110 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
33111
33112         Merge regex changes from libc, removing some of our
33113         POSIX-conformance changes that were rejected and redoing them in a
33114         less-intrusive way.
33115
33116         * lib/regcomp.c (re_compile_internal, init_dfa):
33117         Length arg is now size_t, not Idx.  All uses changed.
33118         (peek_token): Forward decl now says internal_function.
33119         (__re_error_msgid, __re_error_msgid_idx):
33120         Now static rather than extern with attribute_hidden.
33121         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
33122         For some reason libc prefers K&R style defns for external functions.
33123         (regerror) [!defined _LIBC]: Likewise.
33124         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
33125         (seek_collating_symbol_entry, lookup_collation_sequence_value):
33126         (build_range_exp, build_collating_symbol):
33127         Use K&R-style defn.
33128         (re_compile_fastmap): Use '\0' to memset, not 0.
33129         (utf8_sb_map): Make the calculations more obvious.
33130         (init_dfa, parse_bracket_exp, build_charclass_op):
33131         Call calloc and cast result, as glibc does.
33132         (init_word_char, fetch_token, peek_token, peek_token_bracket):
33133         (build_range_exp, build_collating_symbol):
33134         Now internal functions.
33135
33136         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
33137
33138         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
33139         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
33140         Don't depend on VMS; depend on __VMS instead, for POSIX
33141         namespace cleanness.
33142         (regoff_t): Define to ssize_t, not long int.
33143
33144         Remove the REG_ macros named below.  Instead, make the old names
33145         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
33146         __USE_GNU_REGEX.
33147         (REG_BACKSLASH_ESCAPE_IN_LISTS):
33148         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
33149         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
33150         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
33151         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
33152         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
33153         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
33154         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
33155         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
33156         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
33157         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
33158         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
33159         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
33160         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
33161         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
33162         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
33163         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
33164         (REG_NREGS):
33165         Remove.  All uses replaced by the old RE_* names.
33166         (RE_BACKSLASH_ESCAPE_IN_LISTS):
33167         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
33168         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
33169         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
33170         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
33171         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
33172         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
33173         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
33174         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
33175         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
33176         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
33177         Don't bother having these macros be independent of each others'
33178         values, since they no longer exist in the POSIX name space.
33179
33180         Rename the following member names back to their old names,
33181         unless !__USE_GNU_REGEX.  All uses changed back.
33182         (buffer): Renamed from re_buffer.
33183         (allocated): Renamed from re_allocated.
33184         (used): Renamed from re_used.
33185         (syntax): Renamed from re_syntax.
33186         (fastmap): Renamed from re_fastmap.
33187         (translate): Renamed from re_translate.
33188         (can_be_null): Renamed from re_can_be_null.
33189         (regs_allocated): Renamed from re_regs_allocated.
33190         (fastmap_accurate): Renamed from re_fastmap_accurate.
33191         (no_sub): Renamed from re_no_sub.
33192         (not_bol): Renamed from re_not_bol.
33193         (not_eol): Renamed from re_not_eol.
33194         (newline_anchor): Renamed from re_newline_anchor.
33195         (num_regs): Renamed from rm_num_regs.
33196         (start): Renamed from rm_start.
33197         (end): Renamed from rm_end.
33198
33199         (free_state): Move up a bit.
33200
33201         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
33202         #define to be empty.
33203         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
33204         when that is what is intended.
33205         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
33206         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
33207         (MAX): New macro.
33208         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
33209         All uses changed back to re_malloc, etc.  It's now the caller's
33210         responsibility to check for overflow; all callers changed.
33211         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
33212         (re_x2nrealloc): Remove.
33213         (free_state): Remove decl.
33214
33215         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
33216         (re_set_registers, re_exec):
33217         Use K&R-style defn.
33218
33219         2006-01-31  Roland McGrath  <roland@redhat.com>
33220
33221         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
33222         Reported by Mike Frysinger <vapier@gentoo.org>.
33223
33224         2006-01-15  Andreas Jaeger  <aj@suse.de>
33225
33226         [BZ #1950]
33227         * lib/regex_internal.c (re_string_reconstruct): Adjust for
33228         build_wcs_upper_buffer change.
33229         (build_wcs_upper_buffer): Change return type.
33230
33231         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
33232
33233         * lib/regex_internal.h: Include <stdint.h> if available.
33234
33235         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
33236
33237         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
33238
33239         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
33240
33241         * lib/regcomp.c: Adjust for changed secondary hash function.
33242
33243         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
33244
33245         * lib/regex.h: Pretty printing.
33246         Clean up namespace a bit.
33247
33248         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
33249
33250         * lib/regexec.c (update_cur_sifted_state, check_arrival,
33251         check_arrival_add_next_nodes): Avoid using uninitialized variable.
33252
33253         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
33254                     Ulrich Drepper  <drepper@redhat.com>
33255
33256         [BZ #1302]
33257         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
33258         changed.
33259         (bitset_word_t): Renamed from bitset_word.  All uses changed.
33260
33261         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
33262
33263         [BZ #281]
33264         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
33265         * lib/regcomp.c: Remove unnecessary uses of
33266         unsigned RE_TRANSLATE_TYPE.
33267         * lib/regex_internal.h: Likewise.
33268         * lib/regex_internal.c: Likewise.
33269         * lib/regexec.c: Likewise.
33270         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
33271
33272         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
33273
33274         * lib/regexec.c (find_recover_state): Remove unnecessary
33275         initialization.
33276         (transit_state_bkref): Make DFA a const pointer.
33277         (get_subexp): Likewise.
33278         (check_arrival): Likewise.
33279         (update_cur_sifted_state): Likewise.
33280         (re_search_internal): Likewise.
33281         (prune_impossible_nodes): Likewise.
33282         (acquire_init_state_context): Likewise.
33283         (proceed_next_node): Likewise.
33284         (set_regs): Likewise.
33285         (free_fail_stack_return): Likewise.
33286         (check_arrival_expand_ecl): Mark DFA parameter as const.
33287         (check_arrival_expand_ecl_sub): Likewise.
33288         (check_subexp_limits): Likewise.
33289         (sub_epsilon_src_nodes):  Likewise.
33290         (add_epsilon_src_nodes):  Likewise.
33291         (merge_state_array): Likewise.
33292         (update_regs): Likewise.
33293         (build_trtable): Likewise.
33294         (sift_states_backward): Mark MCTX parameter as const.
33295         (build_sifted_states): Likewise.
33296         (update_cur_sifted_state): Likewise.
33297         (sift_states_mkref): Likewise.
33298         (check_arrival_expand_ecl): Mark eclosure as const.
33299         (check_dst_limits_calc_pos_1): Likewise.
33300         * lib/regex_internal.h (re_match_context_t): Make dfa a const
33301         pointer.
33302
33303         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
33304
33305         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
33306         (transit_state_sb): Likewise.
33307         (transit_state_mb): Likewise.
33308         (sift_states_iter_mb): Likewise.
33309         (check_arrival_add_next_nodes): Likewise.
33310         (check_node_accept_bytes): Change first parameter to pointer-to-const.
33311         [_LIBC] (re_search_2_stub): Use mempcpy.
33312
33313         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
33314         mbrtowc for very simple UTF-8 case.
33315
33316         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
33317         a pointer-to-const.
33318         (re_acquire_state_context): Likewise.
33319         * lib/regex_internal.h: Adjust prototypes.
33320
33321         * lib/regex.c: Prevent using C++ compilers.
33322
33323         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
33324         (re_acquire_state_context): Likewise.
33325
33326 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
33327
33328         * modules/regex (Depends-on): Add ssize_t.
33329
33330 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
33331
33332         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
33333         translation table.
33334
33335 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
33336
33337         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
33338
33339 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
33340             Bruno Haible  <bruno@clisp.org>
33341
33342         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
33343         <sys/types.h> and <inttypes.h>.
33344
33345 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33346
33347         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
33348         `__error_t_defined', so argp.h will not typedef the former.
33349
33350 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
33351
33352         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
33353         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
33354         glibc names.  Even if glibc is changed to conform to POSIX, the
33355         traditional names will be available anyway, since regex depends on
33356         the extensions module.  Also, fix a longstanding typo in the
33357         implementation of Spencer ERE test #75 from grep 2.3.  Problems
33358         reported by Emanuele Giaquinta.  Also, change sense of cached
33359         variable, so that the message makes sense.
33360
33361 2006-03-24  Simon Josefsson  <jas@extundo.com>
33362
33363         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
33364         including some doc fixes.
33365         (base64_encode_alloc): Fix +1 bug on allocation failures.
33366
33367 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33368
33369         * lib/base64.c (base64_encode): Do not read past end of array with
33370         unsanitized input on systems with CHAR_BIT > 8.
33371
33372 2006-03-24  Eric Blake  <ebb9@byu.net>
33373
33374         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
33375
33376 2006-03-22  Karl Berry  <karl@gnu.org>
33377
33378         * config/srclist.txt (*setenv.[ch]): get from coreutils.
33379         * config/srclistvars.sh (COREUTILS): new var.
33380
33381 2006-03-17  Jim Meyering  <jim@meyering.net>
33382
33383         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
33384         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
33385
33386 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
33387
33388         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
33389         no longer needs it.  Instead, check that regoff_t is as least
33390         as wide as ptrdiff_t.
33391
33392         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
33393         so that our regex.h stays compatible with the installed regex.
33394         This is helpful for installers who configure --without-included-regex.
33395         Problem reported by Emanuele Giaquinta.
33396
33397 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
33398
33399         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
33400         Typedef to long int, not to off_, as POSIX will likely change
33401         in that direction.
33402
33403 2006-03-15  Eric Blake  <ebb9@byu.net>
33404
33405         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
33406
33407 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
33408
33409         * lib/argp-help.c (validate_uparams): Fix typo
33410         * lib/argp-parse.c (argp_default_options): Consistently begin help
33411         messages with a lowercase letter.
33412
33413 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
33414
33415         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
33416         overrun buffers and shouldn't be used (much as gets shouldn't be
33417         used).
33418         * lib/time_r.c (asctime_r, ctime_r): Likewise.
33419
33420 2006-03-08  Simon Josefsson  <jas@extundo.com>
33421
33422         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
33423         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
33424
33425 2006-03-08  Simon Josefsson  <jas@extundo.com>
33426
33427         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
33428         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
33429
33430 2006-03-08  Simon Josefsson  <jas@extundo.com>
33431
33432         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
33433         signal that configure disabled the device.
33434
33435 2006-03-08  Simon Josefsson  <jas@extundo.com>
33436
33437         * build-aux/maint.mk: Fix refresh-po, to handle no translated
33438         languages.
33439
33440 2006-03-07  Simon Josefsson  <jas@extundo.com>
33441
33442         * modules/getopt (Depends-on): Add unistd.
33443
33444         * modules/unistd: New file.
33445
33446 2006-03-07  Simon Josefsson  <jas@extundo.com>
33447
33448         * modules/gc-random: New file.
33449
33450 2006-03-07  Simon Josefsson  <jas@extundo.com>
33451
33452         * m4/unistd_h.m4: New file.
33453
33454 2006-03-07  Simon Josefsson  <jas@extundo.com>
33455
33456         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
33457         test to be side-effect free by storing the result in the cache
33458         variable gl_cv_lib_readline, and moving the assignment of
33459         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
33460         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
33461
33462 2006-03-07  Simon Josefsson  <jas@extundo.com>
33463
33464         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
33465         error on missing devices (the functions will return an error).
33466
33467         * m4/gc.m4: Move random stuff to gc-random.m4
33468
33469 2006-03-07  Simon Josefsson  <jas@extundo.com>
33470
33471         * lib/unistd_.h: New file.
33472
33473 2006-03-07  Simon Josefsson  <jas@extundo.com>
33474
33475         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
33476
33477 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
33478
33479         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
33480         Problem reported by Juan Manuel Guerrero.
33481
33482 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
33483
33484         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
33485         the unistd module.
33486         * lib/getlogin_r.c: Likewise.
33487         * lib/getlogin_r.h: Likewise.
33488         * lib/glob.c: Likewise.
33489         * lib/pagealign_alloc.c: Likewise.
33490         * lib/unistd_.h: Remove; no longer needed.
33491
33492 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
33493
33494         * MODULES.html.sh (Support for systems lacking POSIX:2001):
33495         Add unistd.
33496         * modules/c-stack (Depends-on): Add unistd.
33497         * modules/getlogin_r: Likewise.
33498         * modules/glob: Likewise.
33499         * modules/pagealign_alloc: Likewise.
33500         * modules/unistd (Files): Remove lib/unistd_.h.
33501         (EXTRA_DIST): Remove.
33502         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
33503         need unistd_.h.
33504         (MOSTLYCLEANFILES): Remove unistd.h-t.
33505
33506 2006-03-03  Simon Josefsson  <jas@extundo.com>
33507
33508         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
33509
33510 2006-03-03  Simon Josefsson  <jas@extundo.com>
33511
33512         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
33513         libidn and bison.
33514
33515 2006-03-03  Simon Josefsson  <jas@extundo.com>
33516
33517         * build-aux/maint.mk: Add indent target.
33518
33519 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
33520
33521         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
33522         our replacement poll.h in any case, to avoid a differing
33523         declaration from a system header.  Seen on AIX.
33524
33525 2006-03-01  Simon Josefsson  <jas@extundo.com>
33526
33527         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
33528         <kasal@ucw.cz>.
33529
33530 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
33531
33532         * modules/gettime (Depends-on): Add extensions module.
33533         * modules/nanosleep (Depends-on): Likewise.
33534         * modules/settime (Depends-on): Likewise.
33535
33536 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
33537
33538         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
33539         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
33540         pedantically.
33541         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
33542         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
33543
33544         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
33545         not "==".  Reported by Ralf Wildenhues.
33546
33547 2006-03-01  Karl Berry  <karl@gnu.org>
33548
33549         * doc/Copyright/request-*: new files, synced from gnuorg.
33550
33551 2006-03-01  Karl Berry  <karl@gnu.org>
33552
33553         * config/srclist.txt (Copyright/*): new entries.
33554
33555 2006-02-28  Simon Josefsson  <jas@extundo.com>
33556
33557         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
33558
33559 2006-02-27  Simon Josefsson  <jas@extundo.com>
33560
33561         * lib/base64.h: Indent #define's.  From Jim Meyering
33562         <jim@meyering.net>.
33563
33564 2006-02-27  Jim Meyering  <jim@meyering.net>
33565
33566         Revert the change of 2006-02-24, so these files can continue
33567         to be sync'd from gettext.
33568         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
33569         of `config.h'.
33570
33571 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
33572
33573         * modules/intprops: New file.
33574         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
33575         Add intprops.
33576         * modules/getloadavg (Files): Remove lib/intprops.h.
33577         (Depends-on): Add intprops.
33578         * modules/human: Likewise.
33579         * modules/inttostr: Likewise.
33580         * modules/openat: Likewise.
33581         * modules/sig2str: Likewise.
33582         * modules/userspec: Likewise.
33583         * modules/utimecmp: Likewise.
33584         * modules/xnanosleep: Likewise.
33585         * modules/xstrtol: Likewise.
33586
33587 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
33588
33589         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
33590         * modules/lock-tests (TESTS): Use $(EXEEXT).
33591         * modules/tls-tests: Likewise.
33592         * modules/argp-tests: Likewise.
33593         (check_PROGRAMS): New var, replacing...
33594         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
33595
33596 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33597
33598         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
33599         `config.h'.
33600
33601 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
33602
33603         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
33604
33605 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33606
33607         Sync from coreutils.
33608         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
33609         gl_CHDIR_SAFER.
33610
33611 2006-02-22  Jim Meyering  <jim@meyering.net>
33612
33613         Sync from coreutils.
33614         * m4/chdir-safer.m4: New file.
33615
33616 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
33617
33618         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
33619         AT_FDCWD exceeds INT_MAX.
33620         * lib/openat.h (AT_FDCWD): Likewise.
33621
33622 2006-02-17  Eric Blake  <address@hidden>
33623
33624         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
33625
33626 2006-02-16  Simon Josefsson  <jas@extundo.com>
33627
33628         * modules/getaddrinfo (Depends-on): Add sys_socket.
33629
33630 2006-02-15  Simon Josefsson  <jas@extundo.com>
33631
33632         * build-aux/maint.mk: Add dsyntax-check rule.
33633
33634 2006-02-15  Eric Blake  <ebb9@byu.net>
33635
33636         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
33637         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
33638         'present but cannot compile' warnings on cygwin.
33639         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
33640         use ws2tcpip.h if sys/socket.h works.
33641         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
33642         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
33643
33644 2006-02-14  Simon Josefsson  <jas@extundo.com>
33645
33646         * modules/maintainer-makefile (Files): Rename.
33647
33648         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
33649         and (the local) Makefile.cfg to maint-cfg.mk.
33650
33651         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
33652         to the latter.
33653
33654         * modules/maintainer-makefile: New module.
33655
33656         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
33657         severaly stripped to make it possible to build it up from scratch
33658         with reliable tests.
33659
33660         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
33661         fixes to permit overriding the default actions when configure and
33662         makefile are not available.
33663
33664 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
33665
33666         Sync from coreutils.
33667         * modules/lstat (Depends-on): Don't depend on xalloc.
33668         (License): Change from GPL to LGPL, since this is now simply a
33669         replacement for a libc function.
33670
33671 2006-02-14  Jim Meyering  <jim@meyering.net>
33672
33673         Sync from coreutils.
33674
33675         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
33676         failure on deficient systems, and simplify gnulib lgpl dependencies.
33677         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
33678         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
33679
33680         * lib/xalloc-die.c: Remove unused definition of N_.
33681
33682 2006-02-14  Jim Meyering  <jim@meyering.net>
33683
33684         Sync from coreutils.
33685         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
33686         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
33687         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
33688         double-quote uses of that variable, to accommodate the rare case in
33689         which getmntent is available in none of the libraries checked.  This
33690         happens at least on FreeBSD 5.0.
33691
33692 2006-02-13  Simon Josefsson  <jas@extundo.com>
33693
33694         * gnulib-tool (Usage): Fix --import, from
33695         karl@freefriends.org (Karl Berry).
33696
33697 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
33698
33699         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
33700
33701 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
33702
33703         * lib/argp-namefrob.h: Restore changes accidentally lost during the
33704         "autoupdate" on 2005-12-12.
33705
33706 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
33707
33708         * modules/closeout (Depends-on): Remove atexit.
33709
33710 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
33711
33712         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
33713         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
33714
33715 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
33716
33717         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
33718         __EXTENSIONS__ if this causes compilation to fail.  Problem
33719         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
33720         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
33721
33722 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
33723
33724         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
33725         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
33726         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
33727         All uses changed.
33728
33729 2006-01-26  Simon Josefsson  <jas@extundo.com>
33730
33731         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
33732         prototype is visible on mingw32.
33733
33734         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
33735         for mingw32.
33736
33737         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
33738         mingw32).
33739
33740 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
33741
33742         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
33743         attempt to open for write; this always fails, at least on POSIX
33744         hosts.  This reinstates the 2006-01-09 change, which was
33745         inadvertently removed.
33746
33747 2006-01-26  Bruno Haible  <bruno@clisp.org>
33748
33749         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
33750         Reported by Paul Eggert.
33751
33752 2006-01-26  Bruno Haible  <bruno@clisp.org>
33753             Paul Eggert  <eggert@cs.ucla.edu>
33754
33755         * lib/stdbool_.h (_Bool)
33756         [(! (defined __cplusplus || defined __BEOS__)
33757           && !defined __GNUC__
33758           && !(defined __HP_cc || defined __xlc__
33759                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
33760                || defined __sgi))]:
33761         #define to signed char in these cases too; this simplifies
33762         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
33763         etc., separately) and makes it more conservative.
33764
33765 2006-01-25  Simon Josefsson  <jas@extundo.com>
33766
33767         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
33768         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
33769         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
33770
33771 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
33772
33773         * lib/argp-namefrob.h: Bugfix. Remove stray #
33774
33775 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
33776
33777         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
33778         so that we test the test.
33779         Check for yet another HP-UX cc bug involving *bool |= bool.
33780
33781 2006-01-25  Karl Berry  <karl@gnu.org>
33782
33783         * config/srclist.txt (vasnprintf.c): sync lost.
33784
33785 2006-01-25  Jim Meyering  <jim@meyering.net>
33786
33787         Sync from the stable (b5) branch of coreutils:
33788
33789         * lib/fts.c (fts_children): Don't let close() clobber errno from
33790         failed fchdir().
33791
33792         * lib/fts.c (fts_stat): When following a symlink-to-directory,
33793         don't necessarily interpret stat-fails+lstat-succeeds as indicating
33794         a dangling symlink.  That can also happen at least for ELOOP.
33795         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
33796         FYI, this bug predates the inclusion of fts.c in coreutils.
33797
33798         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
33799         in their own block, so pre-c99 compilers don't object.
33800
33801         Avoid the double-free (first in fts_read, second in fts_close) that
33802         would occur when an `active' directory is made inaccessible (e.g.,
33803         via chmod a-x) during a traversal.
33804         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
33805         before returning.  Reproduce this failure by
33806         mkdir -p a/b; cd a; chmod a-x . b
33807         Reported by Stavros Passas.
33808
33809 2006-01-25  Jim Meyering  <jim@meyering.net>
33810
33811         * lib/fileblocks.c: Remove more useless parentheses.
33812         * lib/readutmp.h: Likewise.
33813
33814 2006-01-25  Bruno Haible  <bruno@clisp.org>
33815
33816         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
33817         warnings.
33818         Reported by Paul Eggert.
33819
33820 2006-01-25  Bruno Haible  <bruno@clisp.org>
33821
33822         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
33823         rid of a trap command. For Solaris sh.
33824         Reported by Mark D. Baushke <mdb@gnu.org>.
33825
33826 2006-01-24  Simon Josefsson  <jas@extundo.com>
33827
33828         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
33829         Bruno.
33830
33831 2006-01-24  Karl Berry  <karl@gnu.org>
33832
33833         * config/srclist.txt (argp-namefrob.h): sync lost.
33834
33835 2006-01-24  Jim Meyering  <jim@meyering.net>
33836
33837         * modules/openat (Files): Add lib/intprops.h.
33838         From Mark D. Baushke.
33839
33840 2006-01-24  Jim Meyering  <jim@meyering.net>
33841
33842         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
33843         Reported by Mark D. Baushke.
33844
33845 2006-01-24  Jim Meyering  <jim@meyering.net>
33846
33847         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
33848
33849 2006-01-24  Bruno Haible  <bruno@clisp.org>
33850
33851         * modules/strnlen (Maintainer): Change from glibc to all.
33852
33853 2006-01-24  Bruno Haible  <bruno@clisp.org>
33854
33855         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
33856         Patch by Paul Eggert.
33857
33858 2006-01-24  Bruno Haible  <bruno@clisp.org>
33859
33860         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
33861         already has it.
33862         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
33863         2005-11-26.
33864
33865         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
33866         'signed char' to avoid problems with the built-in _Bool type.
33867         Reported by Paul Eggert on 2005-11-26.
33868
33869 2006-01-24  Bruno Haible  <bruno@clisp.org>
33870
33871         * gnulib-tool (func_import): Avoid constructing complicated sed
33872         expressions inside backquote.
33873         Report and solution by Mark D. Baushke <mdb@gnu.org>.
33874
33875 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
33876
33877         These changes imported from libc.
33878         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
33879         test and two separate function calls.
33880         * lib/strndup.c (__strndup): Add libc_hidden_def.
33881
33882 2006-01-23  Simon Josefsson  <jas@extundo.com>
33883
33884         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
33885         Remove the test_*_SOURCES variable: automake infers it by default.
33886         * modules/tls-tests: Likewise.
33887
33888 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33889
33890         Work around porting bugs reported by Dieter in
33891         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
33892         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
33893         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
33894         Include "getopt.h" first, to check interface.
33895         (getenv): Declare only if defined HAVE_DECL_GETENV &&
33896         !HAVE_DECL_GETENV.
33897         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
33898         (__strndup): Revert to K&R-style function dfns, the glibc style.
33899         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
33900         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
33901         Include strnlen.h first, to get prototype properly.
33902         (strnlen): Renamed from __strnlen.
33903         Remove weak alias.
33904
33905 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33906
33907         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
33908
33909 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
33910
33911         * config/srclist.txt: Adjust to reflect glibc reorganization.
33912         This affects only comments.
33913
33914 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
33915
33916          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
33917          Reported by Bruce Korb <bkorb@gnu.org>.
33918
33919 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
33920
33921         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
33922         to pacify gcc -Wswitch-default.
33923
33924 2006-01-22  Bruno Haible  <bruno@clisp.org>
33925
33926         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
33927         temporary buffer for sprintf, take into account the precision also
33928         for 'd', 'i', 'u', 'o', 'x', 'X'.
33929
33930 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
33931
33932         * modules/argp-tests: New module
33933         * tests/test-argp.c: New file
33934         * tests/test-argp-2.sh: New file
33935
33936 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
33937
33938         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
33939         (__argp_base_name): Removed
33940         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
33941         typo.
33942         (__argp_base_name): Provide macro definition or extern declaration
33943         depending on the configuration
33944
33945 2006-01-20  Simon Josefsson  <jas@extundo.com>
33946
33947         * modules/inet_ntop (Depends-on): Depend on sys_socket.
33948
33949 2006-01-20  Simon Josefsson  <jas@extundo.com>
33950
33951         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
33952
33953 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
33954
33955         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
33956         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
33957         Suggested by Bruno Haible.
33958
33959 2006-01-20  Karl Berry  <karl@gnu.org>
33960
33961         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
33962         until changes propagate, I guess.
33963
33964 2006-01-19  Simon Josefsson  <jas@extundo.com>
33965
33966         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
33967
33968 2006-01-19  Simon Josefsson  <jas@extundo.com>
33969
33970         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
33971
33972 2006-01-19  Simon Josefsson  <jas@extundo.com>
33973
33974         * gnulib-tool: Set check_PROGRAMS.
33975
33976         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
33977         modules/des-tests, modules/gc-arcfour-tests,
33978         modules/gc-arctwo-tests, modules/gc-des-tests,
33979         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
33980         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
33981         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
33982         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
33983         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
33984         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
33985         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
33986         test_*_SOURCES.
33987
33988 2006-01-18  Simon Josefsson  <jas@extundo.com>
33989
33990         * modules/socklen (Depends-on): Depend on sys_socket.
33991
33992 2006-01-18  Simon Josefsson  <jas@extundo.com>
33993
33994         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
33995         modules/des-tests, modules/gc-arcfour-tests,
33996         modules/gc-arctwo-tests, modules/gc-des-tests,
33997         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
33998         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
33999         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
34000         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
34001         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
34002         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
34003         $(EXEEXT) to automake TESTS variable, for mingw32.
34004
34005 2006-01-17  Simon Josefsson  <jas@extundo.com>
34006
34007         * modules/socklen (Include): Need sys/socket.h.
34008
34009 2006-01-17  Bruno Haible  <bruno@clisp.org>
34010
34011         * modules/ssize_t (Include): Add <sys/types.h>.
34012
34013 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
34014
34015         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
34016         it's not portable and it doesn't work with cross-compiles.
34017         Problem reported by Bruno Haible.  Fix missing-$ typo in
34018         'test "gl_cv_ignore_unused_libraries" ...' that prevented
34019         -zignore from being used with Sun's C compiler.
34020
34021 2006-01-12  Simon Josefsson  <jas@extundo.com>
34022
34023         * lib/base64.c: Fix warning, reported by Bruno Haible
34024         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
34025
34026 2006-01-12  Bruno Haible  <bruno@clisp.org>
34027
34028         * modules/ldd: New file.
34029         * build-aux/ldd.sh.in: New file.
34030         * MODULES.html.sh (Support for building libraries and executables): Add
34031         ldd.
34032
34033 2006-01-12  Bruno Haible  <bruno@clisp.org>
34034
34035         * m4/ldd.m4: New file.
34036
34037 2006-01-12  Bruno Haible  <bruno@clisp.org>
34038
34039         * gnulib-tool (func_import, func_create_testdir): Don't go into an
34040         endless loop while replacing $auxdir with build-aux.
34041
34042 2006-01-11  Simon Josefsson  <jas@extundo.com>
34043
34044         * lib/stdint_.h (SIZE_MAX): Add missing (.
34045
34046 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
34047
34048         Sync from coreutils.
34049         * lib/md5.c: Fix commentary typos.
34050         (alignof, UNALIGNED_P): No need for a GCC-specific version.
34051         * lib/md5.h (__attribute__): Remove; unused.
34052         * lib/sha1.c: Fix commentary to match md5 better.
34053         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
34054         so that we don't need to worry about alignment.  All uses changed.
34055         This merges the 2005-10-28 md5 change into sha1.
34056
34057 2006-01-11  Jim Meyering  <jim@meyering.net>
34058
34059         Sync from coreutils.
34060         * lib/md5.c (OP): Fix spacing.
34061
34062 2006-01-11  Bruno Haible  <bruno@clisp.org>
34063
34064         Ensure automatic ordering between gl_LOCK and gl_ARGP.
34065         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
34066         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
34067
34068 2006-01-11  Bruno Haible  <bruno@clisp.org>
34069
34070         Ensure automatic ordering between gl_LOCK and gl_ARGP.
34071         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
34072         the "early" section as well.
34073
34074 2006-01-11  Bruno Haible  <bruno@clisp.org>
34075
34076         Avoid "ar: no archive members specified" error on MacOS X.
34077         * gnulib-tool (func_modules_add_dummy): New function.
34078         (func_import, func_create_testdir): Invoke it.
34079
34080 2006-01-11  Bruno Haible  <bruno@clisp.org>
34081
34082         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
34083         with $auxdir in AC_CONFIG_FILES statements.
34084
34085 2006-01-11  Bruno Haible  <bruno@clisp.org>
34086
34087         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34088         Initialize also noinst_HEADERS to empty.
34089
34090 2006-01-11  Bruno Haible  <bruno@clisp.org>
34091
34092         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
34093         variables.
34094         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
34095         autoreconf.
34096
34097 2006-01-11  Bruno Haible  <bruno@clisp.org>
34098
34099         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
34100         overridable by the user.
34101         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34102
34103 2006-01-10  Simon Josefsson  <jas@extundo.com>
34104
34105         * modules/sys_socket: New file.
34106
34107 2006-01-10  Simon Josefsson  <jas@extundo.com>
34108
34109         * m4/sys_socket_h.m4: New file.
34110
34111 2006-01-10  Simon Josefsson  <jas@extundo.com>
34112
34113         * lib/socket_.h: New file.
34114
34115 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
34116
34117         * modules/readutmp (Maintainer): Add myself.
34118
34119 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
34120
34121         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
34122         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
34123         People who are still concerned with buggy memcmp implementations
34124         can invoke gl_FUNC_MEMCMP themselves.
34125
34126 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
34127
34128         * lib/regex_internal.h (BITSET_WORD_BITS):
34129         Work around a bug in 64-bit PGC (before version 6.1-2), where the
34130         preprocessor mishandles large unsigned values as if they were signed.
34131         Problem reported by Claudio Fontana in
34132         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
34133
34134 2006-01-10  Jim Meyering  <jim@meyering.net>
34135
34136         Avoid the double-free (first in fts_read, second in fts_close) that
34137         would occur when an `active' directory is made inaccessible (e.g.,
34138         via chmod a-x) during a traversal.
34139         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
34140         before returning.  Reproduce this failure by
34141         mkdir -p a/b; cd a; chmod a-x . b
34142         Reported by Stavros Passas.
34143
34144         Sync from coreutils.
34145         * lib/sha1.c: Tweak grammar in a comment.
34146
34147 2006-01-10  Jim Meyering  <jim@meyering.net>
34148
34149         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
34150         Patch by Joerg Sonnenberger.
34151
34152 2006-01-10  Bruno Haible  <bruno@clisp.org>
34153
34154         * modules/readutmp: Depend on module free.
34155         * modules/strtok_r: Depend on module restrict.
34156
34157 2006-01-10  Bruno Haible  <bruno@clisp.org>
34158
34159         * modules/gettext (configure.ac): Add an invocation of
34160         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
34161
34162 2006-01-10  Bruno Haible  <bruno@clisp.org>
34163
34164         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
34165         Reported by Werner Lemberg <wl@gnu.org>.
34166
34167 2006-01-10  Bruno Haible  <bruno@clisp.org>
34168
34169         * lib/localcharset.c: Update from GNU gettext.
34170
34171 2006-01-10  Bruno Haible  <bruno@clisp.org>
34172
34173         * lib/argp.h (__const): Remove macro. Use const instead.
34174         * lib/argp-fmtstream.h (__const): Likewise.
34175         * lib/glob_.h (__const): Remove macro.
34176         * lib/glob-libc.h: Use const instead of __const.
34177
34178 2006-01-10  Bruno Haible  <bruno@clisp.org>
34179
34180         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
34181         variable.
34182         Needed to avoid an automake error regarding the 'gettext' module.
34183
34184 2006-01-09  Simon Josefsson  <jas@extundo.com>
34185
34186         * modules/inet_ntop (Depends-on): Add restrict.
34187
34188 2006-01-09  Simon Josefsson  <jas@extundo.com>
34189
34190         * modules/gc-rijndael-tests (License): Put under LGPL.
34191
34192         * modules/gc-des-tests (License): Likewise.
34193
34194         * modules/gc-arcfour-tests (License): Likewise.
34195
34196         * modules/gc-arctwo-tests (License): Likewise.
34197
34198         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
34199
34200         * modules/gc-hmac-sha1-tests (Files): Likewise.
34201
34202         * modules/gc-hmac-md5-tests (License): Likewise.
34203
34204         * modules/gc-sha1-tests (License): Likewise.
34205
34206         * modules/gc-md5-tests (License): Likewise.
34207
34208         * modules/gc-md4-tests (License): Likewise.
34209
34210         * modules/gc-md2-tests (License): Likewise.
34211
34212         * modules/gc-tests (License): Likewise.
34213
34214         * modules/des-tests (License): Likewise.
34215
34216         * modules/md4-tests (License): Likewise.
34217
34218         * modules/md2-tests (License): Likewise.
34219
34220 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
34221
34222         Sync from coreutils:
34223
34224         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
34225         * modules/lib-ignore: New file.
34226         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
34227         chdir-safer.m4, lchmod.m4.
34228         * modules/openat: Add mkdirat.c, openat-priv.h.
34229
34230 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
34231
34232         Sync from coreutils.
34233         * m4/lib-ignore.m4: New file.
34234         * m4/lchmod.m4: New file.
34235
34236 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
34237
34238         Sync from coreutils.
34239         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
34240         for write access: POSIX says that must fail.
34241         * lib/fts.c (diropen): Likewise.
34242         * lib/save-cwd.c (save_cwd): Likewise.
34243         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
34244         well, for minor improvements on hosts that lack O_DIRECTORY.
34245         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
34246         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
34247         Fall back on chown if open failed with EACCES.
34248
34249         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
34250         Report an error at compile-time if only a 1-second nominal clock
34251         resolution is found.
34252
34253         * lib/lchmod.h: New file.
34254         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
34255         (make_dir_parents): Use lchown rather than chown, and
34256         lchmod rather than chmod.
34257
34258         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
34259         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
34260         "proc" reported by n0dalus.
34261
34262         * lib/mountlist.c: Include <limits.h>.
34263         (dev_from_mount_options)
34264         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
34265         New function.  It no longer assumes "dev=" has the System V meaning
34266         on Linux (since it doesn't).  It also parses "dev=" more carefully.
34267         (read_file_system_list)
34268         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
34269         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
34270         dev= in that case.
34271
34272         * lib/posixtm.h (PDS_PRE_2000): New macro.
34273         * lib/posixtm.c (year): Arg is now syntax_bits rather than
34274         allow_century.  All usages changed.  Reject dates outside the range
34275         1969-1999 if PDS_PRE_2000 is used.
34276
34277 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
34278
34279         Sync from coreutils.
34280         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
34281         (Time of day items): Mention the possibility of leap seconds.
34282         Problem reported by Dr. David Alan Gilbert.
34283
34284 2006-01-09  Jim Meyering  <jim@meyering.net>
34285
34286         Sync from coreutils.
34287
34288         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
34289
34290         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
34291
34292         * lib/modechange.c (mode_compile): Reject an invalid mode string
34293         that starts with an octal digit.  From Andreas Gruenbacher.
34294
34295         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
34296         and dup to open_safer and dup_safer, respectively.
34297         (openat_permissive): Fix typo in comment.
34298
34299         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
34300         "gettext.h"; either no longer needed or are guaranteed by openat.h.
34301         (_): Remove; no longer needed.
34302         (openat): Renamed from rpl_openat; no need for rpl_openat
34303         since openat.h renames openat for us.
34304         Replace most of the body with a call to openat_permissive,
34305         to avoid duplicate code.
34306         Port to (probably hypothetical) environments were mode_t is
34307         wider than int.
34308         (openat_permissive): Require mode arg, so that we can check
34309         types better.  Put it just after flags.  Change cwd failure
34310         indicator from pointer-to-bool to pointer-to-errno-value.
34311         All callers changed.
34312         Invoke openat_save_fail and/or openat_restore_fail if
34313         cwd_errno is null, so that openat can call us.
34314         (openat_permissive, fdopendir, fstatat, unlinkat):
34315         Simplify errno handling to avoid some duplicate code,
34316         as it's OK to set errno on success.
34317         * lib/openat.h: Revamp code so that function macros depend on
34318         __OPENAT_PREFIX only, not also on AT_FDCWD.
34319         (openat_ro): Remove.  Caller changed to use openat_permissive.
34320         (openat_permissive): Now a macro, if not a function.
34321         (openat_restore_fail, openat_save_fail): Now always functions,
34322         since mkdirat needs them even if __OPENAT_PREFIX is defined.
34323
34324         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
34325         and openat.c.
34326         * lib/mkdirat.c: Include openat-priv.h.
34327         Remove definitions of macros defined therein.
34328         * lib/openat.c: Likewise.
34329
34330         * lib/mkdirat.c (mkdirat): New file and function.
34331         * lib/openat.h (mkdirat): Declare.
34332
34333         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
34334
34335         * lib/openat.h (openat_permissive): Declare.
34336         (openat_ro): Define.
34337
34338         * lib/openat.c (EXPECTED_ERRNO): New macro.
34339         (openat_permissive): New function -- used in remove.c rewrite.
34340         (all functions): Set errno just before returning, only if there
34341         was an actual failure.
34342         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
34343
34344         Emulate openat-family functions using Linux's procfs, if possible.
34345         Idea and some code based on Ulrich Drepper's glibc changes.
34346
34347         * lib/openat.c: (BUILD_PROC_NAME): New macro.
34348         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
34349         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
34350         before falling back on save_cwd and restore_cwd.
34351         (fdopendir, fstatat, unlinkat): Likewise.
34352
34353         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
34354         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
34355
34356         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
34357         as second argument to va_arg.  Otherwise, some versions of gcc
34358         warn that `if this code is reached, the program will abort'.
34359
34360 2006-01-09  Jim Meyering  <jim@meyering.net>
34361
34362         Sync from coreutils.
34363         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
34364         Require openat-priv.h.
34365
34366 2006-01-09  Bruno Haible  <bruno@clisp.org>
34367
34368         * modules/strnlen (Include): Use strnlen.h.
34369
34370 2006-01-09  Bruno Haible  <bruno@clisp.org>
34371
34372         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
34373
34374 2006-01-09  Bruno Haible  <bruno@clisp.org>
34375
34376         * lib/sysexit_.h (EX_OK): New macro.
34377         Suggested by Martin Lambers <marlam@marlam.de>.
34378
34379 2006-01-09  Bruno Haible  <bruno@clisp.org>
34380
34381         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
34382         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
34383
34384 2006-01-09  Bruno Haible  <bruno@clisp.org>
34385
34386         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
34387         numbers.
34388
34389 2006-01-09  Bruno Haible  <bruno@clisp.org>
34390
34391         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
34392         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
34393         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
34394         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
34395
34396 2006-01-09  Bruno Haible  <bruno@clisp.org>
34397
34398         * build-aux/javacomp.sh.in: New file, moved from lib/.
34399         * modules/javacomp-script (Files): Update.
34400         (configure.ac): Add AC_CONFIG_FILES invocation.
34401         (EXTRA_DIST): Remove variable.
34402
34403         * build-aux/javaexec.sh.in: New file, moved from lib/.
34404         * modules/javaexec (Files): Update.
34405         (configure.ac): Add AC_CONFIG_FILES invocation.
34406         (EXTRA_DIST): Remove javaexec.sh.in.
34407
34408         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
34409         * modules/csharpcomp-script (Files): Update.
34410         (configure.ac): Add AC_CONFIG_FILES invocation.
34411         (EXTRA_DIST): Remove variable.
34412
34413         * build-aux/csharpexec.sh.in: New file, moved from lib/.
34414         * modules/csharpexec (Files): Update.
34415         (configure.ac): Add AC_CONFIG_FILES invocation.
34416         (EXTRA_DIST): Remove csharpexec.sh.in.
34417
34418 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
34419
34420         Sync from coreutils.
34421
34422         Add POSIX ACL support
34423         * lib/acl.h (copy_acl, set_acl): Add declarations.
34424         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
34425         systems other than Linux.
34426         (chmod_or_fchmod): New function: use fchmod when possible,
34427         and chmod otherwise.
34428         (file_has_acl): Add a POSIX ACL implementation, with a
34429         Linux-specific subcase.
34430         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
34431         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
34432         acls are unsupported.
34433         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
34434         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
34435         are unsupported.
34436
34437 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
34438
34439         Sync from coreutils.
34440         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
34441
34442 2006-01-07  Bruno Haible  <bruno@clisp.org>
34443
34444         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
34445         gl_EARLY.
34446
34447 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
34448
34449         * lib/strftime.c (tzname): Don't declare if it is already #defined.
34450         Problem reported for Mingw by Mark Junker.
34451
34452 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
34453
34454         * README: Gnulib normally doesn't generate a tarball.
34455
34456 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
34457
34458         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
34459         long int, not int, for nanosecond counts, so that people who are
34460         used to POSIX struct timespec won't be surprised.  Reported by Jim
34461         Meyering.
34462
34463 2005-12-28  Bruno Haible  <bruno@clisp.org>
34464
34465         * build-aux/config.rpath: Update from GNU gettext.
34466
34467 2005-12-16  Jim Meyering  <jim@meyering.net>
34468
34469         * modules/fprintftime: New module.
34470         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
34471
34472 2005-12-16  Jim Meyering  <jim@meyering.net>
34473
34474         * m4/fprintftime.m4: New file.
34475
34476 2005-12-16  Jim Meyering  <jim@meyering.net>
34477
34478         * lib/fprintftime.c, lib/fprintftime.h: New files.
34479
34480 2005-12-15  Simon Josefsson  <jas@extundo.com>
34481
34482         * modules/socklen (configure.ac): Fix M4 macro name, to align with
34483         new m4/socklen.m4.
34484
34485 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
34486
34487         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
34488         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
34489
34490 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
34491
34492         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
34493         * lib/argp-help.c (fill_in_uparams): Check if the constructed
34494         struct uparams is valid. Fall back to the default values if it is
34495         not.
34496
34497 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34498
34499         * modules/argp (Files): Add argp-pin.c
34500         (Depends-on): dirname
34501         (lib_SOURCES): Add argp-pin.c
34502
34503 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34504
34505         * m4/argp.m4:  Check if program_invocation_name and
34506         program_invocation_short_name are declared and define appropriate
34507         macros if they are not.
34508
34509 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
34510
34511         * lib/argp-help.c (__argp_base_name): New function
34512         (__argp_short_program_name): Rewrite using __argp_base_name
34513         * lib/argp-namefrob.h: Define program_invocation_name and
34514         program_invocation_short_name if requested
34515         (__argp_base_name): Add prototype
34516         * lib/argp-parse.c (argp_def): Use gettext wrappers
34517         (argp_default_parser): Use __argp_base_name
34518         * lib/argp-pin.c: New file. Defines program_invocation_name and
34519         program_invocation_short_name on systems that lack them.
34520
34521 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
34522
34523         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
34524         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
34525         porting problem reported by Georg Schwarz in
34526         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
34527
34528 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
34529
34530         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
34531         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
34532         porting problem reported by Georg Schwarz in
34533         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
34534
34535 2005-12-05  Bruno Haible  <bruno@clisp.org>
34536
34537         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
34538         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
34539         Reported by Mark Junker <mjscod@gmx.de>.
34540
34541 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
34542
34543         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
34544         Use implementation from Albert Chin, with some
34545         comments/corrections by Stepan Kasal and myself.
34546
34547 2005-12-02  Bruno Haible  <bruno@clisp.org>
34548
34549         * gnulib-tool (func_import): Accept GPLed build tool modules when
34550         --lgpl is given.
34551         * modules/csharpcomp-script: New file.
34552         * modules/csharpcomp: Depend on it.
34553         * modules/javacomp-script: New file.
34554         * modules/javacomp: Depend on it.
34555         Suggested by Simon Josefsson.
34556
34557 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
34558
34559         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
34560         statement, to work around an HP-UX 10.20 compiler bug reported by
34561         Peter O'Gorman.
34562
34563 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
34564
34565         * modules/savedir (Depends-on): Add openat.
34566
34567 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
34568
34569         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
34570         (uintmax_t) [defined uintmax_t]: Do not declare.
34571         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
34572         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
34573         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
34574         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
34575         sake of portability to weird hosts that C allows (though we don't
34576         know of any practical examples).
34577
34578         * lib/savedir.h (fdsavedir): New decl.
34579         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
34580         contains most of the former guts of savedir.
34581         (savedir): Use savedirstream.
34582         Include "openat.h".
34583
34584 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
34585
34586         * modules/obstack (Files): Add m4/ulonglong.m4.
34587         Problem reported by Davide Angelocola.
34588
34589 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
34590
34591         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
34592         coreutils no longer futzes with rounding modes.
34593
34594 2005-11-14  Jim Meyering  <jim@meyering.net>
34595
34596         * lib/mkstemp-safer.c: Include <config.h>, required for possible
34597         replacement of mkstemp.
34598
34599 2005-11-10  Simon Josefsson  <jas@extundo.com>
34600
34601         * lib/readline.c: Remove EOL.
34602
34603 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
34604
34605         * modules/gethrxtime (Depends-on): Add gettime.
34606
34607 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
34608
34609         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
34610         or gettimeofday; no longer needed.
34611
34612 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
34613
34614         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
34615         time business.
34616         (gethrxtime) [! (HAVE_NANOUPTIME
34617         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
34618         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
34619         our own approximation.
34620
34621 2005-11-08  Eric Blake  <ebb9@byu.net>
34622
34623         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
34624
34625 2005-11-08  Eric Blake  <ebb9@byu.net>
34626
34627         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
34628
34629 2005-11-04  Bruno Haible  <bruno@clisp.org>
34630
34631         * gnulib-tool: Implement --update mode.
34632
34633 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
34634
34635         Fix porting problem reported by Theodoros V. Kalamatianos.
34636         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
34637         Don't assume that futimes failing means we must fail.
34638
34639 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
34640
34641         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
34642         variables to suggest the intended function of the PATH_MAX check.
34643
34644 2005-10-30  Kean Johnston  <jkj@sco.com>
34645
34646         Trivial changes to support SCO systems.
34647         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
34648         as PATH_MAX.
34649         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
34650         where __ptr is null when no I/O is pending.
34651
34652 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
34653
34654         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
34655         leave errno alone.  Problem reported by Dmitry V. Levin.
34656
34657 2005-10-28  Simon Josefsson  <jas@extundo.com>
34658
34659         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
34660         Test more.
34661
34662         * tests/test-gc-md2.c, tests/test-md2.c: New files.
34663
34664         * modules/md2, modules/md2-tests: New files.
34665
34666 2005-10-28  Simon Josefsson  <jas@extundo.com>
34667
34668         * m4/inet_ntop.m4: More tests.
34669
34670         * m4/gc-md2.m4, md2.m4: New file.
34671
34672 2005-10-28  Simon Josefsson  <jas@extundo.com>
34673
34674         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
34675         "restrict" keywords, as per POSIX.  Protect the function
34676         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
34677         Don't use K&R prototypes.  Check the sprintf return values.
34678         Re-define EAFNOSUPPORT if not present.  Indent.
34679
34680         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
34681         suggested by Bruno Haible <bruno@clisp.org>.
34682
34683         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
34684
34685         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
34686
34687         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
34688         libgcrypt).
34689
34690         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
34691
34692         * lib/md2.h, lib/md2.c: New files.
34693
34694 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
34695
34696         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
34697         errno alone.  Problem reported by Frederic Jolliton.
34698
34699 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
34700
34701         * modules/verify (License): Change from GPL to LGPL.  This is a
34702         tiny module and there are apparently near-equivalents that are
34703         under the BSD license.
34704
34705 2005-10-24  Simon Josefsson  <jas@extundo.com>
34706
34707         * modules/sha1: Relicense to LGPL.
34708
34709 2005-10-24  Simon Josefsson  <jas@extundo.com>
34710
34711         * lib/md4.h: Shrink buffer size, now that we changed the type.
34712
34713 2005-10-23  Simon Josefsson  <jas@extundo.com>
34714
34715         * gnulib-tool (func_import): Fix --tests-base.
34716
34717 2005-10-22  Simon Josefsson  <jas@extundo.com>
34718
34719         * modules/arcfour (Depends-on): Need stdint.
34720
34721 2005-10-22  Simon Josefsson  <jas@extundo.com>
34722
34723         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
34724         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
34725
34726 2005-10-22  Simon Josefsson  <jas@extundo.com>
34727
34728         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
34729         suggested by Bruno Haible <bruno@clisp.org>.
34730
34731 2005-10-22  Simon Josefsson  <jas@extundo.com>
34732
34733         * lib/crc.h: Include stddef.h, for size_t.
34734
34735 2005-10-22  Simon Josefsson  <jas@extundo.com>
34736
34737         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
34738         arcfour_context struct (simplify test vector testing in GNU
34739         Shishi).
34740
34741 2005-10-21  Simon Josefsson  <jas@extundo.com>
34742
34743         * modules/des, modules/des-tests: New files.
34744
34745         * modules/gc-des, modules/gc-des-tests: New files.
34746
34747         * tests/test-des.c, tests/test-gc-des.c: New file.
34748
34749 2005-10-21  Simon Josefsson  <jas@extundo.com>
34750
34751         * modules/arctwo, modules/arctwo-tests: New files.
34752
34753         * tests/test-arctwo.c: New file.
34754
34755         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
34756
34757         * tests/test-gc-arctwo.c: New file.
34758
34759 2005-10-21  Simon Josefsson  <jas@extundo.com>
34760
34761         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
34762         Bruno Haible <bruno@clisp.org>.
34763
34764         * m4/gc-des.m4: New file.
34765
34766 2005-10-21  Simon Josefsson  <jas@extundo.com>
34767
34768         * m4/arctwo.m4: New file.
34769
34770         * m4/gc-arctwo.m4: New file.
34771
34772 2005-10-21  Simon Josefsson  <jas@extundo.com>
34773
34774         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
34775         block.
34776
34777 2005-10-21  Simon Josefsson  <jas@extundo.com>
34778
34779         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
34780         <bruno@clisp.org>.
34781
34782         * lib/hmac-sha1.c (hmac_sha1): Likewise.
34783
34784         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
34785         Bruno Haible <bruno@clisp.org>.
34786
34787         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
34788         <bruno@clisp.org>.
34789
34790 2005-10-21  Simon Josefsson  <jas@extundo.com>
34791
34792         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
34793
34794 2005-10-21  Simon Josefsson  <jas@extundo.com>
34795
34796         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
34797
34798 2005-10-21  Simon Josefsson  <jas@extundo.com>
34799
34800         * lib/des.h, lib/des.c: New files.
34801
34802         * lib/gc-gnulib.c: Support DES.c
34803
34804 2005-10-21  Simon Josefsson  <jas@extundo.com>
34805
34806         * lib/arctwo.h, lib/arctwo.c: New files.
34807
34808         * lib/gc-gnulib.c: Support ARCTWO.
34809
34810 2005-10-21  Simon Josefsson  <jas@extundo.com>
34811
34812         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
34813         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34814
34815 2005-10-21  Simon Josefsson  <jas@extundo.com>
34816
34817         * gnulib-tool (func_import, func_create_testdir): Define automake
34818         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
34819         Makefile.am snippet),
34820         suggested by Bruno Haible <bruno@clisp.org>.
34821
34822         * modules/gc (Makefile.am): Use it.
34823
34824 2005-10-21  Bruno Haible  <bruno@clisp.org>
34825
34826         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
34827         patch.
34828
34829 2005-10-19  Simon Josefsson  <jas@extundo.com>
34830
34831         * tests/test-gc-rijndael.c: New file.
34832
34833         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
34834
34835 2005-10-19  Simon Josefsson  <jas@extundo.com>
34836
34837         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
34838         interface too.
34839
34840 2005-10-19  Simon Josefsson  <jas@extundo.com>
34841
34842         * tests/test-gc-arcfour.c: New file.
34843
34844         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
34845
34846 2005-10-19  Simon Josefsson  <jas@extundo.com>
34847
34848         * modules/gc-md4, modules/gc-md4-tests: New file.
34849
34850         * tests/test-gc-md4.c: New file.
34851
34852 2005-10-19  Simon Josefsson  <jas@extundo.com>
34853
34854         * m4/gc-md4.m4: New file.
34855
34856 2005-10-19  Simon Josefsson  <jas@extundo.com>
34857
34858         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
34859         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
34860         <kasal@ucw.cz>.
34861
34862 2005-10-19  Simon Josefsson  <jas@extundo.com>
34863
34864         * m4/gc-arcfour.m4: New file.
34865
34866         * m4/gc-rijndael.m4: New file.
34867
34868 2005-10-19  Simon Josefsson  <jas@extundo.com>
34869
34870         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
34871
34872 2005-10-19  Simon Josefsson  <jas@extundo.com>
34873
34874         * lib/gc-gnulib.c: Support ARCFOUR.
34875
34876 2005-10-19  Simon Josefsson  <jas@extundo.com>
34877
34878         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
34879         support.
34880
34881         * lib/gc.h: Add ECB enum type.
34882
34883         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
34884
34885 2005-10-18  Simon Josefsson  <jas@extundo.com>
34886
34887         * tests/test-md5.c: New file.
34888
34889         * modules/md5-tests: New file.
34890
34891 2005-10-18  Simon Josefsson  <jas@extundo.com>
34892
34893         * tests/test-md4.c: New file.
34894
34895         * modules/md4, modules/md4-tests: New files.
34896
34897 2005-10-18  Simon Josefsson  <jas@extundo.com>
34898
34899         * m4/md4.m4: New file.
34900
34901 2005-10-18  Simon Josefsson  <jas@extundo.com>
34902
34903         * lib/md4.h, lib/md4.c: New files, based on md5.?.
34904
34905 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
34906
34907         * gnulib-tool (func_create_testdir): Omit the second check whether
34908         BUILT_SOURCES in nonempty.
34909
34910 2005-10-17  Simon Josefsson  <jas@extundo.com>
34911
34912         * tests/test-rijndael.c: New file.
34913
34914 2005-10-17  Simon Josefsson  <jas@extundo.com>
34915
34916         * modules/sha1: Depend on stdint instead of md5.
34917
34918         * modules/md5: Depend on stdint, remove uint32_t.
34919
34920 2005-10-17  Simon Josefsson  <jas@extundo.com>
34921
34922         * modules/gc-sha1-tests: New file.
34923
34924         * tests/test-gc-sha1.c: New file.
34925
34926 2005-10-17  Simon Josefsson  <jas@extundo.com>
34927
34928         * m4/md5.m4: Remove call to uint32_t.m4.
34929
34930 2005-10-17  Simon Josefsson  <jas@extundo.com>
34931
34932         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
34933
34934         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
34935         md5.h.
34936
34937         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
34938
34939         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
34940
34941 2005-10-17  Simon Josefsson  <jas@extundo.com>
34942
34943         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
34944
34945 2005-10-17  Simon Josefsson  <jas@extundo.com>
34946
34947         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
34948
34949 2005-10-17  Simon Josefsson  <jas@extundo.com>
34950
34951         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
34952
34953         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
34954
34955 2005-10-17  Bruno Haible  <bruno@clisp.org>
34956
34957         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
34958         that it can also be used in a test.
34959
34960 2005-10-16  Bruno Haible  <bruno@clisp.org>
34961
34962         * gnulib-tool (func_emit_tests_Makefile_am): Also define
34963         TESTS_ENVIRONMENT, so that individual tests can augment it.
34964
34965         * gnulib-tool (func_create_testdir): Use an intermediate target for
34966         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
34967         macros, like $(ALLOCA_H), which cannot be passed through the command
34968         line.
34969
34970 2005-10-15  Simon Josefsson  <jas@extundo.com>
34971
34972         * modules/rijndael-tests: New file.
34973
34974         * modules/rijndael: New file.
34975
34976 2005-10-15  Simon Josefsson  <jas@extundo.com>
34977
34978         * m4/rijndael.m4: New file.
34979
34980 2005-10-15  Simon Josefsson  <jas@extundo.com>
34981
34982         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
34983
34984         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
34985
34986 2005-10-14  Simon Josefsson  <jas@extundo.com>
34987
34988         * tests/test-arcfour.c: New file.
34989
34990         * modules/arcfour, modules/arcfour-tests: New files.
34991
34992 2005-10-14  Simon Josefsson  <jas@extundo.com>
34993
34994         * m4/arcfour.m4: New file.
34995
34996 2005-10-14  Simon Josefsson  <jas@extundo.com>
34997
34998         * lib/arcfour.h, lib/arcfour.c: New files.
34999
35000 2005-10-14  Roland McGrath  <roland@redhat.com>
35001
35002         Import from libc.  [BZ #1331]
35003         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
35004         macro argument.
35005         Reported by Matej Vela <vela@debian.org>.
35006
35007 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35008
35009         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
35010         include <wchar.h>; no longer needed.
35011
35012 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
35013
35014         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
35015
35016 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
35017         and  Ulrich Drepper  <drepper@redhat.com>
35018
35019         Import from libc.
35020         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
35021         instead of inline stream orientation test and two separate
35022         function calls.  Pay no attention to USE_IN_LIBIO.
35023
35024 2005-10-13  Simon Josefsson  <jas@extundo.com>
35025
35026         * modules/gc-hmac-md5-tests: New file.
35027
35028         * tests/test-gc-hmac-sha1.c: New file.
35029
35030         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
35031
35032         * modules/gc-hmac-md5-tests: New file.
35033
35034         * tests/test-gc-md5.c: New file.
35035
35036         * modules/gc-md5-tests: New file.
35037
35038 2005-10-13  Simon Josefsson  <jas@extundo.com>
35039
35040         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
35041         Move memory allocation outside of loop.
35042
35043 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
35044
35045         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
35046         intermediate directory is in a read-only file system.  Problem
35047         reported by Eric Blake.
35048
35049 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
35050
35051         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
35052
35053 2005-10-12  Simon Josefsson  <jas@extundo.com>
35054
35055         * tests/test-hmac-sha1.c: New file.
35056
35057         * modules/hmac-sha1-tests: New file.
35058
35059         * modules/hmac-sha1: New file.
35060
35061 2005-10-12  Simon Josefsson  <jas@extundo.com>
35062
35063         * modules/gc-sha1: New file.
35064
35065 2005-10-12  Simon Josefsson  <jas@extundo.com>
35066
35067         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
35068
35069         * tests/test-gc-pbkdf2-sha1.c: New file.
35070
35071 2005-10-12  Simon Josefsson  <jas@extundo.com>
35072
35073         * modules/gc-md5, modules/gc-hmac-md5: New files.
35074
35075         * modules/gc (Files): Remove md5, memxor and hmac files.
35076
35077 2005-10-12  Simon Josefsson  <jas@extundo.com>
35078
35079         * m4/gc-pbkdf2-sha1.m4: New file.
35080
35081         * m4/gc-hmac-sha1.m4: New file.
35082
35083         * m4/gc-sha1: New file.
35084
35085         * m4/hmac-sha1.m4: New file.
35086
35087 2005-10-12  Simon Josefsson  <jas@extundo.com>
35088
35089         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
35090
35091         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
35092
35093 2005-10-12  Simon Josefsson  <jas@extundo.com>
35094
35095         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
35096         suggested by Bruno Haible <bruno@clisp.org>.
35097
35098 2005-10-12  Simon Josefsson  <jas@extundo.com>
35099
35100         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
35101
35102 2005-10-12  Simon Josefsson  <jas@extundo.com>
35103
35104         * lib/gc-pbkdf2-sha1.c: New file.
35105
35106         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
35107
35108 2005-10-12  Simon Josefsson  <jas@extundo.com>
35109
35110         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
35111
35112         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
35113
35114 2005-10-12  Simon Josefsson  <jas@extundo.com>
35115
35116         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
35117         GC_USE_HMAC_MD5, respectively.
35118
35119         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
35120         (gc_md5): Fix typo.
35121
35122         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
35123
35124         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
35125
35126         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
35127
35128 2005-10-12  Bruno Haible  <bruno@clisp.org>
35129
35130         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
35131         Reported by Stepan Kasal <kasal@ucw.cz>.
35132
35133 2005-10-11  Simon Josefsson  <jas@extundo.com>
35134
35135         * tests/test-crc.c: New file.
35136
35137         * modules/crc, modules/crc-tests: New files.
35138
35139 2005-10-11  Simon Josefsson  <jas@extundo.com>
35140
35141         * m4/crc.m4: New file.
35142
35143 2005-10-11  Simon Josefsson  <jas@extundo.com>
35144
35145         * lib/gc.h: Add gc_hash and gc_hash_buffer.
35146
35147         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
35148
35149         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
35150
35151 2005-10-11  Simon Josefsson  <jas@extundo.com>
35152
35153         * lib/crc.h, lib/crc.c: New files.
35154
35155         * lib/gc.h (gc_hash_buffer): Add doc.
35156
35157 2005-10-11  Bruno Haible  <bruno@clisp.org>
35158
35159         * modules/c-strcasestr: New file.
35160         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
35161
35162 2005-10-11  Bruno Haible  <bruno@clisp.org>
35163
35164         * modules/c-strcase: New file.
35165         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
35166
35167 2005-10-11  Bruno Haible  <bruno@clisp.org>
35168
35169         * lib/strcasecmp.c: Include limits.h.
35170         (strcasecmp): Avoid integer overflow on exotic platforms.
35171         * lib/strncasecmp.c: Include limits.h.
35172         (strncasecmp): Avoid integer overflow on exotic platforms.
35173         Reported by Paul Eggert.
35174
35175 2005-10-11  Bruno Haible  <bruno@clisp.org>
35176
35177         * lib/c-strcasestr.h: New file, from GNU gettext.
35178         * lib/c-strcasestr.c: New file, from GNU gettext.
35179
35180 2005-10-11  Bruno Haible  <bruno@clisp.org>
35181
35182         * lib/c-strcase.h: New file, from GNU gettext.
35183         * lib/c-strcasecmp.c: New file, from GNU gettext.
35184         * lib/c-strncasecmp.c: New file, from GNU gettext.
35185
35186 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35187
35188         * modules/mempcpy (License): GPL -> LGPL.
35189         * modules/strchrnul (License): Likewise.
35190         * modules/sysexits (License): Likewise.
35191
35192 2005-10-08  Simon Josefsson  <jas@extundo.com>
35193
35194         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
35195
35196 2005-10-07  Simon Josefsson  <jas@extundo.com>
35197
35198         * m4/memxor.m4: Remove gl_C_RESTRICT call.
35199
35200 2005-10-06  Simon Josefsson  <jas@extundo.com>
35201
35202         * tests/test-hmac-md5.c: New file.
35203
35204         * modules/hmac-md5-tests: New file.
35205
35206         * modules/hmac-md5: New file.
35207
35208 2005-10-06  Simon Josefsson  <jas@extundo.com>
35209
35210         * m4/hmac-md5.m4: New file.
35211
35212         * m4/memxor.m4: Require gl_C_RESTRICT.
35213
35214 2005-10-06  Simon Josefsson  <jas@extundo.com>
35215
35216         * lib/memxor.c (memxor): Avoid casts and warnings.
35217
35218 2005-10-06  Simon Josefsson  <jas@extundo.com>
35219
35220         * lib/hmac-md5.c: New file.
35221
35222         * lib/hmac.h: New file.
35223
35224 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
35225
35226         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
35227         promotes to int, not unsigned int, to catch the AIX 5.3
35228         compiler bug.
35229
35230 2005-10-05  Simon Josefsson  <jas@extundo.com>
35231
35232         * modules/memxor: New file.
35233
35234         * modules/iconv (Files): Move config.rpath to havelib, it is used
35235         there.
35236
35237         * modules/havelib (Files): Add config.rpath.
35238
35239 2005-10-05  Simon Josefsson  <jas@extundo.com>
35240
35241         * m4/memxor.m4: New file.
35242
35243 2005-10-05  Simon Josefsson  <jas@extundo.com>
35244
35245         * lib/memxor.c (memxor): Fix compiler error.
35246
35247         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
35248         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
35249
35250         * lib/memxor.h, lib/memxor.c: New files.
35251
35252         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
35253         we assume all systems have it, suggested by Jim Meyering
35254         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
35255         any systems lack sys/socket.h; mingw32 is known to lack it, but we
35256         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
35257         same reasons.
35258
35259 2005-10-05  Simon Josefsson  <jas@extundo.com>
35260
35261         * config/srclist.txt: Add glibc bug 1423 for md5.h.
35262
35263 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
35264
35265         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
35266         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
35267         needed, since the source code now assumes these .h files.
35268
35269 2005-10-05  Derek Price  <derek@ximbiot.com>
35270
35271         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
35272
35273 2005-10-05  Bruno Haible  <bruno@clisp.org>
35274
35275         * modules/stdint (License): Change to LGPL.
35276
35277 2005-10-04  Simon Josefsson  <jas@extundo.com>
35278
35279         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
35280         D. Baushke" <mdb@gnu.org>.
35281
35282 2005-10-04  Bruno Haible  <bruno@clisp.org>
35283
35284         * lib/verify.h (verify_true): Provide alternative definition for C++.
35285
35286 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
35287
35288         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
35289         (SSIZE_MAX): New macro, if not already defined.
35290         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
35291         than 2 GiB.
35292
35293 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
35294
35295         Sync from coreutils.
35296         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
35297         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
35298         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
35299         ULLONG_MAX doesn't work with 2.7.2.1.
35300
35301 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
35302
35303         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
35304         From Ben Pfaff.
35305
35306         * modules/exclude (Depends-on): Depend on verify.
35307         * modules/strtoimax (Depends-on): Likewise.
35308         * modules/utimecmp (Depends-on): Likewise.
35309
35310 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
35311
35312         * lib/exclude.c: Include verify.h.
35313         (verify): Remove.  All callers changed to use verify.h's version.
35314         * lib/strtoimax.c: Likewise.
35315         * lib/utimecmp.c: Likewis.e
35316
35317         Sync from coreutils.
35318         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
35319         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
35320         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
35321         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
35322         bother returning ENOSYS if settimeofday or stime fails; just let
35323         them return whatever errno they want to return.
35324         * lib/utimens.c: Include unistd.h, for dup2.
35325         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
35326         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
35327
35328 2005-10-02  Jim Meyering  <jim@meyering.net>
35329
35330         Sync from coreutils.
35331         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
35332         from glibc-2.2.5 that fails for read-only files.
35333
35334 2005-10-02  Jim Meyering  <jim@meyering.net>
35335
35336         Sync from coreutils.
35337         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
35338         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
35339         `#if HAVE_CONFIG_H'.
35340         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
35341         Remove AT_FDCWD test.
35342         Do not consume the fd unless successful.
35343         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
35344         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
35345         block, so that we don't even try to compile it if settimeofday is
35346         available.  This works around a compilation failure on OSF1 V5.1,
35347         due to stime requiring a `long int*' while tv_sec is `int'.
35348
35349 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
35350
35351         Sync from coreutils.
35352         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
35353         against `yes', rather than just testing for nonempty.
35354
35355 2005-10-01  Simon Josefsson  <jas@extundo.com>
35356
35357         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
35358         and Darwin.
35359
35360         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
35361         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
35362         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
35363         freeaddrinfo and gai_strerror are declared by the POSIX headers.
35364         Check if struct addrinfo is declared.
35365
35366 2005-10-01  Simon Josefsson  <jas@extundo.com>
35367
35368         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
35369         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
35370         AI_* and EAI_* definitions.  Protect function declarations.
35371
35372 2005-10-01  Jim Meyering  <jim@meyering.net>
35373
35374         Sync from coreutils.
35375
35376         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
35377         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
35378         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
35379         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
35380         in the inet and nsl libraries.  Required on Solaris 5.7.
35381
35382 2005-10-01  Jim Meyering  <jim@meyering.net>
35383
35384         Sync from coreutils.
35385         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
35386         in the inet and nsl libraries.  Required on Solaris 5.7.
35387
35388 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
35389
35390         * lib/getdelim.c (getdelim): Remove unused variables.
35391
35392 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
35393
35394         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
35395         so that the code works even with ancient cpp.  Portability problem
35396         with GCC 2.7.2.1 reported by Thomas M.Ott.
35397
35398 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
35399
35400         * modules/regex (Depends-on): Add strcase.
35401
35402         * modules/gethostname (Licence): Change from GPL to LGPL, since
35403         gethostname.c is a trivial implementation of a standard library
35404         function.
35405         * modules/poll (License): Change from GPL to LGPL, since it's
35406         derived from LGPL code.
35407
35408 2005-09-27  Jim Meyering  <jim@meyering.net>
35409
35410         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
35411         HAVE_CONFIG_H.
35412
35413         * lib/intprops.h (signed_type_or_expr__): Define.
35414         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
35415         for unsigned types.
35416
35417 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
35418
35419         * lib/verify.h (verify_expr): Remove, replacing with:
35420         (verify_true): New macro that returns true instead of void.
35421         (verify_type__): Remove.
35422         (verify): Use verify_true rather than verify_type__.
35423
35424 2005-09-26  Bruno Haible  <bruno@clisp.org>
35425
35426         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
35427         is necessary.
35428         (lib_SOURCES): Remove mbchar.c.
35429         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
35430         (Files): Add m4/mbrtowc.m4.
35431         * modules/mbiter: Likewise.
35432         * modules/mbuiter: Likewise.
35433
35434 2005-09-26  Bruno Haible  <bruno@clisp.org>
35435
35436         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
35437         compile mbchar.c if they are not both present.
35438         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
35439         * m4/mbiter.m4 (gl_MBITER): Likewise.
35440         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
35441         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
35442         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
35443
35444 2005-09-25  Jim Meyering  <jim@meyering.net>
35445
35446         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
35447         also uses socklen_t.
35448
35449 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
35450
35451         * lib/utimens.c (ENOSYS): Define if not already defined.
35452         (futimens): Support having a null PATH if the file descriptor
35453         is nonnegative.
35454
35455         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
35456         Remove.
35457         (__attribute): Define to empty unless GCC 3.1 or later.
35458         This works around a core dump on OpenBSD 3.4, which has GCC
35459         2.95.3, which dumps core when given __attribute__(()).  It also
35460         simplifies other tests, since we really don't want to bother with
35461         worrying about which ancient version of GCC supported what.
35462         Original problem reported by Yoann Vandoorselaere, with part of
35463         the fix suggested by Derek Price.
35464
35465 2005-09-24  Jim Meyering  <jim@meyering.net>
35466
35467         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
35468         so we can once again use a positive bitfield width of 1 -- now we
35469         don't have to explain why we were using a bitfield width of 2.
35470
35471 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
35472
35473         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
35474         and similarly for the other external symbols.  Problem reported
35475         by James Gallager.
35476
35477         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
35478         bug reported by Jim Meyering.
35479
35480         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
35481         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
35482         not needed, since socklen is a prerequisite module.
35483
35484 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
35485
35486         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
35487         Problem reported by Eric Blake.
35488         (getaddrinfo): Initialize se so that it's not garbage.
35489         Redo internal storage allocation so that it doesn't make unportable
35490         assumptions about alignment.
35491         Fix a memory leak.
35492
35493         * lib/utimens.c (futimens): Use futimesat if available.
35494         Prefer it to futimes since it doesn't have the futimes bug.
35495
35496         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
35497         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
35498         Instead, declare a function that returns a pointer to an array,
35499         and use verify_type__ to declare the size of the array.
35500         Problem and germ of a solution reported by Bruno Haible.
35501         (verify_type__): Use 2, not 1, for bitfield size, to avoid
35502         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
35503
35504 2005-09-23  Jim Meyering  <jim@meyering.net>
35505
35506         Sync from coreutils.
35507         Correct build failure (socklen_t not defined) on at least
35508         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
35509         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
35510
35511 2005-09-23  Jim Meyering  <jim@meyering.net>
35512
35513         * modules/getaddrinfo (Depends-on): Add socklen.
35514
35515 2005-09-23  Bruno Haible  <bruno@clisp.org>
35516
35517         * tests/test-verify.c: New file.
35518
35519 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
35520
35521         Sync from coreutils.
35522
35523         * modules/argmatch (Depends-on): Add verify.
35524         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
35525         unistd-safer.
35526         * modules/save-cwd (Depends-on): Likewise.
35527
35528         * modules/openat (Files): Add lib/openat-die.c.
35529         (Depends-on): Remove error, exitfail.
35530         Add dirname.
35531
35532         * modules/verify: New file.
35533         * MODULES.html.sh (Diagnostics <assert.h>): New section,
35534         with "verify" module.
35535
35536 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
35537
35538         Sync from coreutils.
35539
35540         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
35541         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
35542         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
35543         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
35544         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
35545         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
35546         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
35547         Don't bother checking for string.h, stdlib.h, unistd.h.
35548         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
35549         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
35550         module's job.
35551         * m4/jm-macros.m4 (gl_MACROS): Likewise.
35552         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
35553
35554         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
35555         (gl_GETDATE): Use it.
35556
35557         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
35558
35559 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
35560
35561         Sync from coreutils.
35562
35563         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
35564         stat-time.h.
35565         * lib/argmatch.h: Include verify.h
35566         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
35567         (ARGMATCH_ASSERT): Remove; unused.
35568         * lib/canonicalize.c: Assume STDC_HEADERS.
35569         * lib/exclude.c: Include "strcase.h".
35570         * lib/regex_internal.h [!defined _LIBC]: Likewise.
35571         * lib/getusershell.c: Include stdio--.h rather than stdio.h
35572         and stdio-safer.h.
35573         (getusershell): Call fopen, not fopen_safer.
35574         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
35575         Do not include unistd-safer.h.
35576         (save_cwd): Don't call fd_safer; no longer needed
35577         now that we include fcntl--.h.
35578
35579         * lib/getdate.y (relative_time): New type.
35580         (RELATIVE_TIME_0): New constant.
35581         (parser_control): Use relative_time instead of doing it ourselves.
35582         (%union): Add new relative_time rel member.
35583         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
35584         Now typeless.
35585         (relunit, relunit_snumber): Now of type rel.
35586         (zone, rel, relunit, get_date): Adjust to above changes.
35587
35588         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
35589         Do not include unistd-safer.h.
35590         (getloadavg): Don't call fd_safer; no longer needed
35591         now that we include fcntl--.h.
35592
35593         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
35594         (make_dir_parents): Treat ENOSYS like EEXIST.
35595
35596         Improve quality of diagnostics on restore_cwd failure.
35597         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
35598         (make_dir_parents): Last arg is now int * (for errno), not bool *.
35599         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
35600         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
35601         each time through the loop.  Do not diagnose restore_cwd failure;
35602         that is the caller's job (and perhaps the caller does not care).
35603
35604         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
35605         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
35606         If the file already exists but is not a directory, don't bother
35607         to try to make its parents.
35608         Close potential file descriptor leak if we can't chdir("/") (!).
35609         Don't always return true if chdir($PWD) fails; return true only
35610         if the requested action was done successfully (except for the
35611         chdir($PWD)).
35612         Don't log final directory unless we actually made it.
35613         Refactor to avoid duplicate code to fix up permissions.
35614         Don't attempt to fix up parent permissions if chdir($PWD) fails.
35615
35616         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
35617         to make it a bit faster and (I hope) clearer.
35618         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
35619         Fix bug in formats like %2N.
35620
35621         * lib/verify.h: New file.
35622
35623 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
35624
35625         Sync from coreutils.
35626         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
35627
35628 2005-09-22  Jim Meyering  <jim@meyering.net>
35629
35630         Sync from coreutils.
35631
35632         * m4/lstat.m4 (gl_FUNC_LSTAT):
35633         Use AC_LIBSOURCES to require lstat.c and lstat.h.
35634         Remove obsolete comment.
35635         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
35636         * m4/xstrtod.m4: Likewise.
35637
35638         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
35639
35640 2005-09-22  Jim Meyering  <jim@meyering.net>
35641
35642         Sync from coreutils.
35643
35644         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
35645
35646         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
35647         the .tm_year member, since otherwise gcc-4.0 would now warn about
35648         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
35649
35650         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
35651         order to avoid an unsuppressible warning from gcc on 64-bit systems.
35652
35653         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
35654         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
35655         when run in a time zone for which daylight savings time is in effect
35656         for the starting date.
35657
35658         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
35659         stop us from restricting permissions of just-created absolute-named
35660         directories.
35661         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
35662         to restore initial working directory.
35663         * lib/mkdir-p.c (make_dir_parents): New parameter:
35664         different_working_dir, to tell caller if/when we change the working
35665         directory and are unable to return to the initial one.
35666         * lib/mkdir-p.h (make_dir_parents): Update prototype.
35667         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
35668         `return false'.  This fixes a bug introduced on 2004-07-30.
35669
35670         * lib/openat.c (fdopendir): Be sure to close the supplied
35671         file descriptor before returning.  This makes our replacement
35672         implementation a little closer to Solaris's, where fdopendir
35673         ties the file descriptor to the returned DIR* pointer.
35674         * lib/openat.c (unlinkat): New function.
35675         * lib/openat.h (unlinkat): Add prototype.
35676         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
35677         (openat_restore_fail): Rename from openat_restore_die.
35678         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
35679
35680         Provide an alternative to exiting immediately upon save_cwd or
35681         restore_cwd failure.  Now, an application can arrange e.g.,
35682         to perform a longjump in that case.
35683         * lib/openat.c: Include dirname.h.
35684         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
35685         (rpl_openat, fdopendir, fstatat): Call openat_save_die
35686         and openat_restore_die rather than calling error directly.
35687         Don't include "error.h" or "exitfail.h"; they're no longer needed.
35688
35689         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
35690         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
35691         define.
35692
35693         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
35694         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
35695                             int utc, int nanoseconds);
35696         Background:
35697         date should not have to allocate a megabyte of virtual memory to
35698         handle a format argument like +%1048575T.  When implemented with
35699         strftime, it must allocate such a buffer, use strftime to fill it
35700         in, print it, then free it.
35701         With fprintftime, it simply prints everything and exits.
35702         With no need for memory allocation, that's one fewer way to fail.
35703         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
35704         optional field width, not before, so we accept %9:z, not %:9z.
35705         (my_strftime): Be sure to use L_('x') for literals.
35706
35707         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
35708         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
35709         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
35710         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
35711         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
35712         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
35713         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
35714         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
35715         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
35716         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
35717         * lib/xgethostname.c, lib/xreadlink.c:
35718         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
35719
35720         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
35721         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
35722         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
35723         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
35724         and don't include <sys/file.h>).
35725
35726 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
35727
35728         Sync from coreutils.
35729
35730         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
35731         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
35732         [!LDAV_DONE]: Avoid unused variable warning.
35733
35734 2005-09-21  Bruno Haible  <bruno@clisp.org>
35735
35736         * lib/unicodeio.h (unicode_to_mb): New declaration.
35737
35738 2005-09-20  Derek Price  <derek@ximbiot.com>
35739
35740         * lib/getaddrinfo.c: Don't include <netdb.h> included from
35741         getaddrinfo.h.
35742
35743 2005-09-20  Bruno Haible  <bruno@clisp.org>
35744
35745         * gnulib-tool: Remove trailing slashes from the values specified for
35746         --source-base, --m4-base, --tests-base, --aux-dir.
35747         Suggested by Simon Josefsson <jas@extundo.com>.
35748
35749 2005-09-20  Bruno Haible  <bruno@clisp.org>
35750
35751         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
35752         func_modules_to_filelist, func_import, func_create_testdir): Make all
35753         sorting results locale-independent, so that gnulib-cache.m4 doesn't
35754         change when gnulib-tool is invoked in a different locale.
35755
35756 2005-09-19  Simon Josefsson  <jas@extundo.com>
35757
35758         * m4/socklen.m4: Fix typo.
35759
35760 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35761
35762         Use a consistent style for including <config.h>.
35763         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
35764         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
35765         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
35766         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
35767         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
35768         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
35769         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
35770         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
35771         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
35772         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
35773         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
35774         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
35775         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
35776         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
35777         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
35778         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
35779         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
35780         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
35781         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
35782         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
35783         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
35784         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
35785         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
35786         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
35787         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
35788         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
35789         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
35790         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
35791         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
35792         lib/xstrtoumax.c, lib/yesno.c:
35793         Standardize inclusion of config.h.
35794         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
35795         lib/inttostr.h:  Removed inclusion of config.h from header files.
35796         * lib/inttostr.c:  Adjusted in-tree users.
35797         * lib/timespec.h: Remove superfluous warning to include config.h.
35798         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
35799         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
35800         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
35801         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
35802         config.h with HAVE_CONFIG_H.
35803
35804 2005-09-19  Jim Meyering  <jim@meyering.net>
35805
35806         * modules/pathmax (License): Change to LGPL.
35807
35808 2005-09-19  Derek Price  <derek@ximbiot.com>
35809
35810         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
35811
35812 2005-09-19  Bruno Haible  <bruno@clisp.org>
35813
35814         * gnulib-tool (import): Provide default for --tests-base.
35815
35816 2005-09-19  Bruno Haible  <bruno@clisp.org>
35817
35818         * doc/quote.texi: New file, extracted from gnulib.texi.
35819         * doc/ctime.texi: New file, extracted from gnulib.texi.
35820         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
35821         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
35822         * doc/gnulib.texi: Include them.
35823
35824 2005-09-18  Bruno Haible  <bruno@clisp.org>
35825
35826         Portability fix.
35827         * gnulib-tool (func_readlink): New function.
35828         (func_ln_if_changed): Use it.
35829
35830 2005-09-18  Bruno Haible  <bruno@clisp.org>
35831
35832         * gnulib-tool: Support --with-tests also with --import.
35833         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
35834         (func_import): Use variables $testsbase and $inctests. Emit a
35835         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
35836         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
35837         SUBDIRS += $testsdir.
35838         (func_create_testdir): Update.
35839
35840 2005-09-18  Bruno Haible  <bruno@clisp.org>
35841
35842         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
35843         instead of $dry_run.
35844         (func_cp_if_changed, func_mv_if_changed): Remove functions.
35845         (func_ln_if_changed): Don't handle dry-run here.
35846         (func_import): In dry-run mode, detect more precisely which actions
35847         would be performed, and don't use "...ing" verbs.
35848
35849 2005-09-18  Bruno Haible  <bruno@clisp.org>
35850
35851         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
35852         (func_import): Use join on two temporary files instead of three nested
35853         loops, in order to determine which files are new or old.
35854
35855 2005-09-18  Bruno Haible  <bruno@clisp.org>
35856
35857         * gnulib-tool (func_import): Comment out code that spits out the
35858         new files with --dry-run.
35859
35860 2005-09-18  Bruno Haible  <bruno@clisp.org>
35861
35862         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
35863
35864 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
35865
35866         * lib/stat-time.h: New file.
35867         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
35868         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
35869         in a different way.
35870         (timespec_cmp): New function.
35871         * lib/utimecmp.c: Include stat-time.h.
35872         (SYSCALL_RESOLUTION): Depend on whether various struct stat
35873         members exist, not on the obsolescent ST_MTIM_NSEC.
35874         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
35875
35876 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
35877
35878         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
35879
35880 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
35881
35882         * MODULES.html.sh (File system functions): Add stat-time.
35883         * modules/stat-time: New file.
35884         * modules/timespec (Files): Remove m4/st_mtim.m4; this
35885         is now done in a different way, by the stat-time module.
35886         * modules/utimecmp (Depends-on): Add stat-time.
35887
35888 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
35889
35890         * m4/st_mtim.m4: Remove.  Superseded by...
35891         * m4/stat-time.m4: New file.
35892         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
35893         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
35894
35895 2005-09-15  Derek Price  <derek@ximbiot.com>
35896
35897         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
35898
35899 2005-09-15  Derek Price  <derek@ximbiot.com>
35900
35901         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
35902         * lib/regex_internal.c: Ditto, using this...
35903         (__GNUC_PREREQ): ...new macro.
35904         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
35905         using...
35906         (__GNUC_PREREQ): ...this new macro.
35907
35908         * lib/strstr.h: Include string.h. Define strstr as a macro here.
35909
35910 2005-09-15  Derek Price  <derek@ximbiot.com>
35911             Paul Eggert  <eggert@cs.ucla.edu>
35912
35913         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
35914         changes, consolidating in...
35915         * lib/regex_internal.h: ...this file.
35916
35917 2005-09-13  Jim Meyering  <jim@meyering.net>
35918
35919         * lib/canon-host.c: Filter through gnu indent and reword comments
35920         slightly.
35921         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
35922
35923 2005-09-13  Derek Price  <derek@ximbiot.com>
35924
35925         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
35926         failure.
35927         Reported by Jim Meyering  <jim@meyering.net>.
35928
35929 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
35930
35931         * lib/base64.c: Typo.
35932         (base64_encode): Put b64str in initialized data section.
35933
35934 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
35935
35936         Merge glibc and coreutils changes into gnulib, plus a few
35937         extra fixes.
35938         * lib/md5.c: Use #error rather than a string.
35939         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
35940         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
35941         (__attribute__): Define to empty for non recent-GCC.
35942         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
35943         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
35944         Renamed from their non-__ counterparts, with new macros replacing
35945         them if not _LIBC.  Add __THROW attribute.
35946         (rol): Remove.
35947         (struct md5_ctx): Align buffer if using GCC.
35948         * lib/sha1.h (struct sha1_ctx): Likewise.
35949         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
35950         The old name was backwards.
35951         (NOTSWAP): Remove; not used.
35952         (rol): New macro, moved here from md5.h.
35953         (sha1_process_block): Remove a FIXME that doesn't make sense.
35954
35955 2005-09-12  Derek Price  <derek@ximbiot.com>
35956
35957         Return usable errors from canon-host.
35958         * lib/canon-host.h: New file.
35959         * lib/canon-host.c (canon_host): Wrap...
35960         (canon_host_r): ...this new function, which now relies exclusively on
35961         getaddrinfo.
35962         (ch_strerror): New function.
35963         (last_cherror): New global.
35964         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
35965         interface.
35966         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
35967         void *.
35968         (freeaddrinfo): Free ai->ai_canonname when set.
35969
35970 2005-09-12  Derek Price  <derek@ximbiot.com>
35971
35972         Make canon-host require getaddrinfo.
35973         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
35974         AC_LIBSOURCE canon-host.h.  Call...
35975         (gl_PREREQ_CANON_HOST): ...this new function, which requires
35976         gl_GETADDRINFO.
35977         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
35978
35979 2005-09-12  Derek Price  <derek@ximbiot.com>
35980
35981         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
35982         LGPL.
35983         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
35984
35985 2005-09-12  Derek Price  <derek@ximbiot.com>
35986
35987         * lib/gai_strerror.c: Include config.h when available.  Include
35988         getaddrinfo.h before other headers to test interface.
35989         Reported by Larry Jones <lawrence.jones@ugs.com>.
35990
35991 2005-09-12  Derek Price  <derek@ximbiot.com>
35992             Paul Eggert  <eggert@cs.ucla.edu>
35993
35994         * modules/glob (Files): Add glob-libc.h.
35995
35996 2005-09-12  Derek Price  <derek@ximbiot.com>
35997             Paul Eggert  <eggert@cs.ucla.edu>
35998
35999         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
36000         glob_.h, glob-libc.h.
36001         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
36002
36003 2005-09-12  Derek Price  <derek@ximbiot.com>
36004             Paul Eggert  <eggert@cs.ucla.edu>
36005
36006         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
36007         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
36008         protecting things that should be done only in gnulib contexts.
36009         * lib/glob_.h: New file, containing only the glob things needed for
36010         gnulib.
36011         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
36012         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
36013         (glob, globfree, glob_pattern_p): Now defined simply in terms of
36014         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
36015         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
36016         and to respect the namespace rules better.
36017
36018 2005-09-08  Simon Josefsson  <jas@extundo.com>
36019
36020         * modules/socklen: New file.
36021
36022 2005-09-08  Simon Josefsson  <jas@extundo.com>
36023
36024         * m4/socklen.m4: New file.
36025
36026 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36027
36028         * modules/utimens (Files): Add m4/utimbuf.m4, since
36029         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
36030         Reported by Sergey Poznyakoff.
36031
36032 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36033
36034         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
36035         definitions, since that's the preferred style in glibc.
36036         Fix a minor spacing issue, and update copyright notice to match
36037         glibc's.
36038
36039 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36040
36041         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
36042
36043 2005-09-06  Simon Josefsson  <jas@extundo.com>
36044
36045         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
36046         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
36047
36048 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
36049
36050         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
36051         warning.
36052
36053 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
36054
36055         * config/srclist.txt: Add glibc bug 1302.
36056
36057 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
36058
36059         Change bitset word type from unsigned int to unsigned long int,
36060         as this has better performance on typical 64-bit hosts.
36061         Port bitset code to hosts with unusual word sizes.
36062         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
36063         (build_collating_symbol):
36064         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
36065         argument is a bitset.  This is merely a style issue, but it makes
36066         it clearer that an entire array is expected.
36067         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
36068         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
36069         Port to the case where bitset_word is not the same as unsigned int.
36070         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
36071         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
36072         Likewise.
36073         * lib/regexec.c (check_dst_limits_calc_pos_1,
36074         check_subexp_matching_top):
36075         (build_trtable, group_nodes_into_DFAstates):
36076         Likewise.
36077         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
36078         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
36079         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
36080         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
36081         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
36082         * lib/regcomp.c (optimize_subexps, lower_subexp):
36083         Work even if bitset_word has holes in its bitwise representation.
36084         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
36085         * lib/regexec.c (check_dst_limits_calc_pos_1,
36086         check_subexp_matching_top):
36087         Likewise.
36088         * lib/regex_internal.c (re_string_reconstruct):
36089         Don't assume UCHAR_MAX == 255.
36090         * lib/regex_internal.h (bitset_set_all): Likewise.
36091         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
36092         All uses changed.
36093         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
36094         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
36095         All uses changed.
36096         (BITSET_WORD_MAX): New macro.
36097         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
36098         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
36099         (bitset_empty, bitset_copy):
36100         Prefer sizeof (bitset) to multiplying it out ourselves.
36101         (bitset_not_merge): Remove; unused.
36102         (bitset_contain): Return bool, not unsigned int with one bit on.
36103         All callers changed.
36104         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
36105         alignment than re_node_set; do this by defining a new internal
36106         type struct dests_alloc and using it to allocate memory.
36107
36108 2005-09-05  Bruno Haible  <bruno@clisp.org>
36109
36110         * gnulib-tool (func_import): Fix comparison in handling of symbolic
36111         links.
36112
36113 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
36114
36115         * modules/size_max (Makefile.am): Add size_max.h
36116
36117 2005-09-04  Derek Price  <derek@ximbiot.com>
36118
36119         * gnulib-tool (func_import): Fix reversed $symbolic logic.
36120
36121 2005-09-03  Simon Josefsson  <jas@extundo.com>
36122
36123         * gnulib-tool: Fix typo.
36124
36125 2005-09-03  Simon Josefsson  <jas@extundo.com>
36126
36127         * config/srclist.txt: Add glibc bug 1293.
36128
36129 2005-09-03  Derek Price  <derek@ximbiot.com>
36130
36131         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
36132         From Larry Jones <lawrence.jones@ugs.com>.
36133
36134 2005-09-02  Simon Josefsson  <jas@extundo.com>
36135
36136         * modules/socklen: New file.
36137
36138 2005-09-02  Simon Josefsson  <jas@extundo.com>
36139
36140         * modules/havelib: New module.
36141
36142         * modules/gettext, modules/iconv, modules/lock, modules/readline:
36143         Use havelib.
36144
36145 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
36146
36147         Check for arithmetic overflow when calculating sizes, to prevent
36148         some buffer-overflow issues.  These patches are conservative, in the
36149         sense that when I couldn't determine whether an overflow was possible,
36150         I inserted a run-time check.
36151         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
36152         macros.
36153         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
36154         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
36155         (re_xnrealloc, re_x2nrealloc): New inline functions.
36156         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
36157         parse_bracket_exp):
36158         (build_equiv_class, build_charclass): Check for arithmetic overflow
36159         in size expression calculations.
36160         * lib/regex_internal.c (re_string_realloc_buffers):
36161         (build_wcs_upper_buffer, re_node_set_add_intersect):
36162         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
36163         (re_dfa_add_node, register_state): Likewise.
36164         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
36165         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
36166         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
36167         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
36168
36169 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
36170
36171         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
36172         m4/ulonglong.m4.  Problem reported by Martin Lambers.
36173
36174 2005-09-02  Bruno Haible  <bruno@clisp.org>
36175
36176         Support for lib vs. lib64 distinction on biarch platforms.
36177         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
36178         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
36179         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
36180
36181 2005-09-02  Bruno Haible  <bruno@clisp.org>
36182
36183         * gnulib-tool (import): In the other first-use case, provide defaults
36184         as well.
36185
36186 2005-09-02  Bruno Haible  <bruno@clisp.org>
36187
36188         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
36189         patches not yet found in the latest gettext release.
36190
36191 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
36192
36193         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
36194         to avoid a collision with bits/local_lim.h in glibc.
36195         All uses changed.  Problem reported by Dmitry V. Levin in
36196         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
36197
36198         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
36199         bugs in int versus size_t comparisons.
36200         (re_string_context_at): Fix bug where the code assumed that
36201         Idx is signed.
36202
36203         Use bool where appropriate.
36204         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
36205         All callers changed.
36206         (calc_eclosure_iter): Likewise, for ROOT arg.
36207         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
36208         (build_charclass_op): Likewise, for NON_MATCH arg.
36209         * lib/regex_internal.c (re_string_allocate, re_string_construct):
36210         (re_string_construct_common): Likewise, for ICASE arg.
36211         * lib/regexec.c (re_search_2_stub, re_search_stub):
36212         Likewise, for RET_LEN arg.
36213         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
36214         (set_regs): Likewise, for FL_BACKTRACK arg.
36215         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
36216         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
36217         (calc_eclosure_iter, parse_bracket_exp):
36218         Use bool for internal variables that are booleans.
36219         * lib/regexec.c (re_search_internal, check_matching,
36220         proceed_next_node):
36221         (set_regs, build_sifted_states, sift_states_bkref):
36222         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
36223         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
36224         (find_collation_sequence_value):
36225         Likewise.
36226         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
36227         (re_node_set_compare):
36228         Return bool, not int. All callers changed.
36229         * lib/regexec.c (check_halt_node_context, check_dst_limits):
36230         (build_trtable, check_node_accept): Likewise.
36231         * lib/regex_internal.h: Include stdbool.h.
36232
36233         Fix bugs uncovered when converting to bool.
36234         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
36235         failure instead of charging ahead blindly.
36236         * lib/regex_internal.c (register_state): Likewise.
36237         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
36238         for freeing internal storage.
36239         (group_nodes_into_DFA_states): Use unsigned int, not int, for
36240         bitset pieces used as boolean, to avoid undefined behavior
36241         on hosts that do int overflow checking.
36242
36243 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
36244
36245         * config/srclist.txt: Add glibc bugs 1285-1287.
36246
36247 2005-09-01  Jim Meyering  <jim@meyering.net>
36248
36249         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
36250         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
36251         Require gl_STAT_MACROS, too.
36252
36253 2005-09-01  Bruno Haible  <bruno@clisp.org>
36254
36255         * gnulib-tool (import): In the first-use case, provide defaults.
36256
36257 2005-09-01  Bruno Haible  <bruno@clisp.org>
36258
36259         * gnulib-tool (func_import): Remove the .tmp files.
36260
36261 2005-09-01  Bruno Haible  <bruno@clisp.org>
36262
36263         * gnulib-tool (func_import): Fix handling of symbolic links.
36264
36265 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36266
36267         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
36268         old glibc regex code mishandles strings longer than 2**31 bytes.
36269         This patch fixes this when the regex code is used in gnulib
36270         (i.e., outside glibc).
36271
36272         This patch should not affect the use of the regex code inside
36273         glibc.  No doubt this problem also needs to be handled for glibc
36274         as well, but the result will be an incompatible change to the
36275         glibc ABI, and the old ABI will have to be supported too.  That
36276         can be the the subject for another patch.
36277
36278         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
36279         governing whether the rest of this patch is active.  By default,
36280         the macro is disabled and the patch has no effect.
36281         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
36282         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
36283         (struct re_pattern_buffer, re_search, re_search_2, re_match):
36284         (re_match_2, re_set_registers): Use the new types.
36285         * lib/regex_internal.h (Idx, re_hashval_t): New types.
36286         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
36287         New macros.
36288         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
36289         (re_string_context_at, bin_tree_t, re_dfastate_t):
36290         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
36291         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
36292         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
36293         (re_string_char_size_at, re_string_wchar_at):
36294         (re_string_elem_size_at):
36295         Use the new types and macros to port to 64-bit hosts.
36296         Use unsigned types for internal values, so that the code
36297         mostly works even for arrays larger than SSIZE_MAX.
36298         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
36299         (search_duplicated_node, calc_eclosure_iter, fetch_number):
36300         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
36301         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
36302         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
36303         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
36304         (calc_inveclosure, parse_dup_op, build_range_exp):
36305         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
36306         (fetch_number, create_token_tree, mark_opt_subexp):
36307         Likewise.
36308         * lib/regex_internal.c (re_string_construct_common,
36309         create_ci_newstate):
36310         (create_cd_newstate, re_string_allocate, re_string_construct):
36311         (re_string_realloc_buffers, build_wcs_upper_buffer):
36312         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
36313         (re_string_reconstruct, re_string_peek_byte_case):
36314         (re_string_fetch_byte_case, re_string_context_at):
36315         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
36316         (re_node_set_init_copy, re_node_set_add_intersect):
36317         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
36318         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
36319         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
36320         (re_acquire_state, re_acquire_state_context, register_state):
36321         Likewise.
36322         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
36323         search_cur_bkref_entry):
36324         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
36325         (re_search_internal, re_search_2_stub, re_search_stub)
36326         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
36327         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
36328         (update_cur_sifted_state, check_dst_limits):
36329         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
36330         (check_subexp_limits, sift_states_bkref, merge_state_array):
36331         (check_subexp_matching_top, get_subexp, get_subexp_sub):
36332         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
36333         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
36334         (expand_bkref_cache, check_node_accept_bytes):
36335         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
36336         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
36337         (acquire_init_state_context, check_halt_node_context):
36338         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
36339         (sift_states_backward, clean_state_log_if_needed):
36340         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
36341         (find_recover_state, transit_state_sb, transit_state_mb):
36342         (transit_state_bkref, build_trtable, match_ctx_clean):
36343         Likewise.
36344         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
36345         to work around an assumption that REG_MISSING is negative.
36346
36347         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
36348         (seek_collating_symbol_entry) [defined _LIBC]:
36349         (lookup_collation_sequence_value) [defined _LIBC]:
36350         (build_range_exp, build_collating_symbol) [defined _LIBC]:
36351         Use prototypes rather than old-style function definitions.
36352         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
36353         (transit_state_sb) [0]:
36354         (find_collation_sequence_value) [defined _LIBC]: Likewise.
36355
36356         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
36357         rm_eo.
36358
36359         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
36360         (optimize_subexps, lower_subexp):
36361         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
36362         since the signed shift might overflow.  Use 1u<<31 instead.
36363         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
36364         Likewise.
36365         * lib/regexec.c (check_dst_limits_calc_pos_1,
36366         check_subexp_matching_top): Likewise.
36367
36368         * lib/regcomp.c (optimize_subexps, lower_subexp):
36369         Use CHAR_BIT rather than 8, for clarity.
36370         * lib/regexec.c (check_dst_limits_calc_pos_1):
36371         (check_subexp_matching_top): Likewise.
36372         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
36373         have to worry about portability issues when shifting it left.
36374         Remove no-longer-needed test for table_size > 0.
36375         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
36376         in a word, as the resulting behavior is undefined.
36377         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
36378         in one case, a <= should have been an <, and in another case the
36379         whole test was missing.
36380         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
36381         the standard name CHAR_BIT.
36382         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
36383         this is not true on one's complement and signed-magnitude hosts.
36384
36385         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
36386         next_last_offset.
36387         (struct re_dfa_t): Remove unused member states_alloc.
36388         * lib/regcomp.c (init_dfa): Don't initialize unused members.
36389
36390 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36391
36392         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
36393         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
36394         and large-file glibc and in 32-bit large-file Solaris.
36395
36396 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36397
36398         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
36399         lengths fit in regoff_t; this isn't true if regoff_t is the same
36400         width as size_t.
36401         * lib/regex.c (re_search_internal): 5th arg is LAST_START
36402         (= START + RANGE) instead of RANGE.  This avoids overflow
36403         problems when regoff_t is the same width as size_t.
36404         All callers changed.
36405         (re_search_2_stub): Check for overflow when adding the
36406         sizes of the two strings.
36407         (re_search_stub): Check for overflow when adding START
36408         to RANGE; if it occurs, substitute the extreme value.
36409
36410 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36411
36412         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
36413
36414 2005-08-31  Jim Meyering  <jim@meyering.net>
36415
36416         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
36417         a pointer-to-const.
36418         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
36419         (register_state): Likewise.
36420         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
36421         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
36422         (group_nodes_into_DFAstates): Likewise.
36423
36424 2005-08-31  Jim Meyering  <jim@meyering.net>
36425
36426         * check-module: Add a FIXME comment.
36427
36428 2005-08-31  Eric Blake  <ebb9@byu.net>
36429
36430         * modules/unistd-safer (Files): Add unistd--.h.
36431         * modules/stdio-safer (Files): Add stdio--.h.
36432
36433 2005-08-31  Derek Price  <derek@ximbiot.com>
36434
36435         * lib/getdelim.c (getdelim): Return EOF on EOF.
36436         Reported by Larry Jones <lawrence.jones@ugs.com>.
36437
36438 2005-08-31  Bruno Haible  <bruno@clisp.org>
36439
36440         Avoid unnecessary diffs in the generated lib/Makefile.am.
36441         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
36442         the generated files.
36443         (func_import): Don't set cmd.
36444
36445 2005-08-31  Bruno Haible  <bruno@clisp.org>
36446
36447         * lib/strstr.c: Include <stddef.h>, for NULL.
36448         * lib/strcasestr.c: Likewise.
36449         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
36450
36451 2005-08-31  Bruno Haible  <bruno@clisp.org>
36452
36453         * gnulib-tool: New option --macro-prefix.
36454         (func_import): Use macro_prefix.
36455         (import): Handle option --macro-prefix.
36456
36457 2005-08-31  Bruno Haible  <bruno@clisp.org>
36458
36459         * gnulib-tool (import): Rename most ac_* variables to cached_*.
36460         Also use new variables cached_lgpl, cached_libtool.
36461
36462 2005-08-31  Bruno Haible  <bruno@clisp.org>
36463
36464         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
36465         always instantiating them.
36466
36467 2005-08-31  Bruno Haible  <bruno@clisp.org>
36468
36469         * gnulib-tool (func_import): Read the previous cached settings
36470         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
36471         earlier added by gnulib but are now dropped. Warn when a gnulib file
36472         overwrites a non-gnulib file.
36473
36474 2005-08-31  Bruno Haible  <bruno@clisp.org>
36475
36476         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
36477         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
36478         projects that don't keep autogenerated files in CVS. Put into
36479         actioncmd only the specified modules, not the transitive closure.
36480
36481 2005-08-31  Bruno Haible  <bruno@clisp.org>
36482
36483         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
36484         Create directories that shall be filled.
36485         (import): Don't look for gl_* macros in configure.ac. Recurse across
36486         all directories containing a gnulib-cache.m4 files, if meaningful.
36487
36488 2005-08-31  Bruno Haible  <bruno@clisp.org>
36489
36490         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
36491         (import): Set seen_libtool when we see gl_LIBTOOL.
36492
36493 2005-08-31  Bruno Haible  <bruno@clisp.org>
36494
36495         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
36496         declaration macro definitions from generated gnulib.m4.
36497
36498 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
36499
36500         * lib/iconvme.h: Add prototype for iconv_alloc.
36501
36502 2005-08-29  Simon Josefsson  <jas@extundo.com>
36503
36504         * lib/iconvme.c: Fix errno.
36505
36506 2005-08-29  Bruno Haible  <bruno@clisp.org>
36507
36508         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
36509         that it works when the directory contains spaces.
36510
36511 2005-08-29  Bruno Haible  <bruno@clisp.org>
36512
36513         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
36514
36515 2005-08-29  Bruno Haible  <bruno@clisp.org>
36516
36517         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
36518         Emit more advice.
36519
36520 2005-08-29  Bruno Haible  <bruno@clisp.org>
36521         and Stepan Kasal  <kasal@ucw.cz>
36522
36523         * check-module: If more parameters are given, check each of them
36524         separately; add more exceptions, as noted by Jim Meyering.
36525         (check_module): New procedure.
36526         (%exempt_header): Now contains all exceptions.
36527
36528 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
36529
36530         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
36531
36532 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
36533
36534         * lib/iconvme.c: Split iconv_string into iconv_alloc.
36535
36536 2005-08-28  Bruno Haible  <bruno@clisp.org>
36537
36538         * m4/gnulib-tool.m4: New file.
36539
36540 2005-08-27  Jim Meyering  <jim@meyering.net>
36541
36542         * modules/unistd-safer (Files): Add pipe-safer.c.
36543         * modules/fcntl-safer (Files): Add creat-safer.c.
36544
36545 2005-08-27  Jim Meyering  <jim@meyering.net>
36546
36547         * m4/stdlib-safer.m4: New file.  From coreutils.
36548         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
36549         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
36550         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
36551         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
36552         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
36553
36554 2005-08-27  Jim Meyering  <jim@meyering.net>
36555
36556         * lib/fopen-safer.c: Merge minor changes from coreutils.
36557         * lib/dup-safer.c: Likewise.
36558         * lib/fd-safer.c: Likewise.
36559
36560         Merge from coreutils.
36561         * lib/stdio--.h: New file.
36562         * lib/stdlib--.h: New file.
36563         * lib/mkstemp-safer.c: New file.
36564
36565         GNU tar needs these.
36566         * lib/pipe-safer.c: New file.
36567         * lib/creat-safer.c: New file.
36568         * lib/fcntl--.h (creat): Define to creat_safer.
36569         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
36570         * lib/unistd--.h (pipe): Define to pipe_safer.
36571         * lib/unistd-safer.h: Declare pipe_safer.
36572
36573 2005-08-26  Simon Josefsson  <jas@extundo.com>
36574
36575         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
36576         Haible <bruno@clisp.org>.
36577
36578 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
36579
36580         * lib/regex_internal.h: Remove all references to
36581         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
36582         or better.
36583         (bitset_not, bitset_merge, bitset_not_merge):
36584         (bitset_mask, re_string_allocate, re_string_construct):
36585         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
36586         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
36587         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
36588         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
36589         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
36590         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
36591         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
36592         (re_acquire_state_context):
36593         Remove unnecessary forward decls.
36594         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
36595         Put __attribute at function definition,
36596         now that the function decl has been removed.
36597         * lib/regex_internal.c (re_string_peek_byte_case):
36598         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
36599         Likewise.
36600
36601 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
36602
36603         * m4/regex.m4: Add AC_PREREQ(2.50).
36604         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
36605
36606 2005-08-25  Simon Josefsson  <jas@extundo.com>
36607
36608         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
36609         __fsetlocking.
36610
36611 2005-08-25  Simon Josefsson  <jas@extundo.com>
36612
36613         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
36614         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
36615         GLIBC specific code.
36616
36617 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36618
36619         Make regex safe for g++.  This fixes one real bug (an "err"
36620         that should have been "*err").  g++ problem reported by
36621         Sam Steingold.
36622         * lib/regex_internal.h (re_calloc): New macro, consistent with
36623         re_malloc etc.  All callers of calloc changed to use re_calloc.
36624         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
36625         not int.  All callers changed.
36626         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
36627         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
36628         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
36629         (find_recover_state): Change "err" to "*err"; this fixes what
36630         appears to be a real bug.
36631         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
36632         versus int.
36633
36634 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36635
36636         * modules/regex (Depends-on): Add malloc, since the code
36637         assumes that !malloc(0) means failure.
36638
36639 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36640
36641         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
36642
36643         alloca modernization/simplification for regex.
36644         * lib/regex.c: Remove portability cruft for alloca.  This no longer
36645         needs to be at the start of the file, and can be moved into
36646         regex_internal.h and simplified.
36647         * lib/regex_internal.h: Include <alloca.h>.
36648         (__libc_use_alloca) [!defined _LIBC]: New macro.
36649         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
36650         now works outside glibc.
36651
36652 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36653
36654         * config/srclist.txt: Add glibc bugs 1241, 1245.
36655
36656 2005-08-25  Jim Meyering  <jim@meyering.net>
36657
36658         * lib/open-safer.c: Include <config.h>.
36659         Otherwise, we'd lose LARGEFILE support in any file using
36660         e.g. "fcntl--.h"
36661
36662 2005-08-25  Bruno Haible  <bruno@clisp.org>
36663
36664         * m4/minmax.m4: Require autoconf 2.52.
36665         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
36666         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
36667         alternatives of translit over the alphabet.
36668         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
36669
36670 2005-08-24  Simon Josefsson  <jas@extundo.com>
36671
36672         * tests/test-getpass.c: New file.
36673
36674 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
36675
36676         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
36677         for GNU regex features.
36678
36679 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
36680
36681         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
36682         * lib/regex.h (regerror): Likewise.
36683
36684         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
36685         requires this.  (The code never needed it.)
36686
36687         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
36688         All uses of recently-renamed identifiers changed to use the new,
36689         POSIX-compliant names.  The code will build and run just fine
36690         without these changes, but it's better to eat our own dog food
36691         and use the standard-conforming names.
36692
36693         * lib/regex.h: Fix a multitude of POSIX name space violations.
36694         These changes have an effect only for programs that define
36695         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
36696         do not change anything for programs compiled in the normal way.
36697         Also, there is no effect on the ABI.
36698
36699         (_REGEX_SOURCE): New macro.
36700         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
36701         defined and _GNU_SOURCE is not; this fixes a name space violation.
36702
36703         Rename the following macros to obey POSIX requirements.
36704         The old names are still visible as macros if _REGEX_SOURCE is defined.
36705         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
36706         RE_BACKSLASH_ESCAPE_IN_LISTS.
36707         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
36708         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
36709         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
36710         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
36711         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
36712         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
36713         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
36714         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
36715         (REG_INTERVALS): renamed from RE_INTERVALS.
36716         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
36717         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
36718         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
36719         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
36720         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
36721         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
36722         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
36723         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
36724         RE_UNMATCHED_RIGHT_PAREN_ORD.
36725         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
36726         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
36727         (REG_DEBUG): renamed from RE_DEBUG.
36728         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
36729         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
36730         unusual, since we can't clash with the POSIX REG_ICASE.
36731         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
36732         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
36733         (REG_NO_SUB): renamed from RE_NO_SUB.
36734         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
36735         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
36736         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
36737         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
36738         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
36739         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
36740         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
36741         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
36742         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
36743         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
36744         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
36745         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
36746         RE_SYNTAX_POSIX_MINIMAL_BASIC.
36747         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
36748         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
36749         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
36750         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
36751         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
36752         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
36753         (REG_FIXED): Renamed from REGS_FIXED.
36754         (REG_NREGS): Renamed from RE_NREGS.
36755
36756         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
36757         of other REG_* macros, since POSIX says the user is allowed to
36758         #undef these macros selectively.
36759
36760         (reg_errcode_t): Update comment stating what other tables need
36761         to be consistent.
36762
36763         Rename the following enum values to obey POSIX requirements.
36764         The old names are still visible as macros.
36765         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
36766         is not defined, since GNU is supposed to be a superset of POSIX as
36767         much as possible, and since we want reg_errcode_t to be a signed
36768         type for implementation consistency.
36769         (_REG_NOERROR): Renamed from REG_NOERROR.
36770         (_REG_NOMATCH): Renamed from REG_NOMATCH.
36771         (_REG_BADPAT): Renamed from REG_BADPAT.
36772         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
36773         (_REG_ECTYPE): Renamed from REG_ECTYPE.
36774         (_REG_EESCAPE): Renamed from REG_EESCAPE.
36775         (_REG_ESUBREG): Renamed from REG_ESUBREG.
36776         (_REG_EBRACK): Renamed from REG_EBRACK.
36777         (_REG_EPAREN): Renamed from REG_EPAREN.
36778         (_REG_EBRACE): Renamed from REG_EBRACE.
36779         (_REG_BADBR): Renamed from REG_BADBR.
36780         (_REG_ERANGE): Renamed from REG_ERANGE.
36781         (_REG_ESPACE): Renamed from REG_ESPACE.
36782         (_REG_BADRPT): Renamed from REG_BADRPT.
36783         (_REG_EEND): Renamed from REG_EEND.
36784         (_REG_ESIZE): Renamed from REG_ESIZE.
36785         (_REG_ERPAREN): Renamed from REG_ERPAREN.
36786         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
36787         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
36788         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
36789         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
36790
36791         (_REG_RE_NAME, _REG_RM_NAME): New macros.
36792         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
36793         changed.  But support the old name if the new one is not defined
36794         and if _REGEX_SOURCE.
36795
36796         Change the following member names in struct re_pattern_buffer.
36797         The old names are still supported if !_REGEX_SOURCE.
36798         The new names are always supported, regardless of _REGEX_SOURCE.
36799         (re_buffer): Renamed from buffer.
36800         (re_allocated): Renamed from allocated.
36801         (re_used): Renamed from used.
36802         (re_syntax): Renamed from syntax.
36803         (re_fastmap): Renamed from fastmap.
36804         (re_translate): Renamed from translate.
36805         (re_can_be_null): Renamed from can_be_null.
36806         (re_regs_allocated): Renamed from regs_allocated.
36807         (re_fastmap_accurate): Renamed from fastmap_accurate.
36808         (re_no_sub): Renamed from no_sub.
36809         (re_not_bol): Renamed from not_bol.
36810         (re_not_eol): Renamed from not_eol.
36811         (re_newline_anchor): Renamed from newline_anchor.
36812
36813         Change the following member names in struct re_registers.
36814         The old names are still supported if !_REGEX_SOURCE.
36815         The new names are always supported, regardless of _REGEX_SOURCE.
36816         (rm_num_regs): Renamed from num_regs.
36817         (rm_start): Renamed from start.
36818         (rm_end): Renamed from end.
36819
36820         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
36821         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
36822         Prepend __ to parameter names.
36823
36824         Undo yesterday's changes.
36825
36826 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
36827
36828         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
36829         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
36830         lib/regex.c.
36831
36832 2005-08-24  Jim Meyering  <jim@meyering.net>
36833
36834         Sync from coreutils.
36835         * m4/fcntl-safer.m4: New file.
36836
36837         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
36838         and object files for this module.
36839
36840 2005-08-24  Jim Meyering  <jim@meyering.net>
36841
36842         Sync from coreutils.
36843         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
36844
36845 2005-08-24  Jim Meyering  <jim@meyering.net>
36846
36847         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
36848         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
36849
36850 2005-08-24  Jim Meyering  <jim@meyering.net>
36851
36852         * modules/fcntl-safer: New module.
36853         * modules/fts (Depends-on): Add fcntl-safer.
36854         * MODULES.html.sh (File descriptor based Input/Output):
36855         Add fcntl-safer.
36856
36857 2005-08-24  Bruno Haible  <bruno@clisp.org>
36858
36859         Support for unit test modules.
36860         * modules/README: Mention tests modules.
36861         * modules/TEMPLATE-TESTS: New file.
36862         * gnulib-tool: New options --extract-tests-module, --with-tests and
36863         --tests-base (unused for the moment).
36864         (testsbase, inctests): New variables.
36865         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
36866         (func_verify_module): Exclude TEMPLATE-TESTS.
36867         (func_verify_nontests_module, func_verify_tests_module): New functions.
36868         (func_get_dependencies): Add implicit dependency for tests modules.
36869         (func_get_tests_module): New function.
36870         (func_modules_transitive_closure): When --with-tests was specified,
36871         include the unit tests as well, unless explicitly avoided.
36872         (func_emit_lib_Makefile_am): Ignore the tests modules here.
36873         (func_emit_tests_Makefile_am): New function.
36874         (func_create_testdir): When --with-tests was specified, emit a
36875         tests/ directory.
36876         * MODULES.html.sh (Future developments): Update.
36877
36878 2005-08-24  Bruno Haible  <bruno@clisp.org>
36879
36880         * modules/tls-tests: New file.
36881         * tests/test-tls.c: New file, from GNU gettext.
36882
36883 2005-08-24  Bruno Haible  <bruno@clisp.org>
36884
36885         * modules/lock-tests: New file.
36886         * tests/test-lock.c: New file, from GNU gettext.
36887
36888 2005-08-24  Bruno Haible  <bruno@clisp.org>
36889
36890         * lib/lock.h: Add multiple inclusion guard.
36891         * lib/tls.h: Add multiple inclusion guard.
36892
36893 2005-08-24  Bruno Haible  <bruno@clisp.org>
36894
36895         * gnulib-tool: Add support for the --aux-dir option to
36896         --create-testdir, --create-megatestdir, --test, --megatest.
36897         (func_create_testdir, func_create_megatestdir): Optionally emit a
36898         AC_CONFIG_AUX_DIR directive.
36899         (create-testdir, create-megatestdir, test, megatest): Provide a
36900         default value for $auxdir.
36901
36902 2005-08-24  Bruno Haible  <bruno@clisp.org>
36903
36904         * gnulib-tool (import): Use compound statement instead of subshell
36905         where possible.
36906
36907 2005-08-24  Bruno Haible  <bruno@clisp.org>
36908
36909         * gnulib-tool (import): Change --aux-dir default to "build-aux".
36910
36911 2005-08-24  Bruno Haible  <bruno@clisp.org>
36912
36913         * gnulib-tool (func_version): Update.
36914
36915 2005-08-24  Bruno Haible  <bruno@clisp.org>
36916
36917         * gnulib-tool (func_import, func_create_testdir,
36918         func_create_megatestdir): Quote all autoconf macro arguments.
36919
36920 2005-08-24  Bruno Haible  <bruno@clisp.org>
36921
36922         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
36923         option --force, because --force causes the aclocal.m4 of each
36924         subdirectory to be newer than the corresponding config.h.in.
36925
36926 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
36927
36928         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
36929         All contents moved to gl_REGEX.
36930         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
36931         assume that it does.
36932
36933 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
36934
36935         * lib/regex.h (REG_NOSYS)
36936         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
36937         Define, since POSIX requires it as of 2001.
36938         (_REG_ENOSYS)
36939         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
36940         New private symbol, used to keep the enum signed in all cases.
36941         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
36942         Youngman in
36943         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
36944
36945         * lib/regex_internal.c (re_string_skip_chars, register_state):
36946         (calc_state_hash):
36947         Remove forward decls; no longer needed now that we use prototypes.
36948         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
36949         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
36950         (clean_state_log_if_needed): Likewise.
36951
36952 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
36953
36954         * config/srclist.txt: Add glibc bugs 1231-1233.
36955
36956 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
36957
36958         Fix problems reported by Sam Steingold in
36959         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
36960         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
36961         assumed that reg_errcode_t is a signed type, which is not
36962         necessarily true if _XOPEN_SOURCE is not defined.
36963         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
36964         since some compilers warn about it otherwise.
36965
36966 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
36967
36968         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
36969         (init_word_char, create_initial_state, duplicate_node_closure):
36970         (fetch_token, peek_token_bracket, build_range_exp):
36971         (build_collating_symbol): Remove forward decls; no longer needed
36972         now that we use prototypes.
36973
36974         * lib/regcomp.c:
36975         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
36976         (re_compile_fastmap_iter, regcomp, regerror, regfree):
36977         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
36978         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
36979         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
36980         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
36981         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
36982         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
36983         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
36984         (build_range_exp, build_collating_symbol, parse_bracket_exp):
36985         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
36986         (build_charclass, build_charclass_op, fetch_number, create_tree):
36987         (create_token_tree, mark_opt_subexp, duplicate_tree):
36988         Use prototypes rather than old-style definitions.
36989
36990         * lib/regex_internal.c:
36991         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
36992         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
36993         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
36994         (re_string_reconstruct, re_string_peek_byte_case):
36995         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
36996         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
36997         (re_node_set_init_copy, re_node_set_add_intersect):
36998         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
36999         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
37000         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
37001         (re_acquire_state, re_acquire_state_context, register_state):
37002         (create_ci_newstate, create_cd_newstate, free_state):
37003         Likewise.
37004         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
37005         re_search_2):
37006         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
37007         (re_search_internal, prune_impossible_nodes):
37008         (acquire_init_state_context, check_matching, static):
37009         (check_halt_node_context, check_halt_state_context, proceed_next_node):
37010         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
37011         (update_regs, sift_states_backward, build_sifted_states):
37012         (clean_state_log_if_needed, merge_state_array):
37013         (update_cur_sifted_state, add_epsilon_src_nodes):
37014         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
37015         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
37016         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
37017         (find_recover_state, check_subexp_matching_top, transit_state_mb):
37018         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
37019         (check_arrival, check_arrival_add_next_nodes):
37020         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
37021         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
37022         (check_node_accept_bytes, check_node_accept, extend_buffers):
37023         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
37024         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
37025         (sift_ctx_init):
37026         Likewise.
37027
37028         * lib/regex_internal.h:
37029         (re_string_allocate, re_string_construct, re_string_reconstruct):
37030         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
37031         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
37032         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
37033         (re_string_context_at, re_string_peek_byte_case):
37034         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
37035         is defined, since we now use prototypes always.
37036
37037         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
37038         C89 or better.  All uses removed.
37039
37040 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37041
37042         * config/srclist.txt: Add glibc bugs 1220-1227.
37043
37044 2005-08-20  Jim Meyering  <jim@meyering.net>
37045
37046         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
37047         of unused local, dfa.
37048
37049 2005-08-20  Bruno Haible  <bruno@clisp.org>
37050
37051         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
37052
37053 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37054
37055         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
37056         (re_node_set_insert_last, re_dfa_add_node):
37057         Rename local variables to avoid GCC shadowing warnings.
37058
37059 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37060
37061         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
37062         [defined lint]: Suppress bogus uninitialized-variable warnings.
37063
37064         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
37065         and let the caller return REG_ESPACE if out of space.  This
37066         removes an uninitialied-variable warning with GCC 4.0.1, and also
37067         avoids taking the address of a local variable.  All callers
37068         changed.
37069
37070 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37071
37072         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
37073         $LIBCSRC/posix/regexec.c.
37074         Add glibc bug 1217 for regcomp.c.
37075
37076 2005-08-19  Jim Meyering  <jim@meyering.net>
37077
37078         * lib/regexec.c (proceed_next_node): Redo local variables to
37079         avoid GCC shadowing warnings.
37080
37081 2005-08-18  Bruno Haible  <bruno@clisp.org>
37082
37083         * lib/strstr.c (strstr): Fix return value in multibyte case.
37084         * lib/strcasestr.c (strcasestr): Likewise.
37085
37086 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
37087
37088         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
37089
37090 2005-08-17  Jim Meyering  <jim@meyering.net>
37091
37092         Make the %s format (seconds since the epoch) work for a negative
37093         number and when used with a zero-padded field width, e.g. %015s.
37094
37095         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
37096         label so that it precedes the code to set `digits'.  Otherwise,
37097         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
37098         print `00-22'.  Now, it prints `-0022', as it should.
37099
37100 2005-08-17  Bruno Haible  <bruno@clisp.org>
37101
37102         * modules/strstr (Files): Add m4/mbrtowc.m4.
37103         (Depends-on): Add mbuiter.
37104
37105 2005-08-17  Bruno Haible  <bruno@clisp.org>
37106
37107         * modules/strcasestr: New file.
37108         * MODULES.html.sh (String handling, based on ANSI C 89): Add
37109         strcasestr.
37110
37111 2005-08-17  Bruno Haible  <bruno@clisp.org>
37112
37113         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
37114
37115 2005-08-17  Bruno Haible  <bruno@clisp.org>
37116
37117         * modules/mbuiter: New file.
37118         * MODULES.html.sh (Extended multibyte and wide character utilities):
37119         Add mbuiter.
37120
37121 2005-08-17  Bruno Haible  <bruno@clisp.org>
37122
37123         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
37124         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
37125
37126 2005-08-17  Bruno Haible  <bruno@clisp.org>
37127
37128         * m4/strcasestr.m4: New file.
37129
37130 2005-08-17  Bruno Haible  <bruno@clisp.org>
37131
37132         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
37133         * lib/strstr.c: Completely rewritten, with multibyte locale support.
37134
37135 2005-08-17  Bruno Haible  <bruno@clisp.org>
37136
37137         * lib/strcasestr.h: New file.
37138         * lib/strcasestr.c: New file.
37139
37140 2005-08-17  Bruno Haible  <bruno@clisp.org>
37141
37142         * lib/strcasecmp.c: Use mbuiter.h.
37143
37144 2005-08-17  Bruno Haible  <bruno@clisp.org>
37145
37146         * lib/mbuiter.h: New file.
37147
37148 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
37149
37150         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
37151         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
37152         and gl_GETOPT are both invoked via different paths (as happens
37153         with GNU tar CVS because it uses both argp and getopt), the former
37154         wins.
37155
37156 2005-08-16  Bruno Haible  <bruno@clisp.org>
37157
37158         * modules/tls: New file.
37159         * MODULES.html.sh (Multithreading): Add tls.
37160
37161 2005-08-16  Bruno Haible  <bruno@clisp.org>
37162
37163         * modules/strnlen1: New file.
37164         * MODULES.html.sh (String handling): Add strnlen1.
37165
37166 2005-08-16  Bruno Haible  <bruno@clisp.org>
37167
37168         * modules/strcase (Files): Add m4/mbrtowc.m4.
37169         (Depends-on): Add strnlen1, mbchar.
37170
37171 2005-08-16  Bruno Haible  <bruno@clisp.org>
37172
37173         * modules/mbiter: New file.
37174         * MODULES.html.sh (Extended multibyte and wide character utilities):
37175         Add mbiter.
37176
37177 2005-08-16  Bruno Haible  <bruno@clisp.org>
37178
37179         * modules/mbfile: New file.
37180         * MODULES.html.sh (Extended multibyte and wide character utilities):
37181         Add mbfile.
37182
37183 2005-08-16  Bruno Haible  <bruno@clisp.org>
37184
37185         * modules/mbchar: New file.
37186         * MODULES.html.sh (Extended multibyte and wide character utilities):
37187         New section.
37188
37189 2005-08-16  Bruno Haible  <bruno@clisp.org>
37190
37191         * m4/tls.m4: New file, from GNU gettext.
37192
37193 2005-08-16  Bruno Haible  <bruno@clisp.org>
37194
37195         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
37196         always.
37197         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
37198
37199 2005-08-16  Bruno Haible  <bruno@clisp.org>
37200
37201         * m4/mbiter.m4: New file.
37202
37203 2005-08-16  Bruno Haible  <bruno@clisp.org>
37204
37205         * m4/mbfile.m4: New file.
37206
37207 2005-08-16  Bruno Haible  <bruno@clisp.org>
37208
37209         * m4/mbchar.m4: New file.
37210
37211 2005-08-16  Bruno Haible  <bruno@clisp.org>
37212
37213         * lib/tls.h: New file, from GNU gettext.
37214         * lib/tls.c: New file, from GNU gettext.
37215
37216 2005-08-16  Bruno Haible  <bruno@clisp.org>
37217
37218         * lib/strnlen1.h: New file.
37219         * lib/strnlen1.c: New file.
37220
37221 2005-08-16  Bruno Haible  <bruno@clisp.org>
37222
37223         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
37224         (mbi_init): Update.
37225         (mbi_avail, mbi_advance): Let the iteration end before the terminating
37226         NUL byte, not after it.
37227
37228 2005-08-16  Bruno Haible  <bruno@clisp.org>
37229
37230         * lib/strcase.h (strcasecmp): Add note in comments.
37231         * lib/strncasecmp.c: Use code from strcasecmp.c.
37232         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
37233         (strcasecmp): Work correctly in multibyte locales.
37234
37235 2005-08-16  Bruno Haible  <bruno@clisp.org>
37236
37237         * lib/mbiter.h: New file.
37238
37239 2005-08-16  Bruno Haible  <bruno@clisp.org>
37240
37241         * lib/mbfile.h: New file.
37242
37243 2005-08-16  Bruno Haible  <bruno@clisp.org>
37244
37245         * lib/mbchar.h: New file.
37246         * lib/mbchar.c: New file.
37247
37248 2005-08-16  Bruno Haible  <bruno@clisp.org>
37249
37250         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
37251         the valid ones. Makes the comparison operations transitive:
37252         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
37253         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
37254
37255 2005-08-15  Simon Josefsson  <jas@extundo.com>
37256
37257         * modules/ssize_t (License): Change to 'unlimited'.
37258
37259         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
37260
37261 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37262
37263         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
37264         Add comments for each pending glibc patch.
37265
37266 2005-08-15  Bruno Haible  <bruno@clisp.org>
37267
37268         * lib/regex.h (__restrict_arr): Don't define to __restrict if
37269         __cplusplus is defined.
37270
37271 2005-08-14  Jim Meyering  <jim@meyering.net>
37272
37273         Sync from coreutils.
37274
37275         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
37276         Use the hash-table-based cycle-detection code not just when
37277         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
37278         Reported by James Youngman in
37279         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
37280         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
37281         FTS_TIGHT_CYCLE_CHECK.
37282         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
37283         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
37284         once again.
37285         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
37286         * lib/fts.c (fd_safer): Remove decl.
37287         Include fcntl--.h rather than unistd-safer.h
37288         (fts_safe_changedir): Don't call fd_safer; no longer needed
37289         now that we include fcntl--.h.
37290
37291 2005-08-12  Simon Josefsson  <jas@extundo.com>
37292
37293         * modules/getndelim2: Use ssize_t module.
37294         * modules/getnline: Likewise.
37295         * modules/safe-read: Likewise.
37296         * modules/xreadlink: Likewise.
37297
37298         * modules/ssize_t: New file.
37299
37300 2005-08-12  Simon Josefsson  <jas@extundo.com>
37301
37302         * m4/readline.m4: Look for termcap, curses or ncurses if required.
37303
37304 2005-08-12  Simon Josefsson  <jas@extundo.com>
37305
37306         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
37307         ssize_t.
37308
37309 2005-08-12  Simon Josefsson  <jas@extundo.com>
37310
37311         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
37312         readline, getdelim and check_version.
37313         (Support for systems lacking ISO C 99: Sizes of integer types):
37314         Add size_max.
37315
37316 2005-08-12  Bruno Haible  <bruno@clisp.org>
37317
37318         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
37319
37320 2005-08-11  Simon Josefsson  <jas@extundo.com>
37321
37322         * modules/readline: New file.
37323
37324         * modules/strnlen (Files): Add strnlen.h.
37325
37326 2005-08-11  Simon Josefsson  <jas@extundo.com>
37327
37328         * m4/readline.m4: New file.
37329
37330 2005-08-11  Simon Josefsson  <jas@extundo.com>
37331
37332         * lib/readline.h, readline.c: New file.
37333
37334 2005-08-11  Simon Josefsson  <jas@extundo.com>
37335
37336         * doc/gnulib.texi (Initial import, Finishing touches): Mention
37337         gl_AVOID.
37338
37339 2005-08-11  Bruno Haible  <bruno@clisp.org>
37340
37341         * lib/strnlen.h (strnlen): Change parameter name to match comment.
37342
37343 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
37344
37345         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
37346
37347 2005-08-10  Simon Josefsson  <jas@extundo.com>
37348
37349         * tests/test-iconvme.c: New file.
37350
37351 2005-08-10  Simon Josefsson  <jas@extundo.com>
37352
37353         * m4/strnlen.m4: New file.
37354
37355         * m4/strndup.m4: Don't check for strnlen declaration, done in
37356         strnlen.m4.
37357
37358 2005-08-10  Simon Josefsson  <jas@extundo.com>
37359
37360         * lib/strndup.c: Use strnlen.h.
37361
37362         * lib/strnlen.h: New file.
37363
37364 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
37365
37366         * README: Typos.
37367
37368 2005-08-02  Simon Josefsson  <jas@extundo.com>
37369
37370         * modules/readline: New file.
37371
37372 2005-08-02  Simon Josefsson  <jas@extundo.com>
37373
37374         * modules/getdelim: New file.
37375
37376         * modules/getline: Rewrite, don't use getndelim2.
37377
37378 2005-08-02  Simon Josefsson  <jas@extundo.com>
37379
37380         * m4/getline.m4: Separate out getdelim stuff into separate module.
37381
37382         * m4/getdelim.m4: New file.
37383
37384 2005-08-02  Simon Josefsson  <jas@extundo.com>
37385
37386         * lib/getline.h, getline.c: Rewrite.
37387
37388         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
37389
37390 2005-07-31  Bruno Haible  <bruno@clisp.org>
37391
37392         * lib/lock.h (gl_lock_initializer): New macro.
37393         (gl_lock_define_initialized): Use it.
37394         (gl_rwlock_initializer): New macro.
37395         (gl_rwlock_define_initialized): Use it.
37396         (gl_recursive_lock_initializer): New macro.
37397         (gl_recursive_lock_define_initialized): Use it.
37398
37399 2005-07-30  Karl Berry  <karl@gnu.org>
37400
37401         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
37402         Report from Ben Pfaff, regarding getopt.
37403
37404 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
37405
37406         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
37407         normal way.
37408         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
37409         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
37410         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
37411         (gl_GETOPT): Use the new macros.  Most of the implementation
37412         is moved to the new macros.  This is for programs like Emacs
37413         that don't want all the functionality of gl_GETOPT.
37414
37415 2005-07-26  Bruno Haible  <bruno@clisp.org>
37416
37417         * m4/lock.m4: Update from GNU gettext.
37418
37419 2005-07-26  Bruno Haible  <bruno@clisp.org>
37420
37421         * lib/lock.h: Update from GNU gettext.
37422         * lib/lock.c: Update from GNU gettext.
37423
37424 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
37425
37426         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
37427         obsolescent AC_TRY_RUN.  Include the default includes files, for
37428         'exit'.
37429
37430 2005-07-24  Bruno Haible  <bruno@clisp.org>
37431
37432         * modules/visibility: New file.
37433         * MODULES.html.sh (Misc): Add visibility.
37434
37435 2005-07-24  Bruno Haible  <bruno@clisp.org>
37436
37437         * m4/visibility.m4: New file.
37438
37439 2005-07-24  Bruno Haible  <bruno@clisp.org>
37440
37441         * doc/visibility.texi: New file.
37442
37443 2005-07-22  Bruno Haible  <bruno@clisp.org>
37444
37445         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
37446         $(ALLOCA_H), redundant through BUILT_SOURCES.
37447         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
37448         redundant through BUILT_SOURCES.
37449         * modules/byteswap (Makefile.am): Remove explicit dependency on
37450         $(BYTESWAP_H), redundant through BUILT_SOURCES.
37451         * modules/fnmatch (Makefile.am): Remove explicit dependency on
37452         $(FNMATCH_H), redundant through BUILT_SOURCES.
37453         * modules/getopt (Makefile.am): Remove explicit dependency on
37454         $(GETOPT_H), redundant through BUILT_SOURCES.
37455         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
37456         redundant through BUILT_SOURCES.
37457         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
37458         redundant through BUILT_SOURCES.
37459         * modules/stdbool (Makefile.am): Remove explicit dependency on
37460         $(STDBOOL_H), redundant through BUILT_SOURCES.
37461         * modules/stdint (Makefile.am): Remove explicit dependency on
37462         $(STDINT_H), redundant through BUILT_SOURCES.
37463         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
37464         Remove explicit dependency on $(SYSEXITS_H).
37465         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
37466
37467 2005-07-18  Simon Josefsson  <jas@extundo.com>
37468
37469         * lib/check-version.c (check_version): Accept identical versions too.
37470
37471 2005-07-18  Bruno Haible  <bruno@clisp.org>
37472
37473         * modules/lock: New file.
37474         * MODULES.html.sh (Multithreading): New section.
37475
37476 2005-07-18  Bruno Haible  <bruno@clisp.org>
37477
37478         * m4/lock.m4: New file, from GNU gettext.
37479
37480 2005-07-18  Bruno Haible  <bruno@clisp.org>
37481
37482         * lib/lock.h: New file, from GNU gettext.
37483         * lib/lock.c: New file, from GNU gettext.
37484
37485 2005-07-18  Bruno Haible  <bruno@clisp.org>
37486
37487         * lib/lock.h (gl_once_t): New type.
37488         (gl_once_define, gl_once): New macros.
37489         * lib/lock.c (fresh_once): New variable.
37490         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
37491         functions.
37492
37493 2005-07-16  Simon Josefsson  <jas@extundo.com>
37494
37495         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
37496         workaround, suggested by Bruno.
37497
37498 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
37499
37500         * modules/xalloc (Depends-on): Add xalloc-die.
37501         * modules/xvasprintf (Depends-on): Add xalloc-die.
37502
37503 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
37504
37505         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
37506         with a minor change.
37507
37508 2005-07-15  Bruno Haible  <bruno@clisp.org>
37509
37510         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
37511         When using lib/poll.c, define poll as rpl_poll.
37512
37513 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
37514
37515         * modules/argp (Depends-on): Remove unlocked-io.
37516
37517 2005-07-14  Derek Price  <derek@ximbiot.com>
37518
37519         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
37520         for glob symlink bug.
37521
37522 2005-07-14  Bruno Haible  <bruno@clisp.org>
37523
37524         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
37525         Instead, test for *_unlocked function declarations directly.
37526
37527 2005-07-11  Simon Josefsson  <jas@extundo.com>
37528
37529         * modules/size_max: New file.
37530
37531         * modules/xsize: Depend on size_max module for size_max.m4.
37532
37533 2005-07-11  Simon Josefsson  <jas@extundo.com>
37534
37535         * lib/size_max.h: New file.
37536
37537 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
37538
37539         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
37540         copyright symbol and the year.
37541         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
37542         (version_etc_va): Use parameterized copyright notice.
37543         Reword to conform to the current GNU coding standards.
37544
37545 2005-07-11  Karl Berry  <karl@gnu.org>
37546
37547         * doc/gnulib.texi (Quoting): new node.
37548         (Initial import): more info, from Patrice.
37549
37550 2005-07-11  Bruno Haible  <bruno@clisp.org>
37551
37552         * gnulib-tool (func_usage): Document option --avoid.
37553         (Command line options): Handle --avoid.
37554         (func_acceptable): New function.
37555         (func_modules_transitive_closure): Use it.
37556
37557 2005-07-11  Bruno Haible  <bruno@clisp.org>
37558
37559         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
37560         Reported by Jim Meyering.
37561
37562 2005-07-10  Bruno Haible  <bruno@clisp.org>
37563
37564         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
37565         Needed when size_t is smaller than 'unsigned int'.
37566         Reported by Paul Eggert.
37567
37568 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
37569
37570         * modules/argp (Depends-on): Add unlocked-io
37571
37572 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
37573
37574         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
37575         block of defines.
37576
37577 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
37578
37579         * config/srclist.txt: Comment out regcomp.c, since we have a porting
37580         fix now.
37581
37582 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
37583         and Paul Eggert  <eggert@cs.ucla.edu>
37584
37585         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
37586         in wint_t, not wchar_t.  Remove now-unnecessary cast.
37587
37588 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
37589
37590         * modules/regex (Files): Add lib/regex_internal.c,
37591         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
37592         (Depends-on): Add extensions.
37593         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
37594
37595 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
37596
37597         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
37598         pathconf.
37599         * m4/same.m4 (gl_SAME): Likewise.
37600         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
37601
37602         * m4/regex.m4: Adjust to new libc regex implementation.
37603         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
37604         all the .c and .h parts of (the new) regex.
37605         Quote the m4 stuff better.
37606         Check for RE_ICASE bug of old gnulib.
37607         Check for REG_STARTEND of recent libc.
37608         Rename local variables from jm_* to gl_*.
37609         Quote operand of "test -f".
37610         Say "recent enough" version of libc, not "version 2".
37611         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
37612         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
37613         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
37614         Remove check for btowc, isascii.
37615         Require AM_LANGINFO_CODESET.
37616
37617 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
37618
37619         * lib/regex.c, regex.h: Sync from libc.
37620         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
37621         * lib/regexec.c:
37622         New files, synced from libc, except that regex_internal.h
37623         currently has a small porting fix.
37624
37625 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
37626
37627         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
37628         regex_internal.c, regexec.c.
37629         Add regex_internal.h too, but as a comment, since the libc version
37630         is currently broken in gnulib mode.
37631
37632 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
37633
37634         Support programs like Emacs that use gnulib but not gettext.
37635         * MODULES.html.sh (Internationalization functions): Add gettext-h.
37636         * modules/gettext-h: New file.
37637         * modules/gettext (Files): Remove lib/gettext.h.
37638         (Depends-on): Add gettext-h.
37639         (Makefile.am): Remove lib_SOURCES.
37640         * modules/argmatch, modules/c-stack, modules/closeout:
37641         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
37642         * modules/execute, modules/file-type, modules/getaddrinfo:
37643         * modules/getopt, modules/human, modules/javacomp:
37644         * modules/javaexec, modules/mkdir-p, modules/obstack:
37645         * modules/openat, modules/pagealign_alloc, modules/pipe:
37646         * modules/quotearg, modules/regex, modules/rpmatch:
37647         * modules/unicodeio, modules/userspec, modules/version-etc:
37648         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
37649         * modules/xsetenv:
37650         Depend on gettext-h, not gettext.
37651
37652 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
37653
37654         * gnulib-tool (func_import): Add support for 'public domain' license.
37655         * modules/alloca, modules/atexit, modules/memmove:
37656         Now public domain, not GPL.
37657         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
37658         * modules/realloc, modules/strerror, modules/strtod:
37659         Now LGPL, not GPL.
37660
37661 2005-07-05  Bruno Haible  <bruno@clisp.org>
37662
37663         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
37664         autoconf CVS. Needed for mingw.
37665
37666 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
37667
37668         Remove the dependency of the strftime module on the tzset module.
37669         * modules/strftime (Depends-on): Remove dependency on tzset.
37670
37671 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
37672
37673         Remove the dependency of the strftime module on the tzset module.
37674         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
37675         gl_FUNC_TZSET_CLOBBER.
37676
37677 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
37678
37679         Remove the dependency of the strftime module on the tzset module.
37680         * lib/strftime.c (my_strftime)
37681         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
37682         Copy the input structure, to work around some of the bug with
37683         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
37684         Solaris releases, you should also use the tzset module, but we won't
37685         require it as a dependency any more since we don't want LGPLed code
37686         to depend on GPLed code.
37687
37688 2005-07-02  Jim Meyering  <jim@meyering.net>
37689
37690         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
37691         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
37692         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
37693         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
37694
37695 2005-07-02  Jim Meyering  <jim@meyering.net>
37696
37697         * lib/backupfile.c (backup_args): Change a `0' to NULL.
37698
37699 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
37700
37701         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
37702         declares only 'struct timespec;' (!).
37703
37704 2005-07-01  Jim Meyering  <jim@meyering.net>
37705
37706         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
37707         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
37708         * lib/save-cwd.c, tempname.c:
37709         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
37710         and don't include <sys/file.h>).
37711
37712 2005-06-29  Jim Meyering  <jim@meyering.net>
37713
37714         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
37715         type name.  Use the variable name instead.
37716         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
37717         Likewise.
37718
37719 2005-06-28  Simon Josefsson  <jas@extundo.com>
37720
37721         * modules/check-version (Files): Add check-version.m4.
37722
37723 2005-06-28  Simon Josefsson  <jas@extundo.com>
37724
37725         * m4/check-version.m4: New file, suggested by Jim Meyering
37726         <jim@meyering.net>.
37727
37728 2005-06-28  Simon Josefsson  <jas@extundo.com>
37729
37730         * lib/check-version.h, lib/check-version.c: New files.
37731
37732 2005-06-28  Simon Josefsson  <jas@extundo.com>
37733
37734         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
37735         collision with global variable.  Better indentation.  Don't
37736         increment buffer pointer beyond buffer end.  Based on comments
37737         from Paul Eggert <eggert@cs.ucla.edu>.
37738
37739         * lib/base64.h: Indent.
37740
37741 2005-06-28  Simon Josefsson  <jas@extundo.com>
37742
37743         * doc/gnulib.texi (Library version handling): New section.
37744
37745 2005-06-28  Jim Meyering  <jim@meyering.net>
37746
37747         * check-module (find_included_lib_files): Hard-code another
37748         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
37749         but modules/fts-lgpl (correctly) does not list those files.
37750
37751         * modules/canonicalize (Files): Add lib/pathmax.h.
37752
37753 2005-06-25  Simon Josefsson  <jas@extundo.com>
37754
37755         * modules/check-version: New file.
37756
37757 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
37758
37759         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
37760         initializer of struct addrinfo, as an indication that we don't
37761         care how many members the structure has.
37762
37763 2005-06-24  Derek Price  <derek@ximbiot.com>
37764         and Bruno Haible  <bruno@clisp.org>
37765
37766         Remove stat module & update lstat.
37767         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
37768         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
37769         * m4/stat.m4: Remove this file.
37770
37771 2005-06-24  Derek Price  <derek@ximbiot.com>
37772         and Bruno Haible  <bruno@clisp.org>
37773
37774         Remove stat module & update lstat.
37775         * lib/stat.c: Remove this file...
37776         (slash_aware_lstat): ...moving this content and its support...
37777         * lib/lstat.c (rpl_lstat): ...into here.
37778         * lib/lstat.h: New file.
37779
37780 2005-06-24  Derek Price  <derek@ximbiot.com>
37781         and Bruno Haible  <bruno@clisp.org>
37782
37783         Remove stat module & update lstat.
37784         * config/srclist.txt (libc sources): Remove stat.
37785
37786 2005-06-24  Derek Price  <derek@ximbiot.com>
37787         and Bruno Haible  <bruno@clisp.org>
37788
37789         Remove stat module & update lstat.
37790         * MODULES.html.sh (stat): Remove.
37791         * MODULES.html: Regenerated.
37792         * modules/lstat (Description): Correct function name.
37793         (Files): Add "lstat.h".
37794         (Depends-on): Remove stat, add xalloc, stat-macros.
37795         * modules/stat: Remove this file.
37796         (Include): Add "lstat.h", remove <sys/stat.h>.
37797
37798 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
37799
37800         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
37801         (ranged_convert): Don't save conversion in a temporary struct.
37802         This causes a warning with GCC 4.0.0, and anyway in the typical
37803         case it's not worth the extra 100 bytes or so of code.
37804         (ranged_convert, __mktime_internal): When calling a function via a
37805         pointer P, use P () rather than (*P) (), as we now assume C89 or
37806         better.
37807
37808 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
37809
37810         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
37811         "who -r" failed to give output.  Problem reported by Tim Waugh.
37812
37813         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
37814         (xcalloc): Use it to avoid needless tests.
37815         Problem reported by Jim Meyering.
37816
37817 2005-06-20  Derek Price  <derek@ximbiot.com>
37818
37819         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
37820         unnecessary for Autoconfs > 2.59c.
37821
37822 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
37823
37824         * lib/argp.h (__option_is_short): Check upper limit of
37825         __key. Isprint() requires its argument to have the value
37826         of an unsigned char or EOF.
37827
37828 2005-06-16  Jim Meyering  <jim@meyering.net>
37829
37830         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
37831         when either N or S is zero.
37832
37833 2005-06-16  Derek Price  <derek@ximbiot.com>
37834
37835         * m4/bison.m4: Declare YACC & YFLAGS precious.
37836
37837 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
37838
37839         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
37840         multibyte string or pattern, fall back on unibyte matching.
37841         Problem reported by James Youngman.
37842
37843 2005-06-08  Bruno Haible  <bruno@clisp.org>
37844
37845         * modules/csharpcomp: New file.
37846         * MODULES.html.sh (C#): Add csharpcomp.
37847
37848 2005-06-08  Bruno Haible  <bruno@clisp.org>
37849
37850         * m4/csharpcomp.m4: New file, from GNU gettext.
37851
37852 2005-06-08  Bruno Haible  <bruno@clisp.org>
37853
37854         * lib/csharpcomp.h: New file, from GNU gettext.
37855         * lib/csharpcomp.c: New file, from GNU gettext.
37856         * lib/csharpcomp.sh.in: New file, from GNU gettext.
37857
37858 2005-06-08  Bruno Haible  <bruno@clisp.org>
37859
37860         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
37861         warning on mingw.
37862
37863 2005-06-07  Derek Price  <derek@ximbiot.com>
37864
37865         Sync from CVS.
37866         * lib/glob_.h: Indent nested #ifdef.
37867
37868 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
37869
37870         Sync from coreutils.
37871         Use "file name" when talking about file names, instead of "filename"
37872         or "path", as per the GNU coding standards.
37873         * lib/mkdir-p.c: Renamed from makepath.c.
37874         (make_dir_parents): Renamed from make_path.  All callers changed.
37875         * lib/mkdir-p.h: Likewise.  All includers changed.
37876         * lib/filenamecat.c: Renamed from path-concat.c.
37877         (file_name_concat): Renamed from path_concat.  All callers changed.
37878         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
37879         * lib/filenamecat.h: Likewise.  All includers changed.
37880         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
37881         in comments or local variable names.
37882         * lib/basename.c: Likewise.
37883         * lib/canonicalize.c, canonicalize.h: Likewise.
37884         * lib/dirname.c, dirname.h: Likewise.
37885         * lib/euidaccess.c: Likewise.
37886         * lib/exclude.c: Likewise
37887         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
37888         * lib/fsusage.c, fsuage.h: Likewise.
37889         * lib/fts.c, fts_.h: Likewise.
37890         * lib/getcwd.c: Likewise.
37891         * lib/getloadavg.c: Likewise.
37892         * lib/mkstemp.c: Likewise.
37893         * lib/mountlist.c, mountlist.h: Likewise.
37894         * lib/openat.c, openat.h: Likewise.
37895         * lib/readlink-stub.c: Likewise.
37896         * lib/readutmp.c, readutmp.h: Likewise.
37897         * lib/rename.c: Likewise.
37898         * lib/rmdir.c: Likewise.
37899         * lib/same.c: Likewise.
37900         * lib/savedir.c: Likewise.
37901         * lib/stripslash.c: Likewise.
37902         * lib/tempname.c: Likewise.
37903         * lib/xreadlink.c: Likewise.
37904         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
37905         All uses changed.
37906         * lib/exclude.h: Likewise.
37907
37908         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
37909         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
37910         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
37911         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
37912         * lib/pathmax.h: Include <limits.h> unconditionally, since other
37913         files have been getting away with it for years (MORE/BSD 4.3
37914         is extinct now).
37915         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
37916         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
37917
37918         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
37919         Define to 256, not 255, as per modern POSIX.
37920
37921 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
37922
37923         Sync from coreutils.
37924         Use "file name" when talking about file names, instead of "filename"
37925         or "path", as per the GNU coding standards.
37926         * MODULES.html.sh: mkdir-p renamed from makepath.
37927         filenamecat renamed from path-concat.
37928         * modules/filenamecat: Renamed from modules/path-concat.
37929         (Files): filenamecat.h and filenamecat.c renamed from
37930         path-concat.h and path-concat.c.
37931         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
37932         (Include): filenamecat.h, not path-concat.h.
37933         * modules/mkdir-p: Renamed from modules/makepath.
37934         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
37935         makepath.c.
37936         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
37937         (Include): mkdir-p.h, not makepath.h.
37938
37939 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
37940
37941         Sync from coreutils.
37942         * m4/mkdir-p.m4: Renamed from makepath.m4.
37943         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
37944         Rename files from makepath.c to mkdir-p.c, and from
37945         makepath.h to mkdir-p.h.
37946         * m4/filenamecat.m4: Renamed from path-concat.m4.
37947         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
37948         Rename files from path-concat.c to filenamecat.c,
37949         and from path-concat.h to filenamecat.h.
37950         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
37951         "file name" in local variables or comments.
37952         * m4/rename.m4: Likewise.
37953
37954 2005-06-01  Bruno Haible  <bruno@clisp.org>
37955
37956         * modules/csharpexec: New file.
37957         * MODULES.html.sh (C#): New section.
37958
37959 2005-06-01  Bruno Haible  <bruno@clisp.org>
37960
37961         * m4/csharp.m4: New file, from GNU gettext.
37962         * m4/csharpexec.m4: New file, from GNU gettext.
37963
37964 2005-06-01  Bruno Haible  <bruno@clisp.org>
37965
37966         * lib/csharpexec.h: New file, from GNU gettext.
37967         * lib/csharpexec.c: New file, from GNU gettext.
37968         * lib/csharpexec.sh.in: New file, from GNU gettext.
37969
37970 2005-05-31  Derek Price  <derek@ximbiot.com>
37971             Paul Eggert  <eggert@cs.ucla.edu>
37972
37973         Sync from cvs.
37974         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
37975
37976 2005-05-31  Derek Price  <derek@ximbiot.com>
37977             Paul Eggert  <eggert@cs.ucla.edu>
37978
37979         Sync from cvs.
37980         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
37981
37982 2005-05-29  Derek Price  <derek@ximbiot.com>
37983
37984         * config/srclist.txt (glob_.h, glob.c): Add these files.
37985
37986 2005-05-29  Derek Price  <derek@ximbiot.com>
37987
37988         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
37989         * modules/glob: New file.
37990         * modules/getlogin_r: Add link to POSIX spec in description.
37991
37992 2005-05-29  Derek Price  <derek@ximbiot.com>
37993             Paul Eggert  <eggert@cs.ucla.edu>
37994
37995         * m4/glob.m4: New file.
37996
37997 2005-05-29  Derek Price  <derek@ximbiot.com>
37998             Paul Eggert  <eggert@cs.ucla.edu>
37999
38000         * lib/glob_.h, lib/glob.c: New files.
38001
38002 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
38003
38004         * modules/fts (Files): Remove m4/inttypes-pri.m4.
38005         * modules/fts-lgpl (Depends-on): Remove gettext.
38006
38007 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
38008
38009         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
38010         and don't require gt_INTTYPES_PRI.
38011
38012 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
38013
38014         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
38015
38016         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
38017         the configuration hassle isn't worth it.
38018         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
38019         (LONGEST_MODIFIER, PRIuMAX): Remove.
38020
38021 2005-05-27  Bruno Haible  <bruno@clisp.org>
38022
38023         * lib/getlogin_r.h: Remove second include of <stddef.h>.
38024
38025 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
38026
38027         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
38028         _POSIX_PTHREAD_SEMANTICS for Solaris.
38029
38030 2005-05-25  Derek Price  <derek@ximbiot.com>
38031
38032         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
38033
38034 2005-05-25  Derek Price  <derek@ximbiot.com>
38035             Paul Eggert  <eggert@cs.ucla.edu>
38036
38037         * modules/getlogin_r, m4/getlogin_r.m4: New files.
38038         * lib/getlogin_r.c, getlogin_r.h: New files.
38039
38040 2005-05-25  Bruno Haible  <bruno@clisp.org>
38041             Derek Price  <derek@ximbiot.com>
38042
38043         * lib/getlogin_r.h: Simplify API documentation.
38044
38045 2005-05-23  Derek Price  <derek@ximbiot.com>
38046
38047         * modules/minmax (Files): Add m4/minmax.m4.
38048         (configure.ac): Add gl_MINMAX.
38049
38050 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
38051
38052         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
38053         so that unistd-safer.h (GPL'ed code) need not be included.
38054
38055 2005-05-22  Bruno Haible  <bruno@clisp.org>
38056
38057         * m4/minmax.m4: New file.
38058         Based on a patch by Derek Price <derek@ximbiot.com>.
38059
38060 2005-05-22  Bruno Haible  <bruno@clisp.org>
38061
38062         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
38063         (INT64_MIN): Fix definition.
38064         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
38065
38066         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
38067         NEED_SIGNED_INT_TYPES.
38068
38069         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
38070         HAVE_SYSTEM_INTTYPES.
38071
38072 2005-05-22  Bruno Haible  <bruno@clisp.org>
38073
38074         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
38075         Also include <sys/param.h> if it defines MIN, MAX.
38076         Based on a patch by Derek Price <derek@ximbiot.com>.
38077
38078 2005-05-21  Jim Meyering  <jim@meyering.net>
38079
38080         * modules/fts (Files): Add m4/inttypes-pri.m4.
38081         (Depends-on): Add lstat and remove gettext.  Alphabetize.
38082
38083 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
38084
38085         New fts module.
38086         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
38087         (setup_dir, free_dir): New functions.
38088         (enter_dir, leave_dir): Define trivial
38089         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
38090         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
38091         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
38092         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
38093         Move to fts-cycle.c.
38094         (fts_open): Use setup_dir.
38095         (fts_close): Use free_dir.
38096         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
38097         This adds a label and some gotos, but the alternatives were messier.
38098         Check for memory allocation failure when entering a dir.
38099         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
38100         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
38101         (FTS): New member fts_cycle, that is a union that contains the
38102         old active_dir_ht and cycle_state.  All uses changed to mention
38103         fts_cycle.ht and fts_cycle.state.
38104         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
38105         fts.c, with the following changes:
38106         (setup_dir, free_dir): New functions.
38107         (enter_dir): Now returns bool.  Return true if successful, false
38108         if memory exhausted.  All callers changed.
38109         Do not bother partly cleaning up on
38110         memory allocation failure; that is free_dir's job.
38111         However, free ad if hash_insert fails, to avoid memory leak.
38112         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
38113         fts->fts_options to see which union member to use.
38114
38115 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
38116
38117         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
38118         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
38119
38120 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
38121
38122         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
38123
38124 2005-05-20  Jim Meyering  <jim@meyering.net>
38125
38126         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
38127         Now a macro, to pacify GCC.
38128
38129 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
38130
38131         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
38132         of -1.
38133
38134 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
38135
38136         * lib/chown.c (rpl_chown): Return -1 on failure.
38137
38138 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
38139
38140         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
38141         Don't check for stddef.h.
38142         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
38143         don't use its results.
38144         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
38145         since we include them unconditionally.  Don't require
38146         AM_STDBOOL_H, since stdbool is a prerequisite.
38147         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
38148         since we assume C89 or better.
38149         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
38150         as we don't use their results.
38151         Don't check for fchdir, memmove, memset, strrchr, as we use
38152         them unconditionally.
38153         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
38154         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
38155
38156 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
38157
38158         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
38159         Include <stddef.h> unconditionally, since we assume C89 now.
38160         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
38161         * lib/fts.c: Include fts_.h first, to check interface.
38162         Do not include intprops.h; no longer needed.
38163         Include cycle-check.h and hash.h, since fts_.h no longer does.
38164         Remove unnecessary casts of closedir to void.
38165         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
38166         decide whether to decrement nlinks.
38167         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
38168         (FTS): Use struct hash_table * instead of Hash_table, so that
38169         we no longer need to include hash.h here.
38170
38171 2005-05-18  Jim Meyering  <jim@meyering.net>
38172
38173         * modules/dirfd (License): Change to LGPL.  Most of the code
38174         is already in the public domain.
38175
38176 2005-05-18  Jim Meyering  <jim@meyering.net>
38177
38178         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
38179         Reported by Yoann Vandoorselaere.
38180
38181 2005-05-17  Jim Meyering  <jim@meyering.net>
38182
38183         * m4/fts.m4: New file, from coreutils.
38184
38185 2005-05-17  Jim Meyering  <jim@meyering.net>
38186
38187         * lib/fts.c, lib/fts_.h: New files, from coreutils.
38188
38189 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
38190
38191         Sync from coreutils.
38192         * m4/unlinkdir.m4: New file.
38193
38194 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
38195
38196         Sync from coreutils.
38197         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
38198         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
38199         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
38200         White space changes only.
38201         * lib/makepath.c (make_path): Port to hosts where leading "//" is
38202         special.
38203         * lib/yesno.c: Include getline.h, not ctype.h.
38204         (yesno): Don't remove leading white space; POSIX doesn't allow it.
38205         Use getline to remove arbitrary restriction on response length.
38206
38207 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
38208
38209         * config/srclist-update: Spell out "Street" in FSF postal
38210         mail address; this is the style the FSF seems to prefer.
38211
38212         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
38213         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
38214         this updates FSF postal mail address.
38215
38216         Sync from coreutils.
38217         * modules/unlinkdir: New file.
38218         * modules/yesno (Depends-on): Add getline.
38219         * MODULES.html.sh (File system functions): Add unlinkdir.
38220
38221 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
38222
38223         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
38224         lib/strsep.h:
38225         Change the initial comment to refer to GPL, not LGPL.
38226         gnulib-tool will change it to LGPL as needed.
38227
38228         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
38229         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
38230         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
38231         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
38232         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
38233         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
38234         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
38235         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
38236         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
38237         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
38238         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
38239         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
38240         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
38241         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
38242         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
38243         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
38244         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
38245         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
38246         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
38247         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
38248         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
38249         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
38250         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
38251         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
38252         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
38253         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
38254         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
38255         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
38256         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
38257         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
38258         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
38259         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
38260         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
38261         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
38262         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
38263         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
38264         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
38265         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
38266         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
38267         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
38268         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
38269         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
38270         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
38271         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
38272         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
38273         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
38274         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
38275         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
38276         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
38277         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
38278         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
38279         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
38280         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
38281         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
38282         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
38283         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
38284         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
38285         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
38286         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
38287         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
38288         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
38289         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
38290         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
38291         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
38292         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
38293         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
38294         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
38295         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
38296         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
38297         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
38298         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
38299         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
38300         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
38301         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
38302         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
38303         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
38304         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
38305         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
38306         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
38307         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
38308         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
38309         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
38310         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
38311         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
38312         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
38313         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
38314         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
38315         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
38316         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
38317         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
38318         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
38319         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
38320         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
38321         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
38322         lib/yesno.c, lib/yesno.h:
38323         Update FSF postal mail address.
38324
38325 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
38326
38327         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
38328         tests/test-memmem.c, tests/test-stpncpy.c:
38329         Update FSF postal mail address.
38330
38331 2005-05-13  Bruno Haible  <bruno@clisp.org>
38332
38333         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
38334         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
38335         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
38336         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
38337         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
38338         Add support for 64-bit integers in the MSVC compiler.
38339
38340 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
38341
38342         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
38343
38344 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
38345
38346         * gnulib-tool (func_import): Sort and uniquify recommended includes.
38347
38348 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
38349
38350         * doc/getdate.texi (General date syntax): Don't say that date
38351         date --iso-8601=ns generates acceptable dates; it doesn't yet.
38352         Problem reported by Nic Ferrier.
38353
38354 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38355
38356         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
38357         specified in ai_socktype. Fix invalid ai_protocol
38358         check. ai_protocol is usually set to 0 or depending on
38359         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
38360         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
38361         ai_socktype / ai_protocol in the returned addrinfo structure.
38362
38363 2005-05-10  Simon Josefsson  <jas@extundo.com>
38364
38365         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
38366         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
38367
38368 2005-05-10  Karl Berry  <karl@gnu.org>
38369
38370         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
38371         (from http://www.gnu.org/licenses).
38372         * doc/COPYING.LIB: also rename to COPYING.LESSER.
38373         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
38374         fdl.texi suffices.
38375
38376 2005-05-10  Karl Berry  <karl@gnu.org>
38377
38378         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
38379         (COPYING.DOC): remove.
38380
38381         * config/srclist-update: new FSF address.
38382
38383 2005-05-10  Derek Price  <derek@ximbiot.com>
38384
38385         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
38386         possible.
38387
38388 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38389             Bruno Haible  <bruno@clisp.org>
38390
38391         * modules/inet_ntop: New file.
38392         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38393         inet_ntop.
38394
38395 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38396             Bruno Haible  <bruno@clisp.org>
38397
38398         * m4/inet_ntop.m4: New file.
38399
38400 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38401             Bruno Haible  <bruno@clisp.org>
38402
38403         * lib/inet_ntop.h: New file.
38404         * lib/inet_ntop.c: New file, from glibc with modifications.
38405
38406 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
38407
38408         * modules/time_r (License): Change to LGPL.
38409         * modules/extensions (License): Change to LGPL.  Actually,
38410         the license is more permissive than that, but currently gnulib-tool
38411         doesn't know how to handle more-permissive licenses.
38412
38413         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
38414         Problem reported by Dave Love.
38415
38416 2005-05-08  Jim Meyering  <jim@meyering.net>
38417
38418         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
38419         blank.
38420
38421 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
38422
38423         * modules/argmatch (Depends-on): Add stdbool.
38424         * modules/backupfile (Depends-on): Likewise.
38425         * modules/chdir-long (Depends-on): Likewise.
38426         * modules/closeout (Depends-on): Likewise.
38427         * modules/cycle-check (Depends-on): Likewise.
38428         * modules/dirname (Depends-on): Likewise.
38429         * modules/fnmatch (Depends-on): Likewise.
38430         * modules/fsusage (Depends-on): Likewise.
38431         * modules/fwriteerror (Depends-on): Likewise.
38432         * modules/getcwd (Depends-on): Likewise.
38433         * modules/getloadavg (Depends-on): Likewise.
38434         * modules/hard-locale (Depends-on): Likewise.
38435         * modules/makepath (Depends-on): Likewise.
38436         * modules/mountlist (Depends-on): Likewise.
38437         * modules/nanosleep (Depends-on): Likewise.
38438         * modules/posixtm (Depends-on): Likewise.
38439         * modules/quotearg (Depends-on): Likewise.
38440         * modules/readtokens (Depends-on): Likewise.
38441         * modules/readtokens0 (Depends-on): Likewise.
38442         * modules/readutmp (Depends-on): Likewise.
38443         * modules/save-cwd (Depends-on): Likewise.
38444         * modules/strftime (Depends-on): Likewise.
38445         * modules/userspec (Depends-on): Likewise.
38446         * modules/utimecmp (Depends-on): Likewise.
38447         * modules/xgetcwd (Depends-on): Likewise.
38448         * modules/xnanosleep (Depends-on): Likewise.
38449         * modules/xstrtod (Depends-on): Likewise.
38450         * modules/yesno (Depends-on): Likewise.
38451
38452 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
38453
38454         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
38455         needless checks.
38456
38457 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
38458
38459         Merge from coreutils.  Among other things,
38460         add bulletproofing for cases where stdin, stdout, or stderr are closed.
38461         * lib/fd-safer.c: New file.
38462         * lib/fcntl-safer.h, open-safer.c: Remove.
38463         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
38464         * lib/dup-safer.c: Include unistd-safer.h first.
38465         Don't include errno.h.
38466         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
38467         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
38468         * lib/file-type.c: Rely on file-type.h change.
38469         * lib/getloadavg.c: Include unistd-safer.h.
38470         (getloadavg): Use safer open.
38471         * lib/getusershell.c: Include "stdio-safer.h".
38472         (getusershell): Use safer fopen.
38473         * lib/long-options.c (long_options): Use NULL rather than 0.
38474         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
38475         'free'.
38476         * lib/modechange.c: Likewise.
38477         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
38478         (MODE_DONE): New constant.
38479         (struct mode_change): Remove 'next' member.
38480         (make_node_op_equals): New function; like the old one of the
38481         same name, except it allocates an array.
38482         (mode_compile, mode_create_from_ref): Use it.
38483         (mode_compile): Allocate result as an array, not a linked list.
38484         Parse octal string ourself, so that we catch mistakes like "+0".
38485         (mode_adjust): Arg is an array, not a linked list.
38486         * lib/modechange.c: Include stat-macros.h, xalloc.h.
38487         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
38488         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
38489         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
38490         Remove.  This is now stat-macros.h's job.
38491         (talloc): Remove.  All callers replaced by xalloc, so that
38492         our invokers don't have to worry about reporting memory failures.
38493         (make_node_op_equals): Remove.
38494         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
38495         New constants.
38496         (struct mode_change): Moved here from modechange.h.
38497         (mode_append_entry): Remove.
38498         (mode_compile): Remove MASKED_OPS arg, since it encouraged
38499         apps to have incorrect behavior.  Use simpler algorithm for head
38500         and tail.  Don't futz with umask; that's now the job of mode_adjust.
38501         Detect more invalid usages rather than having somewhat-random behavior.
38502         Don't insert an "a=" action, as that leads to incorrect behavior.
38503         (mode_compile, mode_create_from_ref): Return NULL on error instead
38504         of an enum, since now there's only one way to have an error.  All
38505         callers changed.
38506         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
38507         at the correct time.  Simplify calculation of "+u" and its ilk.
38508         Don't mishandle "+X".
38509         (mode_free): Remove "register" and localize decls.
38510         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
38511         (struct mode_change): Move to modechange.c; callers don't
38512         need to see this stuff.
38513         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
38514         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
38515         (mode_change, mode_adjust): Reflect the new signatures noted above.
38516         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
38517         that might redefine system include files.
38518         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
38519         (my_usleep): Use NULL rather than (void *) 0.
38520         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
38521         Use siginterrupt to specify that system calls should be interrupted.
38522         (rpl_nanosleep): Move initialization of suspended closer to call of
38523         my_usleep.
38524         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
38525         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
38526         (desirable_utmp_entry): New function.
38527         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
38528         using x2nrealloc, to simplify logic.
38529         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
38530         size calculation.  Do not assume utmp file is a regular file.
38531         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
38532         (READ_UTMP_CHECK_PIDS): New constant.
38533         * lib/save-cwd.c: Include unistd-safer.h.
38534         (save_cwd): Use fd_safer.
38535         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
38536         [!_LIBC] Include "stat-macros.h" instead.
38537         * lib/unistd-safer.h (fd_safer): New decl.
38538
38539 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
38540
38541         * modules/getloadavg (Depends-on): Add unistd-safer.
38542         * modules/getusershell (Depends-on): Add stdio-safer.
38543         * modules/lstat (Depends-on): Remove xalloc.
38544         * modules/mkstemp (Depends-on): Add stat-macros.
38545         * modules/modechange (Depends-on): Remove xstrtol.
38546         Add stat-macros, xalloc.
38547         * modules/save-cwd (Depends-on): Add unistd-safer.
38548         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
38549         * modules/unistd-safer (Files): Add lib/fd-safer.c
38550         (Makefile.am): Remove lib_SOURCES.
38551
38552         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
38553         Remove fcntl-safer; unistd-safer supersedes it.
38554
38555 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
38556
38557         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
38558         AC_HEADER_STAT.
38559         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
38560         (gl_PREREQ_CHOWN): Remove.
38561         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
38562         it.  Don't require AC_HEADER_STAT.
38563         (gl_PREREQ_LSTAT): Remove.
38564         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
38565         Don't require AC_HEADER_STAT.
38566         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
38567         (gl_PREREQ_RMDIR): Remove.
38568         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
38569         mention stat-macros.h or AC_HEADER_STAT, since we'll make
38570         the stat-macros module a prerequisite.
38571         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
38572         * m4/filemode.m4 (gl_FILEMODE): Likewise.
38573         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
38574         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
38575         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
38576         variable names.
38577         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
38578         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
38579         variable prefixes.
38580         * m4/fcntl-safer.m4: Remove.
38581         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
38582         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
38583         Invoke gl_PREREQ_FD_SAFER.
38584         (gl_PREREQ_FD_SAFER): New macro.
38585         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
38586         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
38587         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
38588         Remove duplicate call to AC_LIBOBJ(readutmp).
38589         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
38590
38591         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
38592         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
38593
38594 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
38595
38596         * MODULES.html.sh (Misc): Add byteswap.
38597
38598 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
38599
38600         * modules/getcwd (Depends-on): Add extensions.
38601         * modules/openat (Depends-on): Likewise.
38602
38603 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
38604
38605         * modules/byteswap: New file.
38606
38607 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
38608
38609         * m4/byteswap.m4: New file.
38610
38611 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
38612
38613         * lib/byteswap_.h: New file.
38614
38615 2005-04-25  Karl Berry  <karl@gnu.org>
38616
38617         * m4/gettext.m4: Update from GNU gettext 0.14.4.
38618
38619 2005-04-25  Albert Chin  <china@thewrittenword.com>
38620
38621         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
38622         Toolkit C bug.
38623
38624 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
38625
38626         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
38627         (func_ln_if_changed) Remove forcibly for no error message
38628         in case file does not exist.
38629
38630 2005-04-19  Simon Josefsson  <jas@extundo.com>
38631
38632         * gnulib-tool (Options): Make --symlink mean --symbolic.
38633
38634 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
38635
38636         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
38637
38638 2005-04-16  Simon Josefsson  <jas@extundo.com>
38639
38640         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
38641
38642 2005-04-15  Simon Josefsson  <jas@extundo.com>
38643
38644         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
38645
38646 2005-04-15  Simon Josefsson  <jas@extundo.com>
38647
38648         * gnulib-tool: Rename --symlink to --symbolic.
38649
38650 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
38651
38652         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
38653         symbolic links to files instead of copying/moving.  Add --aux-dir,
38654         specifying directory relative --dir where auxiliary build tools
38655         are placed.
38656
38657 2005-04-14  Bruno Haible  <bruno@clisp.org>
38658
38659         * modules/allocsa (License): Change to LGPL.
38660         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
38661
38662 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
38663
38664         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
38665         that "UTC +1 second" continues to work.  Problem reported
38666         by Dmitry V. Levin.
38667         (relunit_snumber): New rule.
38668         (relunit): Use it.
38669
38670 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
38671
38672         * lib/getdate.y (universal_time_zone_table): New constant.
38673         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
38674         universal_time_zone_table.
38675         (lookup_zone): Prefer universal_time_zone_table to
38676         local_time_zone_table, so that "GMT" time stamps are allowed in
38677         London during the summer.  Problem reported by Ian Abbott.
38678
38679 2005-04-12  Jim Meyering  <jim@meyering.net>
38680
38681         * lib/human.c (humblock): Set *options even when returning due to
38682         xstrtoumax conversion failure.  Thanks to a used-uninitialized
38683         warning from gcc-4.
38684
38685 2005-04-09  Jim Meyering  <jim@meyering.net>
38686
38687         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
38688         -Wuninitialized: initialize tm0.tm_year.
38689
38690 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
38691
38692         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
38693         count, since there's no maximum.  All uses changed.
38694         Add member dsts_seen.
38695         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
38696         not being INT_MAX.
38697         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
38698         Use pc_rels_seen to decide whther a date is absolute.
38699
38700         * lib/getdate.y (number): Don't overwrite year.
38701         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
38702         check.
38703
38704 2005-04-02  Simon Josefsson  <jas@extundo.com>
38705
38706         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
38707         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
38708
38709 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
38710
38711         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
38712         where no absolute path name can be longer than PATH_MAX.
38713
38714 2005-03-27  Jim Meyering  <jim@meyering.net>
38715
38716         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
38717
38718 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
38719
38720         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
38721         "one's complement" -> "ones' complement" in comment, as per Knuth.
38722         "value of type" -> "type or expression" in comment.
38723         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
38724
38725 2005-03-26  Jim Meyering  <jim@meyering.net>
38726
38727         Comment nits.
38728         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
38729         Correct typos: s/or/of/.
38730
38731 2005-03-26  Jim Meyering  <jim@meyering.net>
38732
38733         * modules/check-include-files: Move to ../ and rename to...
38734         * check-module: ...this.
38735
38736 2005-03-25  Jim Meyering  <jim@meyering.net>
38737
38738         * modules/xvasprintf (Files): Add xalloc.h.
38739
38740 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
38741
38742         * modules/gettext (Files): config/config.rpath ->
38743         build-aux/config.rpath
38744         * modules/iconv (Files): Likewise.
38745         Problem reported by Oskar Liljeblad.
38746
38747 2005-03-23  Jim Meyering  <jim@meyering.net>
38748
38749         * modules/check-include-files: New script to check for
38750         missing dependencies, multiple includes, etc.
38751
38752         * modules/c-strtold (Depends-on): Add xalloc.
38753         * modules/c-strtod (Depends-on): Add xalloc.
38754         * modules/hash (Depends-on): Add xalloc.
38755         (Files): Remove lib/xalloc.h.
38756
38757         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
38758         * modules/userspec (Files): Add lib/inttostr.h.
38759
38760 2005-03-23  Jim Meyering  <jim@meyering.net>
38761
38762         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
38763
38764 2005-03-22  Jim Meyering  <jim@meyering.net>
38765
38766         * modules/stat-macros: New module.
38767         * modules/canonicalize, modules/euidaccess, modules/file-type,
38768         * modules/filemode, modules/lchown, modules/makepath,
38769         * modules/rmdir, modules/stat: Depend on new stat-macros module
38770         rather than listing lib/stat-macros.h manually.
38771         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
38772
38773 2005-03-22  Jim Meyering  <jim@meyering.net>
38774
38775         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
38776
38777 2005-03-22  Bruno Haible  <bruno@clisp.org>
38778
38779         * config/srclist.txt: Replace target directory 'config' with
38780         'build-aux'.
38781         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
38782         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
38783         ../build-aux/.
38784
38785 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
38786
38787         * modules/chdir-long (Depends-on): Add mempcpy.
38788
38789         * modules/acl, modules/backupfile, modules/c-strtod,
38790         modules/c-strtold, modules/canon-host, modules/canonicalize,
38791         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
38792         modules/exclude, modules/exitfail, modules/file-type,
38793         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
38794         modules/getdate, modules/getline, modules/getpagesize,
38795         modules/getpass, modules/getugroups, modules/group-member,
38796         modules/hard-locale, modules/hash, modules/human, modules/idcache,
38797         modules/inttostr, modules/long-options, modules/makepath,
38798         modules/md5, modules/memcasecmp, modules/memcoll,
38799         modules/modechange, modules/mountlist, modules/path-concat,
38800         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
38801         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
38802         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
38803         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
38804         modules/strftime, modules/strndup, modules/strverscmp,
38805         modules/timespec, modules/unlocked-io, modules/userspec,
38806         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
38807         modules/yesno:
38808         Remove lib_SOURCES line from Makefile.am section, as this is now
38809         done automatically by the corresponding Autoconf macro.
38810
38811 2005-03-21  Jim Meyering  <jim@meyering.net>
38812
38813         Changes imported from coreutils.
38814
38815         * lib/cycle-check.c: Don't include xalloc.h.
38816
38817         * lib/path-concat.c: Don't include assert.h.
38818         (path_concat): Remove assertion that would have triggered
38819         for ABASE starting with more than one slash.
38820         Reported by Andreas Schwab.
38821
38822         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
38823         properly when ABASE is an absolute file name.
38824         Correct the description of this function.
38825         Include <assert.h>.
38826         Add an assertion and a test driver.
38827         This fixes a bug introduced on 2004-07-02.
38828         Andreas Schwab reported the resulting failure of cp --parents:
38829         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
38830
38831 2005-03-21  Jim Meyering  <jim@meyering.net>
38832
38833         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
38834         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
38835
38836 2005-03-21  Jim Meyering  <jim@meyering.net>
38837         and  Paul Eggert  <eggert@cs.ucla.edu>
38838
38839         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
38840         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
38841         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
38842         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
38843         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
38844         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
38845         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
38846         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
38847         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
38848         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
38849         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
38850         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
38851         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
38852         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
38853         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
38854         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
38855         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
38856         for these modules.
38857
38858 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
38859
38860         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
38861         (which shouldn't happen), generate nothing instead of returning 0
38862         immediately, so that nstrftime (NULL, ...) doesn't return 0.
38863
38864 2005-03-16  Bruno Haible  <bruno@clisp.org>
38865
38866         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
38867         HAVE_LONGLONG_64BIT.
38868
38869 2005-03-16  Bruno Haible  <bruno@clisp.org>
38870
38871         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
38872         HAVE_LONGLONG_64BIT.
38873
38874 2005-03-16  Bruno Haible  <bruno@clisp.org>
38875
38876         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
38877         HAVE_LONGLONG_64BIT.
38878
38879 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
38880
38881         * lib/strftime.c (my_strftime): Prepend space to format so that we can
38882         reliably distinguish strftime failure from empty output on POSIX
38883         hosts.
38884
38885 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
38886
38887         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
38888         (iconv_string): Don't guess a size-zero buffer, as that might cause
38889         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
38890         result would be 'too large', where 'too large' is (heuristically)
38891         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
38892         overflow concerns.  This will prevent some unwanted malloc failures
38893         when the inputs are very large.
38894
38895 2005-03-15  Karl Berry  <karl@gnu.org>
38896
38897         * config/srclist.txt (config.rpath): from gettext.
38898         * config/config.rpath: update.
38899
38900 2005-03-15  Bruno Haible  <bruno@clisp.org>
38901
38902         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
38903         to 'negate'.
38904
38905         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
38906         variable.
38907
38908         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
38909         results.
38910
38911 2005-03-14  Simon Josefsson  <jas@extundo.com>
38912
38913         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
38914         <fx@gnu.org>.
38915
38916 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
38917
38918         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
38919         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
38920         intprops.h.
38921         * lib/strtol.c: Likewise.
38922
38923 2005-03-14  Jim Meyering  <jim@meyering.net>
38924
38925         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
38926         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
38927         to be nonzero so that we (and caller) can detect the difference
38928         between a valid zero-length expansion and an error return, even
38929         when the underlying strftime fails before writing anything into
38930         that location.
38931
38932 2005-03-14  Bruno Haible  <bruno@clisp.org>
38933
38934         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
38935         Update from GNU gettext 0.14.3.
38936
38937 2005-03-10  Jim Meyering  <jim@meyering.net>
38938
38939         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
38940
38941 2005-03-10  Jim Meyering  <jim@meyering.net>
38942
38943         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
38944         so that this module works on systems without fchdir.
38945
38946 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
38947
38948         Factor int-properties macros into a single file, except for
38949         glibc-related files.
38950         * lib/intprops.h: New file.
38951         * lib/getloadavg.c: Include it instead of limits.h.
38952         (INT_STRLEN_BOUND): Remove.
38953         * lib/human.c: Include intprops.h.
38954         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
38955         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
38956         302/1000.
38957         * lib/inttostr.h: Include intprops.h instead of limits.h.
38958         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
38959         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
38960         for consistency with intprops.h.
38961         (time_t_is_integer, twos_complement_arithmetic): Use them.
38962         * lib/sig2str.h: Include <signal.h>, intprops.h.
38963         (INT_STRLEN_BOUND): Remove.
38964         * lib/strftime.c (TYPE_SIGNED): Remove.
38965         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
38966         * lib/strtol.c: Adjust comments to match intprops.h.
38967         * lib/userspec.c: Include intprops.h.
38968         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
38969         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
38970         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
38971         instead of rolling our own expressions.
38972         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
38973
38974         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
38975         instead of int.
38976         (my_strftime): Do not mishandle years close to INT_MAX, by doing
38977         the right thing even if adding 1900 would overflow.  Similarly
38978         for tm_mon + 1 and tm_yday + 1.
38979         Make %Y always equivalent to %C%y, and similarly for %G and %g.
38980         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
38981         (DO_SIGNED_NUMBER): New macro.
38982         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
38983
38984 2005-03-07  Bruno Haible  <bruno@clisp.org>
38985
38986         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
38987
38988 2005-03-07  Bruno Haible  <bruno@clisp.org>
38989
38990         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
38991
38992 2005-03-04  Derek R. Price  <derek@ximbiot.com>
38993
38994         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
38995         (func_import): Only replace files via --import when they have actually
38996         changed.
38997
38998 2005-03-03  Derek R. Price  <derek@ximbiot.com>
38999
39000         * m4/mmap-anon.m4: New file.
39001         * m4/pagealign_alloc.m4: New file.
39002
39003 2005-03-03  Derek R. Price  <derek@ximbiot.com>
39004             Bruno Haible  <bruno@clisp.org>
39005
39006         * modules/pagealign_alloc: New file.
39007         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
39008
39009 2005-03-03  Derek R. Price  <derek@ximbiot.com>
39010             Bruno Haible  <bruno@clisp.org>
39011
39012         * lib/pagealign_alloc.h: New file.
39013         * lib/pagealign_alloc.c: New file.
39014
39015 2005-03-03  Bruno Haible  <bruno@clisp.org>
39016
39017         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
39018         Use an all-permissive copyright notice, recommended by RMS.
39019
39020 2005-03-02  Bruno Haible  <bruno@clisp.org>
39021
39022         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
39023         of AIX, the replacement has to be done only after <string.h> is
39024         included, therefore not in config.h. stpncpy.h does the replacement,
39025         and stpncpy.c uses it.
39026
39027 2005-03-02  Bruno Haible  <bruno@clisp.org>
39028
39029         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
39030         stpncpy.c uses it.
39031
39032 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
39033
39034         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
39035         The workaround isn't strictly needed for POSIX conformance, and
39036         it's too much of a pain to configure and maintain.  We'll ask
39037         people to fix their kernels instead.
39038         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
39039         (NANOSLEEP_BUG_WORKAROUND): Remove.
39040         (xnanosleep): Remove the workaround.
39041
39042 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
39043
39044         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
39045         Reported by Derek Price.
39046         (Include): Add "timespec.h".
39047
39048         * modules/xnanosleep (Depends-on): Remove gethrxtime.
39049
39050 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
39051
39052         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
39053         to detect nanosleep bug.
39054
39055 2005-03-01  Bruno Haible  <bruno@clisp.org>
39056
39057         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
39058
39059 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
39060
39061         * modules/gethrxtime: New file.
39062         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
39063         (Depends-on): Add gethrxtime.
39064         (configure.ac): Add gl_XNANOSLEEP.
39065         (Makefile.am): Remove lib_SOURCES line.
39066
39067 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
39068
39069         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
39070         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
39071
39072 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
39073
39074         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
39075         * lib/timespec.h (gettime): Return void, since it always
39076         succeeds now.  All uses changed.
39077         * lib/gettime.c (gettime) Likewise.
39078         [HAVE_NANOTIME]: Prefer nanotime.
39079         Assume gettimeofday succeeds, as POSIX requires.
39080         Assime time () succeeds, since other code already does.
39081         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
39082         (timespec_subtract): Remove.
39083         (NANOSLEEP_BUG_WORKAROUND): New constant.
39084         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
39085         things considerably.  Use it only on GNU/Linux hosts, since the
39086         workaround shouldn't be needed elsewhere.
39087
39088 2005-02-24  Bruno Haible  <bruno@clisp.org>
39089
39090         * modules/gettext (Files): Add m4/glibc2.m4.
39091
39092 2005-02-24  Bruno Haible  <bruno@clisp.org>
39093
39094         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
39095         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
39096         * m4/progtest.m4:
39097         Update from GNU gettext 0.14.2.
39098         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
39099
39100 2005-02-24  Bruno Haible  <bruno@clisp.org>
39101
39102         * lib/localcharset.c: Update from GNU gettext 0.14.2.
39103         * lib/config.charset: Update from GNU gettext 0.14.2.
39104
39105 2005-02-24  Bruno Haible  <bruno@clisp.org>
39106
39107         * lib/gettext.h: Update from GNU gettext 0.14.2.
39108
39109 2005-02-23  Simon Josefsson  <jas@extundo.com>
39110
39111         * m4/iconvme.m4: New file.
39112
39113 2005-02-23  Jim Meyering  <jim@meyering.net>
39114
39115         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
39116         change.
39117         Thanks to Bruno Haible for catching it.
39118
39119 2005-02-22  Simon Josefsson  <jas@extundo.com>
39120
39121         * modules/iconvme: New file.
39122
39123         * MODULES.html.sh: Add iconvme.
39124
39125 2005-02-22  Simon Josefsson  <jas@extundo.com>
39126
39127         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
39128
39129 2005-02-22  Simon Josefsson  <jas@extundo.com>
39130
39131         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
39132
39133 2005-02-22  Jim Meyering  <jim@meyering.net>
39134
39135         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
39136         s/ifndef/ifdef/.
39137
39138 2005-02-20  Neil Conway  <neilc@samurai.com>
39139
39140         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
39141         returned by OSX/Darwin if the specified buffer is not large
39142         enough for the hostname.
39143
39144 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39145
39146         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
39147         pass it to _help, otherwise the latter coredumps trying to
39148         dereference state.root_argp.
39149
39150 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39151
39152         * modules/chdir-long (Depends-on): Add memrchr.
39153         * modules/memrchr (Files): Add lib/memrchr.h.
39154         (Include): "memrchr.h".
39155
39156 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39157
39158         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
39159
39160 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39161
39162         * lib/memrchr.h: New file.
39163         * lib/chdir-long.c: Include it.
39164         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
39165         Don't bother including stddef.h.
39166
39167 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
39168
39169         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
39170         inclusion.
39171         Include <sys/types.h>, for dev_t.
39172         (ME_DUMMY, ME_REMOTE): Move from here....
39173         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
39174         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
39175         Dmitry V. Levin.
39176         Include mountlist.h first, to test the interface.
39177
39178 2005-01-29  Bruno Haible  <bruno@clisp.org>
39179
39180         * lib/progname.c (program_name): Initialize.
39181         Needed when linking statically on MacOS X.
39182
39183 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
39184
39185         Sync from coreutils.
39186         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
39187         (Depends-on): Add c-strtod.
39188         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
39189
39190 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
39191
39192         Sync from coreutils.
39193         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
39194
39195         Remove files that are specific to coreutils.
39196         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
39197
39198 2005-01-28  Bruno Haible  <bruno@clisp.org>
39199
39200         * modules/javacomp: New file.
39201         * MODULES.html.sh (Java): Add javacomp.
39202
39203 2005-01-28  Bruno Haible  <bruno@clisp.org>
39204
39205         * m4/javacomp.m4: New file, from GNU gettext.
39206
39207 2005-01-28  Bruno Haible  <bruno@clisp.org>
39208
39209         * lib/javacomp.sh.in: New file, from GNU gettext.
39210         * lib/javacomp.h: New file, from GNU gettext.
39211         * lib/javacomp.c: New file, from GNU gettext.
39212
39213 2005-01-26  Simon Josefsson  <jas@extundo.com>
39214
39215         * lib/gai_strerror.c: Use GPL in header.
39216
39217 2005-01-26  Bruno Haible  <bruno@clisp.org>
39218
39219         * modules/javaexec: New file.
39220         * MODULES.html.sh (Java): Add javaexec.
39221
39222 2005-01-26  Bruno Haible  <bruno@clisp.org>
39223
39224         * m4/javaexec.m4: New file, from GNU gettext.
39225
39226 2005-01-26  Bruno Haible  <bruno@clisp.org>
39227
39228         * lib/javaexec.sh.in: New file, from GNU gettext.
39229         * lib/javaexec.h: New file, from GNU gettext.
39230         * lib/javaexec.c: New file, from GNU gettext.
39231
39232 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39233
39234         * modules/lchown (Depends-on): Remove lchown.h
39235
39236 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39237
39238         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
39239         must be defined if the header file was not found, in order
39240         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
39241
39242 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39243
39244         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
39245         initializers for struct pentry_state.
39246         (__argp_error): Check return value of __asprintf
39247         (__argp_failure): Translate error message
39248
39249         * lib/argp-parse.c: Removed braces around the expansion of N_()
39250
39251 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
39252
39253         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
39254         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
39255         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
39256         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
39257         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
39258         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
39259         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
39260         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
39261         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
39262         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
39263         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
39264         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
39265         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
39266         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
39267         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
39268         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
39269         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
39270         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
39271         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
39272         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
39273         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
39274         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
39275         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
39276         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
39277         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
39278         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
39279         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
39280         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
39281         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
39282         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
39283         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
39284         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
39285         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
39286         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
39287         xstrtol.m4, xstrtoumax.m4, yesno.m4:
39288         Use an all-permissive copyright notice, recommended by RMS.
39289
39290 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
39291
39292         * modules/chdir-long (Depends-on): Remove mempcpy.
39293
39294 2005-01-21  Jim Meyering  <jim@meyering.net>
39295
39296         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
39297         same value as for Solaris 9.
39298
39299         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
39300         component length.  This included changing the parameter to be
39301         of type `char *' rather than `char const *'.
39302         * lib/chdir-long.h (chdir_long): Update prototype.
39303
39304         * lib/openat.c (fdopendir, fstatat): New functions.
39305         * lib/openat.h: Include headers required for use of DIR and struct
39306         stat.
39307         [AT_SYMLINK_NOFOLLOW]: Define.
39308         (fdopendir, fstatat): Add prototypes.
39309
39310 2005-01-21  Bruno Haible  <bruno@clisp.org>
39311
39312         * modules/classpath: New file.
39313         * MODULES.html.sh (Java): Add classpath.
39314
39315 2005-01-21  Bruno Haible  <bruno@clisp.org>
39316
39317         * lib/classpath.h: New file, from GNU gettext.
39318         * lib/classpath.c: New file, from GNU gettext.
39319
39320 2005-01-20  Simon Josefsson  <jas@extundo.com>
39321
39322         * modules/version-etc-fsf: New file.
39323
39324 2005-01-20  Simon Josefsson  <jas@extundo.com>
39325
39326         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
39327         * lib/version-etc.c: Remove version_etc_copyright.
39328         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
39329         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
39330
39331 2005-01-20  Simon Josefsson  <jas@extundo.com>
39332
39333         * lib/base64.h (isbase64): Add.
39334
39335         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
39336         using a unsigned prototype, don't inline.
39337         (base64_decode): Use it.
39338
39339 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
39340
39341         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
39342         it.
39343
39344 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
39345
39346         * lib/save-cwd.c (save_cwd): Remove code to support the case
39347         where fchdir is missing or flaky.
39348
39349 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
39350
39351         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
39352
39353 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
39354
39355         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
39356         AC_LIBSOURCES now does this.
39357         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
39358         with new ullong_max module.
39359
39360 2005-01-19  Bruno Haible  <bruno@clisp.org>
39361
39362         * modules/sh-quote: New file.
39363         * MODULES.html.sh (Executing programs): Add sh-quote.
39364
39365 2005-01-19  Bruno Haible  <bruno@clisp.org>
39366
39367         * lib/sh-quote.h: New file, from GNU gettext.
39368         * lib/sh-quote.c: New file, from GNU gettext.
39369
39370 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
39371
39372         Merge from coreutils.
39373         * m4/ullong_max.m4: New file.
39374         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
39375         (gl_MACROS): Assume localeconv exists.
39376
39377 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
39378
39379         Merge changes from coreutils, as described below in several
39380         changelogs dated today.
39381
39382         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
39383         (O_DIRECTORY): Remove; not needed here, since "." must be
39384         a directory.  All uses removed.
39385         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
39386         universal on Suns, and we also need to test for IRIX.
39387         Revamp code to use 'if' rather than '#if'.
39388         Avoid unnecessary comparison of cwd->desc to 0.
39389
39390         * lib/utimens.c (futimens): Robustify the previous patch, by checking
39391         for known valid error numbers rather than observed invalid ones.
39392
39393 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
39394
39395         * modules/ullong_max: New file.
39396
39397         * modules/chdir-long, modules/openat: New files.
39398         * modules/save-cwd (Depends-on): Depend on chdir-long.
39399         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
39400
39401 2005-01-18  Jim Meyering  <jim@meyering.net>
39402
39403         Merge from coreutils.
39404         * m4/chdir-long.m4, m4/openat.m4: New files.
39405         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
39406         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
39407         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
39408         is sane and DOES follow symlinks.  Besides, testing 20 different
39409         systems found no broken chown implementations.
39410         Prompted by a change in rsync's copy of this macro.
39411         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
39412
39413         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
39414
39415         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
39416         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
39417         NULL-means-set-to-current-time semantics.
39418         Remove temporary file immediately, rather than waiting
39419         for configure's at-exit trap code to do it.
39420
39421 2005-01-18  Jim Meyering  <jim@meyering.net>
39422
39423         * lib/version-etc.c (version_etc_copyright): Update copyright date.
39424
39425         * lib/utimens.c (futimens): Account for the fact that futimes
39426         can also fail with errno == ENOSYS or errno == ENOENT.
39427         Patch from Dmitry V. Levin.
39428
39429         Change the name of the robust chdir function from chdir to chdir_long.
39430         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
39431         (restore_cwd): Use chdir_long, not chdir.
39432         * lib/chdir-long.c: Renamed from chdir.c.
39433         * lib/chdir-long.h: Renamed from chdir.h.
39434         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
39435         Hurd.
39436
39437 2005-01-18  Bruno Haible  <bruno@clisp.org>
39438
39439         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
39440         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
39441         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
39442         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
39443         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
39444         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
39445         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
39446         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
39447         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
39448         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
39449         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
39450         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
39451         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
39452         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
39453         Use an all-permissive copyright notice, recommended by RMS.
39454
39455 2005-01-18  Bob Proulx  <bob@proulx.com>
39456
39457         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
39458         simplify offsetof() macro construct to avoid compile failure with
39459         native HP-UX 11.0 ANSI C compiler.
39460
39461 2005-01-17  Bruno Haible  <bruno@clisp.org>
39462
39463         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
39464         redundant because stpncpy.m4 takes care of it.
39465
39466 2005-01-17  Bruno Haible  <bruno@clisp.org>
39467
39468         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
39469
39470 2005-01-17  Bruno Haible  <bruno@clisp.org>
39471
39472         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
39473         used.
39474
39475 2005-01-17  Bruno Haible  <bruno@clisp.org>
39476
39477         * lib/fwriteerror.h (fwriteerror): Change specification to include
39478         fclose.
39479         * lib/fwriteerror.c: Include <stdbool.h>.
39480         (fwriteerror): At the end, close the file stream. Record whether
39481         stdout was already closed.
39482
39483 2005-01-17  Bruno Haible  <bruno@clisp.org>
39484
39485         * lib/execute.c (environ): Declare if needed.
39486         * lib/pipe.c (environ): Likewise.
39487         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
39488
39489 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39490
39491         * modules/argp: Depend on vsnprintf
39492
39493 2005-01-10  Jim Meyering  <jim@meyering.net>
39494
39495         * modules/closeout (Depends-on): Add atexit.
39496
39497 2005-01-06  Bruno Haible  <bruno@clisp.org>
39498
39499         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
39500
39501 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
39502
39503         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
39504         definitions to be after all include files, to avoid collisions.
39505         Problem reported by Bob Proulx.
39506
39507 2005-01-04  Jim Meyering  <jim@meyering.net>
39508
39509         Changes imported from coreutils.
39510         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
39511         as the mkstemp template, use a temporary directory and an
39512         8.3-friendly template to avoid trouble on systems like DJGPP.
39513         Reported by Juan M. Guerrero via Stepan Kasal.
39514         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
39515         close. Remove the temporary directory right away, rather than waiting
39516         for configure's at-exit trap code to do it.
39517         Suggestion from Stepan Kasal.
39518
39519 2005-01-01  Simon Josefsson  <jas@extundo.com>
39520
39521         * gnulib-tool: Print #include directives when --import'ing.
39522
39523 2004-12-28  Simon Josefsson  <jas@extundo.com>
39524
39525         * tests/test-base64.c: Include required header files.  Remove
39526         unused variables.
39527
39528 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
39529
39530         * modules/error (Depends-on): Remove gettext.
39531
39532 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
39533
39534         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
39535         not needed.  This removes a dependency on the gettext module.
39536         [defined _LIBC]: Do not include <libintl.h>; not needed.
39537
39538 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
39539
39540         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
39541         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
39542
39543 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
39544
39545         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
39546         HAVE_DECL_STRTOLD.
39547
39548 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
39549
39550         * modules/getdate (Depends-on): Remove alloca-opt.
39551
39552 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
39553
39554         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
39555
39556 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
39557
39558         * lib/argp-parse.c: Include <stddef.h>.
39559         (alignof, alignto): New macros.
39560         (parser_init): Don't assume that void * is aligned sufficiently
39561         for struct option.
39562
39563         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
39564         need to extend the stack.
39565         (YYINITDEPTH): New macro, so that the initial stack isn't overly
39566         large.
39567
39568 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39569
39570         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
39571
39572 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
39573
39574         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
39575         (2004-10-24) change.  Apparently this was a false alarm.
39576
39577         * modules/getdate: Depend on alloca-opt, not alloca.
39578
39579 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
39580
39581         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
39582         Remove now-obsolete comment about AIX.
39583         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
39584         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
39585         (YYMAXDEPTH): New macro.
39586
39587 2004-12-18  Simon Josefsson  <jas@extundo.com>
39588
39589         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
39590
39591 2004-12-18  Bruno Haible  <bruno@clisp.org>
39592
39593         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
39594
39595 2004-12-18  Bruno Haible  <bruno@clisp.org>
39596
39597         * lib/fatal-signal.c (fatal_signals): Make non-const.
39598         (init_fatal_signals): New function.
39599         (uninstall_handlers, install_handlers): Ignore signals that were set to
39600         SIG_IGN.
39601         (at_fatal_signal): Call init_fatal_signals.
39602         (init_fatal_signal_set): Likewise. Ignore signals that were set to
39603         SIG_IGN.
39604         Reported by Paul Eggert.
39605
39606 2004-12-18  Bruno Haible  <bruno@clisp.org>
39607
39608         * doc/alloca.texi: New file.
39609         * doc/alloca-opt.texi: New file.
39610
39611 2004-12-17  Jim Meyering  <jim@meyering.net>
39612
39613         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
39614         Otherwise, install-sh could exit with improper exit status when
39615         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
39616
39617 2004-12-16  Simon Josefsson  <jas@extundo.com>
39618
39619         * tests/test-base64.c: Add license.
39620
39621 2004-12-15  Stepan Kasal  <address@hidden>
39622
39623         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
39624
39625 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
39626
39627         * modules/getcwd (Files): Add m4/d-ino.m4.
39628         Suggested by Mark D. Baushke.
39629
39630 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
39631
39632         * lib/getdate.y (textint): New member "negative".
39633         (time_zone_hhmm): New function.
39634         Expect 14 shift-reduce conflicts, not 13.
39635         (o_colon_minutes): New rule.
39636         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
39637         (yylex): Set the "negative" member of signed numbers.
39638
39639 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
39640
39641         * doc/getdate.texi (Time of day items, Time zone items):
39642         Describe new formats +00:00, UTC+00:00.
39643
39644 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
39645
39646         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
39647         spurious "-l"s.  Problem reported by Stepan Kasal.
39648
39649 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
39650
39651         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
39652         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
39653
39654 2004-12-04  Simon Josefsson  <jas@extundo.com>
39655
39656         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
39657         Vandoorselaere <yoann@prelude-ids.org>.
39658
39659 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
39660
39661         Changes imported from coreutils.
39662         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
39663         exist.
39664         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
39665
39666 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
39667
39668         Changes imported from coreutils.
39669         * lib/hard-locale.c: Assume <locale.h> exists.
39670         Include "strdup.h".
39671         (GLIBC_VERSION): New macro.
39672         (hard_locale): Assume setlocale exists.
39673         Rewrite to avoid #ifdef.
39674         Use strdup rather than malloc + strcpy.
39675         * lib/human.c: Assume <locale.h> exists.
39676         (human_readable): Assume localeconv exists.
39677
39678 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
39679
39680         * modules/hard-locale (Depends-on): Add strdup.
39681
39682 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
39683
39684         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
39685         convert T2, not T.  (Imported from libc.)
39686
39687 2004-11-30  Simon Josefsson  <jas@extundo.com>
39688
39689         * modules/restrict (License): Change to LGPL.
39690
39691 2004-11-30  Simon Josefsson  <jas@extundo.com>
39692
39693         * m4/restrict.m4: Add copyright and copying conditions.
39694
39695 2004-11-30  Simon Josefsson  <jas@extundo.com>
39696
39697         * m4/base64.m4: New file.
39698
39699 2004-11-30  Simon Josefsson  <jas@extundo.com>
39700
39701         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
39702         base64.
39703
39704         * tests/test-base64.c: New file.
39705
39706         * modules/base64: New file.
39707
39708 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
39709
39710         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
39711         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
39712
39713         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
39714
39715 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
39716
39717         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
39718         (__getcwd.c): Don't restore errno; glibc doesn't.
39719         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
39720         first, falling back to our code only if its results look suspicious.
39721         Ensure that the resulting buffer is only as large as necessary.
39722
39723         * lib/readutmp.c: Include readutmp.h first.
39724         Include <errno.h>, since readutmp.h no longer does that.
39725         * lib/readutmp.h: Don't include <errno.h>,
39726         <sys/param.h>, <time.h>; not needed to establish interface.
39727         (errno): Remove decl.
39728         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
39729         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
39730         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
39731
39732 2004-11-28  Simon Josefsson  <jas@extundo.com>
39733
39734         * lib/base64.h, base64.c: New file.
39735
39736 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
39737
39738         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
39739
39740 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
39741
39742         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
39743         (Depends-on): Remove pathmax, same.  Add mempcpy.
39744         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
39745         (Makefile.am): Append getcwd.h to lib_SOURCES.
39746         (Include): Add getcwd.h.
39747         (Maintainer): Change from Jim Meyering to "all, glibc",
39748         since getdate now uses intended-for-glibc code.
39749         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
39750         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
39751
39752 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
39753
39754         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
39755         HP's ANSI C compiler.
39756         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
39757         Declaring int functions causes warnings on some modern systems and
39758         shouldn't be needed to compile on ancient ones.
39759         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
39760         defined.
39761
39762         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
39763         with the following changes.
39764         (__set_errno): Parenthesize properly.
39765         Include <stdbool.h>.
39766         (MIN, MAX, MATCHING_INO): New macros.
39767         (__getcwd): Define with prototype, not K&R form.
39768         Use heuristics to allocate default buffer on stack if possible.
39769         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
39770         behavior, and to avoid the PATH_MAX limit when computing
39771         ../../../../...
39772         Use MATCHING_INO to compare inode number to file.
39773         Check for arithmetic overflow in size calculations.
39774         Fix bug in reallocation of dot array that caused getcwd to fail
39775         on directories nested deeper than 75.
39776         Be more careful about saving errno on error.
39777         Do not use realloc; use only free+malloc, as this is a bit
39778         more flexible and avoids a needless copy operation.
39779         Do not inspect st_dev and st_ino for symbolic links; POSIX
39780         doesn't specify the latter.
39781         Check for closedir errors.
39782         Avoid needless casts.
39783         Use "#ifdef weak_alias" around weak_alias, to be like other
39784         glibc code.
39785         The following changes to getcwd.c have effect only when used in
39786         gnulib; they have no effect inside glibc proper.
39787         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
39788         as alloca isn't used.
39789         (alloca, __alloca): Likewise.
39790         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
39791         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
39792         unconditionally, as gnulib assumes C89 or better.
39793         Do not include <sys/param.h>.
39794         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
39795         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
39796         better.
39797         (NULL) [!defined NULL]: Remove; we assume C89 or better.
39798         Include <dirent.h> in a way that is compatible with modern Autoconf.
39799         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
39800         New macros, if not already defined.
39801         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
39802         Use "_LIBC", not "defined _LIBC", for consistency.
39803         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
39804         a mempcpy module.
39805         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
39806         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
39807         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
39808         credit only to Jim Meyering and adjust the copyright dates.
39809         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
39810         <stdlib.h>, <unistd.h>, "pathmax.h".
39811         Instead, include "xgetcwd.h" (first) and "getcwd.h".
39812         (INITIAL_BUFFER_SIZE): Remove.
39813         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
39814
39815 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
39816
39817         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
39818         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
39819         Use the _ONCE methods, for efficiency.
39820         Check for fcntl.h.  In test program, include <errno.h>
39821         and <fcntl.h> if available.  Remove old K&R cruft from
39822         test program.  Check for common errors in GNU/Linux,
39823         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
39824         don't do AC_LIBOBJ, as that's getcwd.m4's job.
39825         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
39826         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
39827         name accordingly.
39828         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
39829         accommodate new getcwd.c.
39830         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
39831         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
39832         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
39833         that's all we need now.
39834
39835 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39836
39837         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
39838         argp-parse.c depends on getopt internals, that means we should
39839         always use our getopt, to be on the safe side.
39840         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
39841         order not to spoil the result of an eventual previous invocation
39842         of gl_GETOPT_SUBSTITUTE.
39843
39844 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39845
39846         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
39847         redefinition warnings. To avoid them, include the defines
39848         in `#if !defined __need_getopt ... #endif'. The only place
39849         where __getopt_argv_const is used is in definitions
39850         of getopt_long and getopt_long_only below, which are as well
39851         protected by `#ifndef __need_getopt'.
39852         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
39853         __need_getopt after including <stdio.h> and <unistd.h> These
39854         headers might have defined it.
39855
39856 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
39857
39858         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
39859
39860 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
39861
39862         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
39863         (futimens): New function, which uses futimes if available.
39864         (futimens, utimens): Support timespec==NULL, with same semantics
39865         as utime and utimens.
39866         * lib/utimens.h (futimens): New decl.
39867
39868 2004-11-23  Jim Meyering  <jim@meyering.net>
39869
39870         * lib/getopt_.h: Remove trailing blanks.
39871
39872 2004-11-23  Jim Meyering  <jim@meyering.net>
39873
39874         * lib/__fpending.c: Add comment.
39875
39876 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
39877
39878         * modules/canonicalize (Depends-on): Add xreadlink.
39879         Problem reported by James Youngman.
39880
39881 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
39882
39883         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
39884         New macros.
39885         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
39886         optopt): Use them instead of invoking ## directly; otherwise, the
39887         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
39888
39889 2004-11-19  Bruno Haible  <bruno@clisp.org>
39890
39891         * lib/strtok_r.c: Move comments from here...
39892         * lib/strtok_r.h: ... to here.
39893
39894 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
39895
39896         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
39897         implementations that mishandle size_t overflow.
39898
39899 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
39900
39901         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
39902         might fail.  Problem reported by Yoann Vandoorselaere.
39903         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
39904         implementations that mishandle size_t overflow.
39905
39906 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
39907
39908         * modules/canon-host (Depends-on): Add strdup.
39909
39910 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
39911
39912         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
39913
39914 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
39915
39916         * lib/canon-host.c: Include "strdup.h".
39917         (canon_host): Use getaddrinfo if available, so that IPv6 works.
39918         Use strdup instead of malloc/strcpy to duplicate strings.
39919
39920         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
39921         (human_space_before_unit): New constant.
39922         * lib/human.c (human_readable): Support it.
39923
39924         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
39925         (xgetcwd): Set errno correctly when failing.
39926         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
39927         the failure is actually due to a PATH_MAX problem.
39928
39929         Further getopt changes to make it more likely that glibc will
39930         buy the changes back.
39931         * lib/getopt.c (POSIXLY_CORRECT): New constant.
39932         (getopt): Use it, so to preserve glibc semantic
39933         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
39934         when compiling for libc.
39935         * lib/getopt_.h (__getopt_argv_const): Bring it back.
39936         (getopt_long, getopt_long_only): Use it.
39937
39938         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
39939         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
39940         (getopt): Argv is now char * const *, as per standard.
39941         (_getopt_internal_r, _getopt_internal): Argv is now char **,
39942         not char *__getopt_argv_const *.
39943         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
39944         _getopt_long_only_r): Likewise.
39945         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
39946         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
39947         _getopt_long_r, _getopt_long_only_r): Likewise.
39948         * lib/getopt_.h (__getopt_argv_const): Remove.
39949         (getopt): Argv is now char * const *, as per standard.
39950
39951         * lib/getdate.y (tORDINAL): New token.
39952         (day, relunit): Allow it for relative times.
39953         (relative_time_table): Use tORDINAL for ordinals.
39954
39955 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
39956
39957         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
39958         Document that "second" isn't allowed as an ordinal number.
39959
39960 2004-11-16  Jim Meyering  <jim@meyering.net>
39961
39962         * modules/closeout (Depends-on): Add fpending.
39963
39964 2004-11-15  Jim Meyering  <jim@meyering.net>
39965
39966         * lib/closeout.c: Include "__fpending.h" once again.
39967         Include <stdbool.h>.
39968         (close_stdout): Don't fail just because stdout was closed initially,
39969         since some programs don't write to stdout in the normal course of
39970         operation (other than --version and --help), and we don't want this
39971         function to make e.g. `touch file >&-' fail.
39972         But do fail if it was closed and someone has tried to write to it.
39973         E.g., `printf foo >&-' must fail.
39974
39975 2004-11-13  Jim Meyering  <jim@meyering.net>
39976
39977         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
39978
39979 2004-11-12  Simon Josefsson  <jas@extundo.com>
39980
39981         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
39982         small doc fix is still pending.
39983
39984 2004-11-11  Simon Josefsson  <jas@extundo.com>
39985
39986         * modules/strtok_r: New file.
39987
39988         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
39989         strtok_r.
39990
39991 2004-11-11  Simon Josefsson  <jas@extundo.com>
39992
39993         * m4/strtok_r.m4: New file.
39994
39995         * m4/getopt.m4: Replace opterr.
39996
39997 2004-11-11  Simon Josefsson  <jas@extundo.com>
39998
39999         * lib/strtok_r.h, strtok_r.c: New file.
40000
40001 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
40002
40003         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
40004         of replacing opterr, getopt, etc.  This should handle the
40005         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
40006
40007 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
40008
40009         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
40010         we can stop lying to compilers about the constness of argv when we
40011         are compiled outside glibc.
40012         (getopt, getopt_long, getopt_long_only): Use it.
40013         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
40014         _getopt_internal, getopt): Likewise.
40015         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
40016         _getopt_long_only_r): Likewise.
40017         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
40018         _getopt_long_r, _getopt_long_only_r): Likewise.
40019
40020         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
40021         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
40022         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
40023         the other external symbols.
40024         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
40025         declaration, since the above renaming now works around collisions.
40026
40027 2004-11-11  Jim Meyering  <jim@meyering.net>
40028
40029         * lib/linebreak.c: Remove trailing blanks.
40030         * lib/alloca_.h: Likewise.
40031         * lib/acosl.c: Likewise.
40032         * lib/euidaccess.c: Likewise.
40033         * lib/allocsa.h: Likewise.
40034
40035 2004-11-10  Simon Josefsson  <jas@extundo.com>
40036
40037         * m4/getaddrinfo.m4: New file.
40038
40039 2004-11-10  Simon Josefsson  <jas@extundo.com>
40040
40041         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
40042
40043 2004-11-10  Simon Josefsson  <jas@extundo.com>
40044
40045         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
40046         getaddrinfo.
40047
40048         * modules/getaddrinfo: New file.
40049
40050 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
40051
40052         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
40053
40054 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
40055
40056         * lib/mktime.c (SHR): New macro, which is a portable
40057         substitute for >> that should work even on Crays.
40058         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
40059         Problem reported by Mark D. Baushke in
40060         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
40061         * lib/getdate.y (SHR): Likewise.
40062         (tm_diff): Use it.
40063         * lib/strftime.c (SHR): Likewise.
40064         (tm_diff): Use it.
40065         * lib/quotearg.c (struct quoting_options): Use unsigned int for
40066         quote_these_too, so that right shifts are well defined.  All uses
40067         changed.
40068
40069 2004-11-10  Jim Meyering  <jim@meyering.net>
40070
40071         Ensure that no close failure goes unreported.
40072         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
40073         return early when it seems there's nothing to flush.
40074         Don't include __fpending.h.
40075
40076 2004-11-10  Jim Meyering  <jim@meyering.net>
40077
40078         * modules/closeout (Depends-on): Remove fpending.
40079
40080 2004-11-10  Jim Meyering  <jim@meyering.net>
40081
40082         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
40083
40084 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40085
40086         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
40087         gl_FUNC_STRFTIME.
40088         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
40089         and AC_REQUIRE when possible, to avoid duplicate checks.
40090         Check for <wchar.h>.
40091
40092 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
40093
40094         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
40095
40096 2004-11-09  Bruno Haible  <bruno@clisp.org>
40097
40098         * m4/sockpfaf.m4: New file.
40099
40100 2004-11-05  Bruno Haible  <bruno@clisp.org>
40101
40102         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
40103         Reported by Mark D. Baushke <mdb@cvshome.org>.
40104
40105 2004-11-04  Bruno Haible  <bruno@clisp.org>
40106
40107         2004-09-11  Bruno Haible  <bruno@clisp.org>
40108                 * allocsa.valgrind: New file.
40109         2004-02-06  Bruno Haible  <bruno@clisp.org>
40110                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
40111                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
40112                 Reported by Christopher Seip <chris.seip@hp.com>.
40113
40114 2004-11-04  Bruno Haible  <bruno@clisp.org>
40115
40116         * modules/allocsa (Files): Add lib/allocsa.valgrind.
40117         (Makefile.am): Distribute it.
40118
40119 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
40120
40121         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
40122         with errno == ERANGE if the buffer is too small.
40123         Problem reported by Mark D. Baushke.
40124
40125 2004-11-03  Albert Chin  <china@thewrittenword.com>
40126             Paul Eggert  <eggert@cs.ucla.edu>
40127
40128         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
40129         equivalent, substitute $ac_type for equivalent type rather than
40130         blindly using uint32_t *always* which won't work if uint32_t is not
40131         available.  Define _UINT32_T to work around typedef of uint32_t if
40132         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
40133         2.5.1.
40134
40135 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
40136
40137         * m4/jm-macros.m4: Sync from coreutils.
40138         (gl_MACROS): Check for mbrlen, for pathchk.
40139         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
40140
40141 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
40142
40143         * lib/xreadlink.c (MAXSIZE): New macro.
40144         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
40145         size does not exceed MAXSIZE.  Avoid cast.
40146         As suggested by Mark D. Baushke in
40147         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
40148         if readlink fails with buffer size just under MAXSIZE, try again
40149         with MAXSIZE.
40150
40151 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
40152
40153         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
40154
40155 2004-11-02  Derek R. Price  <derek@ximbiot.com>
40156         and  Paul Eggert  <eggert@cs.ucla.edu>
40157
40158         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
40159         (get_date): Overparenthesize to avoid GCC warning.
40160
40161 2004-11-02  Bruno Haible  <bruno@clisp.org>
40162
40163         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
40164         returns void.
40165
40166 2004-11-02  Bruno Haible  <bruno@clisp.org>
40167
40168         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
40169         function returns void.
40170
40171 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
40172
40173         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
40174         fflush_unlocked, flockfile, funlockfile, funlockfile,
40175         fputs_unlocked, putc_unlocked.
40176
40177 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
40178
40179         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
40180         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
40181         already declared.
40182
40183 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
40184
40185         * modules/getdate (Files): Add doc/getdate.texi.
40186         (Depends-on): Add setenv, xalloc.
40187
40188 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
40189
40190         * lib/getdate.y: Add support for TZ="foo" within a date string.
40191         Fix some bugs near time_t boundaries.  Reject dates with
40192         out-of-range components, e.g., "Sept 31".
40193         Include <stdlib.h>, "setenv.h", "xalloc.h".
40194         (ISDIGIT_LOCALE): Remove; unused.
40195         Note that the TZ and time functions used here are not reentrant.
40196         (mktime_ok, get_tz): New functions.
40197         (TZBUFSIZE): New constant.
40198         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
40199         This requires that we sometimes generate our own TZ="XXX..." setting.
40200
40201 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
40202
40203         * doc/getdate.texi: New file, from coreutils with modifications for
40204         the new TZ parsing.
40205
40206 2004-10-27  Derek R. Price  <derek@ximbiot.com>
40207
40208         * lib/mktime.c (not_equal_tm): Remove redundant check.
40209
40210 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
40211
40212         * modules/regex (lib_SOURCES): Add regex.c.
40213         Reported by James Youngman in
40214         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
40215
40216 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
40217
40218         * lib/getdate.y: Use Bison 1.875 features, and some minor
40219         code cleanups.  This change does not affect semantics.
40220         Don't include <stdlib.h>; no longer needed.
40221         Don't include unlocked-io.h; only the "#if TEST" code uses
40222         stdio, and performance isn't crucial there.
40223         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
40224         Bison 1.875 features as described below.
40225         All uses of "PC." replaced by "pc->".
40226         (YYSTYPE): Add a forward declaration.
40227         (yylex, yyerror): Use full prototypes in forward decls.
40228         Use "%pure-parser" rather than obsolescent "%pure_parser".
40229         Use %parse-param and %lex-param instead of obsolescent
40230         YYPARSE_PARAM and YYLEX_PARAM.
40231         (meridian_table, month_and_day_table, time_units_table,
40232         relative_time_table, time_zone_table, military_table,
40233         lookup_zone, lookup_word, get_date):
40234         Use NULL instead of 0 where appropriate.
40235         (to_hour): Avoid abort (), to avoid a dependency on
40236         stdlib.h.
40237         (yyerror, yylex): Now accepts parser_control * arg.
40238         (main) [TEST]: Use '\0' rather than 0 for char.
40239
40240 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
40241
40242         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
40243
40244 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
40245
40246         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
40247         It's now the caller's responsibility to handle the case where
40248         !HAVE_GETPAGESIZE && !defined getpagesize.
40249
40250         * lib/mktime.c (leapyear): Arg is long int, not int.
40251
40252 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
40253
40254         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
40255
40256 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
40257
40258         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
40259         missing.  Problem reported by James Youngman.
40260
40261 2004-10-16  Simon Josefsson  <jas@extundo.com>
40262
40263         * gnulib-tool: Fix comments.  Fix parse problem.
40264         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
40265
40266 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
40267
40268         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
40269         implementation of getopt_long.  Problem reported by Alexander Taler in:
40270         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
40271
40272 2004-10-15  Bruno Haible  <bruno@clisp.org>
40273
40274         * gnulib-tool: Untabify. Initialize supplied_libname.
40275         (func_usage): More homogenous output.
40276         (func_modules_transitive_closure, func_modules_to_filelist,
40277         func_emit_lib_Makefile_am): New functions.
40278         (func_import): New function, extracted from big case statement. Use
40279         func_get_license, func_modules_transitive_closure,
40280         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
40281         opt_lgpl. Don't use test -a, as it's not portable.
40282         (func_create_testdir): Use func_modules_transitive_closure,
40283         func_modules_to_filelist, func_emit_lib_Makefile_am.
40284
40285 2004-10-15  Bruno Haible  <bruno@clisp.org>
40286
40287         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
40288
40289 2004-10-15  Bruno Haible  <bruno@clisp.org>
40290
40291         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
40292         the portions belonging to each module.
40293         Suggested by Derek Robert Price <derek@ximbiot.com>.
40294
40295 2004-10-12  Simon Josefsson  <jas@extundo.com>
40296
40297         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
40298         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
40299         to real functions.
40300
40301 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40302
40303         * modules/vsnprintf: New file.
40304
40305 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40306
40307         * m4/vsnprintf.m4: New file.
40308
40309 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40310
40311         * lib/vsnprintf.h: New file.
40312         * lib/vsnprintf.c: New file.
40313
40314 2004-10-11  Bruno Haible  <bruno@clisp.org>
40315
40316         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
40317         vsnprintf.
40318
40319 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
40320
40321         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
40322
40323 2004-10-07  Bruno Haible  <bruno@clisp.org>
40324
40325         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
40326         fits into the provided buffer.
40327
40328 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
40329
40330         * lib/diacrit.c, diacrit.h: Add GPL notice.
40331
40332         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
40333         notice.
40334         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
40335         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
40336         This avoids a potential constant-folding bug.
40337
40338 2004-10-05  Bruno Haible  <bruno@clisp.org>
40339
40340         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
40341         for the declaration of strsep.
40342
40343 2004-10-05  Bruno Haible  <bruno@clisp.org>
40344
40345         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
40346
40347 2004-10-04  Simon Josefsson  <jas@extundo.com>
40348
40349         * modules/memmem: New file.
40350         * tests/test-memmem.c: New file.
40351         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
40352
40353 2004-10-04  Simon Josefsson  <jas@extundo.com>
40354
40355         * m4/memmem.m4: New file.
40356
40357 2004-10-04  Simon Josefsson  <jas@extundo.com>
40358
40359         * lib/memmem.h: New file.
40360         * lib/memmem.c: New file, taken from glibc.
40361
40362 2004-10-04  Simon Josefsson  <jas@extundo.com>
40363
40364         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
40365         '#ifdef USE_UNLOCKED_IO'.
40366
40367 2004-10-04  Simon Josefsson  <jas@extundo.com>
40368
40369         * config/srclist.txt: Add memmem from glibc.
40370
40371 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
40372
40373         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
40374
40375         * modules/argmatch, modules/argp, modules/closeout, modules/error,
40376         modules/exclude, modules/getdate, modules/getline,
40377         modules/getndelim2, modules/getpass, modules/getpass-gnu,
40378         modules/getusershell, modules/linebuffer, modules/md5,
40379         modules/mountlist, modules/posixtm, modules/readtokens,
40380         modules/readutmp, modules/regex, modules/sha1,
40381         modules/version-etc, modules/yesno:
40382         Remove dependency on unlocked-io.
40383
40384 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
40385
40386         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
40387
40388         * m4/unlocked-io.m4: Add copyright notice.
40389         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
40390
40391 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
40392
40393         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
40394         * lib/xmalloc.c (xmemdup): Likewise.
40395         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
40396         XFREE): Remove these long-obsolescent macros.
40397         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
40398         * lib/xstrdup.c: Remove.
40399
40400         * lib/regex.c (re_comp): Cast gettext return value to char *,
40401         Problem reported by Martin Neitzel via Mark D. Baushke.
40402
40403 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
40404
40405         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
40406         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
40407         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
40408         regex.c, sha1.c, version-etc.c, yesno.c:
40409         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
40410         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
40411         the includer's responsibility.
40412
40413         Sync from coreutils.
40414
40415         * lib/modechange.c (mode_compile): Don't decrement a pointer that
40416         points to the start of a string, as the C Standard says the
40417         resulting behavior is undefined.
40418
40419         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
40420         simple -> simple_backups, numbered_existing ->
40421         numbered_existing_backups, numbered -> numbered_backups
40422         to avoid shadowing problems.  All uses changed.
40423         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
40424         * lib/backupfile.c (check_extension, numbered_backup):
40425         Rename locals to avoid shadowing 'basename'.
40426         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
40427         once.
40428
40429         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
40430         * lib/.cvsignore: Add getopt.h.
40431
40432 2004-10-04  Bruno Haible  <bruno@clisp.org>
40433
40434         * modules/README: New file.
40435         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
40436         not a module.
40437
40438 2004-10-02  Jim Meyering  <jim@meyering.net>
40439
40440         * lib/dirfd.h, getpagesize.h: Add copyright notice.
40441
40442 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40443
40444         * modules/strsep: New file.
40445
40446 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40447
40448         * m4/strsep.m4: New file.
40449
40450 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40451
40452         * lib/strsep.h: New file.
40453         * lib/strsep.c: New file.
40454
40455 2004-10-01  Simon Josefsson  <jas@extundo.com>
40456
40457         * lib/snprintf.c (snprintf): Handle size==0.
40458
40459 2004-10-01  Simon Josefsson  <jas@extundo.com>
40460             Bruno Haible  <bruno@clisp.org>
40461
40462         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
40463         (snprintf): Declare 'args'.
40464
40465 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
40466
40467         * lib/snprintf.c: Remove comments as to why each header is needed.
40468
40469 2004-10-01  Bruno Haible  <bruno@clisp.org>
40470
40471         * MODULES.html.sh: Add strsep.
40472
40473 2004-09-30  Simon Josefsson  <jas@extundo.com>
40474
40475         * modules/snprintf: New file.
40476
40477 2004-09-30  Simon Josefsson  <jas@extundo.com>
40478
40479         * m4/snprintf.m4: New file.
40480
40481 2004-09-30  Simon Josefsson  <jas@extundo.com>
40482
40483         * lib/snprintf.h, lib/snprintf.c: New files.
40484
40485 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40486
40487         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
40488         (hol_entry_help): Never translate an empty string.
40489         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
40490         * lib/argp.h (OPTION_NO_TRANS): New option.
40491
40492 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
40493
40494         * modules/argp (Maintainer): Replace Simon Josefsson
40495         by Sergey Poznyakoff.
40496
40497 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
40498
40499         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
40500         changes merged back into glibc.
40501
40502 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
40503
40504         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
40505
40506 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
40507
40508         * lib/xvasprintf.c: Include xalloc.h.
40509         (xvasprintf): Use xalloc_die, not xmalloc_die.
40510
40511 2004-09-29  Bruno Haible  <bruno@clisp.org>
40512
40513         * modules/alloca-opt: New file, derived from modules/alloca.
40514         * modules/allocsa: Depend on alloca-opt instead of alloca.
40515         * modules/setenv: Likewise.
40516         * modules/vasnprintf: Likewise.
40517         * MODULES.html.sh: Add alloca-opt.
40518
40519 2004-09-28  Simon Josefsson  <jas@extundo.com>
40520
40521         * gnulib-tool: New parameter --lgpl, to asseert that modules are
40522         LGPL, and to replace license template from GPL to LGPL.
40523
40524 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
40525
40526         * modules/dummy: Change license to LGPL.
40527
40528 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
40529
40530         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
40531
40532 2004-09-24  Simon Josefsson  <jas@extundo.com>
40533
40534         * modules/minmax (License): Change from GPL to LGPL.
40535
40536 2004-09-23  Simon Josefsson  <jas@extundo.com>
40537
40538         * gnulib-tool (--import): Typo.
40539
40540 2004-09-23  Simon Josefsson  <jas@extundo.com>
40541
40542         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
40543
40544 2004-09-22  Bruno Haible  <bruno@clisp.org>
40545
40546         * modules/*: Add 'License' field.
40547         * gnulib-tool: Accept --extract-license option.
40548         (func_get_license): New function.
40549
40550 2004-09-21  Bruno Haible  <bruno@clisp.org>
40551
40552         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
40553         Reported by Simon Josefsson.
40554
40555 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
40556
40557         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
40558         gl_AC_TYPE_LONG_LONG.
40559
40560 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
40561
40562         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
40563
40564 2004-09-18  Simon Josefsson  <jas@extundo.com>
40565         and  Paul Eggert  <eggert@cs.ucla.edu>
40566
40567         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
40568         calls with autoreconf.  Define GL_LIB.
40569
40570 2004-09-14  Karl Berry  <karl@gnu.org>
40571
40572         * config/srclist.txt: unsync setenv.c, sigh.
40573
40574 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
40575
40576         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
40577         Problem reported by Bruno Haible in:
40578         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
40579
40580 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
40581
40582         * config/srclist.txt: Comment out argp-pvh.c.
40583
40584 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
40585
40586         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
40587         in case some system header has #define'd it.  Problem reported by
40588         Soeren D. Schulze in
40589         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
40590
40591 2004-09-09  Karl Berry  <karl@gnu.org>
40592
40593         * regex.[ch]: delete from the root.  These were supposed to be
40594                 synced with emacs cvs, but this has not happened for about
40595                 a year, and anyway nothing else uses emacs regex.[ch].
40596                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
40597                 lib/regex[.ch] is untouched.
40598
40599 2004-09-09  Bruno Haible  <bruno@clisp.org>
40600
40601         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
40602
40603 2004-09-09  Bruno Haible  <bruno@clisp.org>
40604
40605         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
40606         modifications.
40607         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
40608
40609 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
40610
40611         * modules/xvasprintf: New file.
40612         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
40613
40614 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
40615
40616         * lib/xvasprintf.h: New file.
40617         * lib/xvasprintf.c: New file.
40618         * lib/xasprintf.c: New file.
40619
40620 2004-09-08  Bruno Haible  <bruno@clisp.org>
40621
40622         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
40623
40624 2004-09-08  Bruno Haible  <bruno@clisp.org>
40625
40626         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
40627         length is > INT_MAX.
40628         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
40629         more.
40630
40631 2004-09-08  Bruno Haible  <bruno@clisp.org>
40632
40633         * lib/stdint_.h: New file, taken from GNU clisp.
40634
40635 2004-09-08  Bruno Haible  <bruno@clisp.org>
40636             Oskar Liljeblad  <oskar@osk.mine.nu>
40637
40638         * modules/stdint: New file.
40639         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
40640
40641 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40642
40643         Import from coreutils.
40644         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
40645         strings on unbounded length.  alloca's performance benefits aren't
40646         that important here.
40647         (V_STRDUP): Remove.
40648         (parse_with_separator): New function, with most of the internals
40649         of the old parse_user_spec.  Allow user to omit both user and group,
40650         for compatibility with FreeBSD.
40651         Clone only the user name, not the entire spec.
40652         Do not set *uid, *gid unless entirely successful.
40653         Avoid memory leak in some failing cases.
40654         Fix regression for USER.GROUP reported by Dmitry V. Levin in
40655         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
40656         (parse_user_spec): Rewrite to use parse_with_separator.
40657
40658 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40659
40660         * modules/userspec: Don't depend on alloca.
40661
40662 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
40663
40664         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
40665
40666 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
40667
40668         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
40669         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
40670         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
40671
40672 2004-08-16  Simon Josefsson  <jas@extundo.com>
40673
40674         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
40675         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
40676         Add --dry-run for --import.
40677         Let user provided command line parameters override configure.ac
40678         settings.
40679
40680 2004-08-12  Simon Josefsson  <jas@extundo.com>
40681
40682         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
40683         as discussed with Paul Eggert in threads rooted at
40684         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
40685         and
40686         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
40687         Before, the test was empty, and relied on ELIDE_CODE in source
40688         code.)
40689         (gl_PREREQ_GETOPT): New macro.
40690         (gl_GETOPT): Use them.
40691
40692 2004-08-12  Simon Josefsson  <jas@extundo.com>
40693
40694         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
40695         * lib/getopt_.h: Renamed from getopt.h.
40696
40697 2004-08-12  Simon Josefsson  <jas@extundo.com>
40698
40699         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
40700         Change default library name from libfoo to libgnu.
40701         Now, if you have a configure.ac that says:
40702                 gl_SOURCE_BASE(gl)
40703                 gl_M4_BASE(gl/m4)
40704                 gl_MODULES(error getopt etcetera)
40705                 gl_INIT
40706         you can import all you need by running:
40707                 ../gnulib/gnulib-tool --import
40708
40709         * modules/getopt (Files): Rename getopt.h to getopt_.h.
40710         (Makefile.am): Rewrite, use logic from argz.
40711         (Include): Use <getopt.h> instead of "getopt.h".
40712
40713 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
40714
40715         * modules/argp (Files): Add m4/unlocked-io.m4.
40716         (Depends-on): Add extensions.
40717
40718 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
40719
40720         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
40721         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
40722         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
40723         Check for program_invocation_name, program_invocation_short_name,
40724         flockfile, funlockfile, features.h, _getopt_long_only_r.
40725
40726 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
40727
40728         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
40729         its complicated substitute.
40730         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
40731         and program_invocation_name.
40732         (__argp_basename) [!_LIBC]: Remove; the only use was
40733         replaced by its body.
40734         (__argp_short_program_name): Change condition from
40735         !defined __argp_short_program_name to
40736         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
40737         to match argp-namefrob.h.
40738         (__argp_failure): Don't assume strerror_r returns char *.
40739         * lib/argp-parse.c (N_): Define unconditionally.
40740         (argp_default_options): Fill out initializers with 0 to avoid
40741         gcc warnings.
40742
40743 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
40744
40745         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
40746         getopt1.c.
40747
40748 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
40749
40750         Merge from coreutils.
40751
40752         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
40753
40754         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
40755         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
40756
40757 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
40758
40759         Merge from coreutils.
40760
40761         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
40762         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
40763         for Reliant Unix 5.43.
40764
40765         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
40766         (union fooround): Use uintmax_t, not long int.
40767         The rest is a merge from libc:
40768         [defined _LIBC]: Include <shlib-compat.h>.
40769         (_obstack) [defined _LIBC]: Remove after 2.3.4.
40770
40771         * lib/settime.c (settime): Recode to avoid warning with
40772         Sun Forte C 6U2.
40773
40774         * lib/strverscmp.c: Convert to UTF-8.
40775
40776 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
40777
40778         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
40779         m4/uintmax_t.m4.
40780
40781 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40782
40783         * modules/xalloc-die: New file.
40784         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
40785
40786         * modules/md5 (Files): Add m4/uint32_t.m4.
40787         * modules/sha1: Renamed from modules/sha.
40788         (Files):
40789         Rename lib/sha.h to lib/sha1.h.
40790         Rename lib/sha.c to lib/sha1.c.
40791         Rename m4/sha.m4 to m4/sha1.m4.
40792         (lib_SOURCES): Likewise.
40793         (configure.ac): Rename gl_SHA to gl_SHA1.
40794         (Include): sha.h -> sha1.h.
40795
40796 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40797
40798         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
40799         * m4/sha1.m4: Renamed from sha.m4.
40800         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
40801
40802 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
40803
40804         * lib/obstack.h (obstack_empty_p):
40805         Don't assume that chunk->contents is suitably aligned.
40806         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
40807         Likewise. Problem reported by Benno in
40808         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
40809
40810         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
40811         readable.  This could be improved further but it'd take some work.
40812
40813 2004-08-08  Simon Josefsson  <jas@extundo.com>
40814
40815         * modules/xgethostname (Depends-on): Remove exit and error (not
40816         used).
40817
40818         * modules/getpass-gnu: Add getpass.h.
40819         (Depends-on): Add stdbool.
40820         * modules/getpass: Add getpass.h.
40821
40822 2004-08-08  Simon Josefsson  <jas@extundo.com>
40823
40824         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
40825         Check getpass declaration.
40826
40827 2004-08-08  Simon Josefsson  <jas@extundo.com>
40828
40829         * lib/xgethostname.c: Don't include error.h (not used).
40830
40831         * lib/getpass.h: Add.
40832         * lib/getpass.c: Include getpass.h first.
40833
40834 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
40835
40836         * lib/xalloc-die.c: New file.
40837         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
40838         All uses removed.
40839         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
40840         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
40841         xalloc-die.c.
40842         (_, N_, xalloc_die): Move to xalloc-die.c.
40843         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
40844         so that we needn't mess with xalloc_msg_memory_exhausted.
40845
40846         * lib/sha1.h: Renamed from sha.h.
40847         (SHA1_H): Renamed from _SHA_H.
40848         (sha1_ctx): Renamed from sha_ctx.
40849         (sha1_init_ctx): Renamed from sha_init_ctx.
40850         (sha1_process_block): Renamed from sha_process_block.
40851         (sha1_process_bytes): Renamed from sha_process_bytes.
40852         (sha1_finish_ctx): Renamed from sha_finish_ctx.
40853         (sha1_read_ctx): Renamed from sha_read_ctx.
40854         (sha1_stream): Renamed from sha_stream.
40855         (sha1_buffer): Renamed from sha_buffer.
40856         * lib/sha1.c: Likewise; renamed from sha.c.
40857         Do not include <sys/types.h>.
40858         Include <stddef.h> rather than <stdlib.h>.
40859
40860 2004-08-08  Bruno Haible  <bruno@clisp.org>
40861
40862         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
40863         FILESYSTEM_PREFIX_LEN.
40864         * lib/progreloc.c: Likewise.
40865         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
40866
40867 2004-08-06  Simon Josefsson  <jas@extundo.com>
40868
40869         * modules/progname (Depends-on): Don't depend on stdbool.
40870
40871 2004-08-06  Simon Josefsson  <jas@extundo.com>
40872
40873         * modules/getsubopt: New file.
40874         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
40875         getsubopt.
40876
40877 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
40878
40879         More merge from coreutils.
40880
40881         * m4/utimens.m4, m4/utimecmp.m4: New files.
40882         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
40883         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
40884         prereq.m4, sha.m4: Import changes from coreutils.
40885
40886 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
40887
40888         More merge from coreutils.
40889         * modules/raise, modules/readtokens0, modules/utimens:
40890         * modules/utimecmp, module/xnanosleep: New files.
40891         * modules/strftime: Add lib/strftime.h.
40892         Change include from <time.h> to "strftime.h".
40893         * modules/yesno: Add lib/yesno.h.
40894         * modules/backupfile: Remove lib/addext.c.
40895         * modules/euidaccess: Add stat-macros.h.
40896         * modules/canonicalize, modules/euidaccess,
40897         modules/filemode, modules/lchown, modules/makepath,
40898         modules/rmdir, modules/stat: Likewise.
40899
40900 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
40901
40902         Merge from tar.
40903         * lib/argp-help.c (make_hol, hol_append): Don't assume that
40904         SIZE_MAX is a valid preprocessor constant.
40905         (__argp_basename): Change from "#ifndef _LIBC"
40906         to "#ifndef __argp_short_program_name", so that
40907         we don't compile these functions for tar.
40908
40909         More merges from coreutils.
40910         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
40911         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
40912         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
40913         * lib/addext.c: Remove; no longer needed.
40914         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
40915         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
40916         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
40917         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
40918         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
40919         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
40920         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
40921         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
40922         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
40923         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
40924         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
40925         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
40926         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
40927         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
40928         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
40929         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
40930         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
40931         Import changes from coreutils.
40932
40933 2004-08-05  Simon Josefsson  <jas@extundo.com>
40934
40935         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
40936
40937 2004-08-05  Simon Josefsson  <jas@extundo.com>
40938
40939         * m4/getsubopt.m4: New file.
40940
40941 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
40942
40943         Merge from coreutils.
40944
40945         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
40946         * m4/getcwd-path-max.m4: New files.
40947
40948         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
40949         FILESYSTEM_PREFIX_LEN ->
40950         FILE_SYSTEM_PREFIX_LEN.
40951         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
40952         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
40953         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
40954         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
40955
40956         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
40957         prerequisite modules now handle the DOS stuff.
40958         Don't check for unistd.h.
40959
40960 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
40961
40962         Merge from coreutils.
40963
40964         * lib/.gdb-history: Remove; this doesn't belong here.
40965
40966         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
40967         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
40968         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
40969         * lib/getcwd.c: New files.
40970
40971         * lib/dirname.h: Include <stdbool.h>.
40972         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
40973         for consistency with POSIX terminology.  All uses changed.
40974         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
40975         (strip_trailing_slashes): Use bool for booleans.
40976         * lib/stripslash.c (strip_trailing_slashes): Likewise.
40977
40978         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
40979         sometimes returns a positive errno value even when it succeeds.
40980         (print_errno_message) [!LIBC]: Fall back on strerror if
40981         __strerror_r fails.
40982
40983         * lib/path-concat.c (mempcpy): Don't define if a system header defines
40984         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
40985         (longest_relative_suffix): New function.
40986         (path_concat): Use it.  Assume first argument is not NULL.
40987         Port to DOS.  Omit redundant separators.
40988         Report an error instead of returning NULL.
40989         Use mempcpy instead of memcpy.
40990         (xpath_concat): Remove: not declared or used.
40991
40992         * lib/same.h: Include <stdbool.h>
40993         (same_name): Return bool, not int.
40994         * lib/same.c (same_name): Likewise.
40995         (errno): Don't declare; we assume C89 or better now.
40996
40997         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
40998         if not already defined.
40999
41000         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
41001         * lib/dup-safer.c (errno): Likewise.
41002
41003 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
41004
41005         Merge from coreutils.
41006         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
41007         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
41008         * modules/path-concat: Don't depend on strdup.
41009
41010 2004-08-03  Simon Josefsson  <jas@extundo.com>
41011
41012         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
41013         * lib/progname.h: Don't include stdbool.h.
41014
41015 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
41016
41017         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
41018         * MODULES.html.sh (func_all_modules): Remove fatal.
41019
41020 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
41021
41022         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
41023
41024 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
41025
41026         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
41027         working.
41028
41029 2004-08-02  Simon Josefsson  <jas@extundo.com>
41030
41031         * lib/getsubopt.h: New file, with comments from Bruno Haible.
41032         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
41033         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
41034
41035 2004-08-01  Simon Josefsson  <jas@extundo.com>
41036
41037         * lib/xgetdomainname.c: Include stdlib.h, for free().
41038
41039 2004-07-19  Bruno Haible  <bruno@clisp.org>
41040
41041         * MODULES.html.sh (func_all_modules): Add dummy.
41042
41043 2004-07-16  Simon Josefsson  <jas@extundo.com>
41044
41045         * modules/dummy: New file.
41046
41047 2004-07-16  Simon Josefsson  <jas@extundo.com>
41048
41049         * lib/dummy.c: New file.
41050
41051 2004-07-16  Bruno Haible  <bruno@clisp.org>
41052
41053         * lib/backupfile.h: Add extern "C" for C++.
41054         * lib/closeout.h: Likewise.
41055         * lib/copy-file.h: Likewise.
41056         * lib/findprog.h: Likewise.
41057         * lib/full-write.h: Likewise.
41058         * lib/pathname.h: Likewise.
41059         * lib/progname.h: Likewise.
41060         * lib/stpcpy.h: Likewise.
41061         * lib/stpncpy.h: Likewise.
41062         * lib/strcase.h: Likewise.
41063         * lib/strstr.h: Likewise.
41064         * lib/xalloc.h: Likewise.
41065
41066         * lib/mbswidth.h: Add extern "C" for C++.
41067         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
41068
41069 2004-07-13  Robert Millan  <robertmh@gnu.org>
41070
41071         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
41072
41073 2004-07-09  Simon Josefsson  <jas@extundo.com>
41074
41075         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
41076         failed without this.)
41077
41078 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
41079
41080         * modules/chown (Files): Add lib/fchown-stub.c, since
41081         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
41082
41083 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
41084
41085         * lib/fchown-stub.c: New file.
41086
41087 2004-06-24  Jim Meyering  <jim@meyering.net>
41088
41089         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
41090
41091 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
41092
41093         * modules/argz: Omit "#include".
41094
41095         * MODULES.html.sh (func_all_modules): Add calloc, to match
41096         2004-06-01 addition of calloc module.
41097
41098 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
41099
41100         * m4/argz.m4: New file, which is autoupdated from libtool.
41101
41102 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
41103
41104         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
41105         libtool.
41106
41107 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
41108
41109         * config/srclist-update: Don't insist on "USA." before the
41110         close-comment, as libtool omits the period and puts the */ on a
41111         separate line.
41112         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
41113         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
41114
41115 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
41116
41117         * modules/argz: New file.
41118         * MODULES.html.sh (func_all_modules): Add argz.
41119
41120 2004-06-12  Jim Meyering  <jim@meyering.net>
41121         and  Paul Eggert  <eggert@cs.ucla.edu>
41122
41123         * modules/hash (Files): Add lib/xalloc.h.
41124         * modules/pipe (Depends-on): Add wait-process.
41125         * modules/stat (Depends-on): Add xalloc.
41126         * modules/userspec (Files): Add lib/userspec.h.
41127         * modules/xstrto
41128
41129         Upgrade from gettext-0.13.
41130         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
41131         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
41132         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
41133
41134 2004-06-10  Jim Meyering  <jim@meyering.net>
41135
41136         * lib/calloc.c: New file.
41137
41138 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
41139
41140         * lib/getdate.y (yylex): Allow space between sign and number.
41141         Problem reported by Dan Jacobson.
41142
41143 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
41144
41145         Merge from coreutils CVS.
41146
41147         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
41148         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
41149         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
41150         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
41151         xstrtol.m4: Fix copyright date and/or serial number.
41152
41153         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
41154         See if we need an fchown replacement.
41155         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
41156         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
41157         and use the replacement function if we detect either defect.
41158
41159         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
41160         gl_UTIMECMP.
41161
41162 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
41163         and  Jim Meyering  <jim@meyering.net>
41164
41165         Merge from coreutils CVS.
41166
41167         * lib/stat-macros.h: New file, with contents from file-type.h
41168         and coreutils' system.h.
41169         * lib/file-type.c: Include "stat-macros.h".
41170         * lib/file-type.h (file_type): Move all macro definitions to new file,
41171         stat-macros.h.
41172
41173         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
41174         Wrap old code with this conditional.
41175         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
41176         function that does not dereference symlinks.
41177         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
41178
41179         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
41180         dependency problems.
41181         (xreadlink): Accept new arg SIZE, for efficiency.
41182         All decls and uses changed.
41183         * lib/xreadlink.h: Include <stddef.h>, for size_t.
41184
41185         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
41186         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
41187
41188         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
41189         sysexits.h.
41190
41191 2004-06-01  Jim Meyering  <jim@meyering.net>
41192
41193         * m4/calloc.m4: New file.
41194
41195 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
41196
41197         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
41198         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
41199         Also, fix a typo in a diagnostic.
41200
41201 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
41202
41203         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
41204         or AC_FUNC_REALLOC.
41205
41206 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
41207
41208         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
41209         macros to be defined.
41210         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
41211         the allocator returns NULL because the requested size is zero.
41212
41213 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
41214
41215         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
41216         var.  Add comment explaining why libc still defines it.  This
41217         merges the following patch from glibc:
41218         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
41219
41220 2004-05-20  Andreas Schwab  <schwab@suse.de>
41221
41222         * m4/free.m4: Replace free if it not known to work, not the other
41223         way round.
41224
41225 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
41226
41227         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
41228         present in glibc since revision 1.1 of this file.
41229         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
41230         obstack_alignment_mask, obstack_alloc, obstack_base,
41231         obstack_blank, obstack_blank_fast, obstack_chunk_size,
41232         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
41233         obstack_grow0, obstack_init, obstack_int_grow,
41234         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
41235         obstack_next_free, obstack_object_size, obstack_ptr_grow,
41236         obstack_ptr_grow_fast, obstack_room): Remove declarations of
41237         nonexistent functions.
41238
41239 2004-05-18  Karl Berry  <karl@gnu.org>
41240
41241         * config/srclist.txt: break link for vasnprintf.c.
41242
41243 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
41244
41245         Port obstack to the AS/400, where pointers are 16 bytes wide and
41246         you cannot cast an integer to a valid pointer.  This patch is
41247         currently waiting to be integrated into glibc; see
41248         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
41249
41250         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
41251         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
41252         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
41253         (struct obstack): temp member is now a union of a pointer and
41254         an integer, instead of an integer.  All integer uses changed.
41255         This does not affect the physical layout of struct obstack,
41256         except on hosts (like the AS/400) where the size or alignment of
41257         void * is greater than that of ptrdiff_t.
41258         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
41259         __STDC__)]: Store temporary in pointer member of union, not
41260         integer member.
41261         * lib/obstack.c: Include <stddef.h>, for offsetof.
41262         (struct fooalign): Remove; it doesn't need a name.
41263         (union fooround): Change double to long double, and add void *.
41264         (DEFAULT_ALIGNMENT): Use offsetof to compute.
41265         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
41266         not a macro.  Hence the values are always int; so remove all
41267         casts-to-int in uses.
41268
41269 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
41270
41271         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
41272         we can get this patch merged into glibc.
41273
41274 2004-05-17  Derek R. Price  <derek@ximbiot.com>
41275             Paul Eggert  <eggert@cs.ucla.edu>
41276
41277         * m4/argp: Depend on alloca.
41278
41279 2004-05-17  Derek R. Price  <derek@ximbiot.com>
41280             Paul Eggert  <eggert@cs.ucla.edu>
41281
41282         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
41283         freecoding.
41284
41285 2004-05-17  Bruno Haible  <bruno@clisp.org>
41286
41287         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
41288         precision that consists of a '.' followed by an empty digit string.
41289         Patch by Tor Lillqvist <tml@iki.fi>.
41290
41291 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
41292
41293         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
41294         for backward compatibility with older code.  We need our own
41295         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
41296         it under some other name, and our alloca.h will define it.
41297
41298 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
41299             Derek Price  <derek@ximbiot.com>
41300
41301         * lib/alloca.c: Include <alloca.h>, to get our interface.
41302         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
41303         include <alloca.h> first.  Use C89 prototype for alloca; this
41304         requires including <stddef.h> for size_t.  Use extern "C" if C++.
41305         Use #elif for simplicity, since we can assume C89 now.
41306         Don't try to source the system alloca.h since it will not be found
41307         and to prevent recursively including its replacement.
41308         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
41309         * lib/regex.c: Likewise.
41310
41311 2004-05-16  Derek Price  <derek@ximbiot.com>
41312             Paul Eggert  <eggert@cs.ucla.edu>
41313
41314         getline cleanup.  This changes the getndelim2 API: both order of
41315         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
41316         no delimiter).
41317
41318         * lib/getline.c: Don't include stddef.h or stdio.h, since our
41319         interface does that.
41320         (getline): Always use getdelim, so that we don't have two
41321         copies of this code.
41322         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
41323         if available.
41324         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
41325         (GETNDELIM2_MAXIMUM): New macro.
41326         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
41327         instead of the old practice of delim2==0.  All callers changed.
41328         Return -1 on overflow, instead of returning junk.
41329         Do not set *linesize unless allocation succeeds.
41330         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
41331         that we include sys/types.h.
41332         * lib/getnline.h: Likewise.
41333         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
41334         (getndelim2): Reorder arguments.
41335         * lib/getnline.c (getnline, getndelim):
41336         Don't discard the NMAX argument.
41337         (getnline): Invoke getndelim, to avoid code duplication.
41338         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
41339         of (size_t) -1 by callers of the getnline family.
41340
41341 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
41342
41343         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
41344         Check for gettimeofday.
41345         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
41346         Check for settimeofday, stime.
41347
41348 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
41349
41350         * lib/nanosleep.c (suspended): Change its type from int to
41351         sig_atomic_t volatile.
41352         (first_call): Make it private to rpl_nanosleep, and have it
41353         be zero initially as that's a bit faster.
41354         (my_usleep): Round up fractional times instead of truncating them,
41355         as this is the usual meaning for 'sleep'.
41356
41357         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
41358         doesn't work.
41359         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
41360         (ENOSYS): Define if not defined.
41361         (settime): Fall back on stime if it exists and settimeofday fails.
41362         But don't bother with fallbacks if a method fails with errno == EPERM.
41363
41364 2004-05-11  Jim Meyering  <jim@meyering.net>
41365
41366         Prior to this change, the save_cwd caller required read access to the
41367         current directory on most systems (ones with the fchdir function).
41368
41369         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
41370         fails, try write-only, and finally, resort to using xgetcwd.
41371
41372 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
41373
41374         * lib/obstack.c, obstack.h: Import changes from libc.
41375
41376 2004-04-28  Bruno Haible  <bruno@clisp.org>
41377
41378         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
41379         also implicitly appends .exe to executables.
41380         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
41381         accepts Windows pathnames.
41382         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
41383         Treat Cygwin like Windows, since it now accepts Windows pathnames.
41384         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
41385         Treat Cygwin like Windows, since it now accepts Windows pathnames.
41386         Reported by Derek Robert Price <derek@ximbiot.com>.
41387
41388 2004-04-21  Karl Berry  <karl@gnu.org>
41389
41390         * config/srclist.txt (localcharset.c): break sync.
41391
41392 2004-04-20  Paul Eggert  <eggert@twinsun.com>
41393
41394         * m4/host-os.m4: Add a copyright notice.
41395
41396 2004-04-20  Jim Meyering  <jim@meyering.net>
41397
41398         Change UTILS_ to gl_ in AC_DEFINE'd names.
41399         Change utils_- and jm_-prefixed variables, too.
41400         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
41401         UTILS_FUNC_MKDIR_TRAILING_SLASH.
41402         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
41403
41404         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
41405         Don't emit trailing blanks.
41406         Also rename jm_-prefixed variables to have gl_ prefix.
41407
41408         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
41409         Also rename jm_-prefixed variables to have gl_ prefix.
41410
41411         * m4/jm-macros.m4: Reflect the renamings.
41412         * m4/prereq.m4: Likewise.
41413
41414 2004-04-20  Jim Meyering  <jim@meyering.net>
41415
41416         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
41417         memory.
41418
41419 2004-04-20  Jim Meyering  <jim@meyering.net>
41420             Bruno Haible  <bruno@clisp.org>
41421
41422         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
41423         memory when realloc fails.
41424
41425 2004-04-19  Jim Meyering  <jim@meyering.net>
41426
41427         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
41428         now that readutmp.c may call `free (0)'.
41429
41430 2004-04-19  Bruno Haible  <bruno@clisp.org>
41431
41432         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
41433         * m4/inttypes_h.m4: Likewise.
41434         * m4/stdint_h.m4: Likewise.
41435         * m4/intmax_t.m4: Likewise.
41436         * m4/uintmax_t.m4: Likewise.
41437
41438 2004-04-18  Jim Meyering  <jim@meyering.net>
41439
41440         * m4/prereq.m4: Don't forbid jm_ prefix.
41441
41442         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
41443         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
41444         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
41445         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
41446         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
41447         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
41448         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
41449         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
41450         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
41451         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
41452         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
41453         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
41454         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
41455         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
41456         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
41457         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
41458         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
41459         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
41460         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
41461
41462 2004-04-18  Jim Meyering  <jim@meyering.net>
41463
41464         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
41465         failure, don't leak memory and do call END_UTMP_ENT.
41466
41467 2004-04-16  Jim Meyering  <jim@meyering.net>
41468
41469         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
41470         coreutils' stat program.
41471         (gl_PREREQ): Don't require jm_PREREQ_STAT.
41472
41473 2004-04-11  Paul Eggert  <eggert@twinsun.com>
41474
41475         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
41476         C89.
41477         (CHAR_BIT): Remove, since we assume C89.
41478         Include <stdint.h> if available, as per current Autoconf CVS advice.
41479
41480 2004-03-31  Jim Meyering  <jim@meyering.net>
41481
41482         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
41483         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
41484         * m4/xalloc.m4: Likewise.
41485
41486 2004-03-30  Paul Eggert  <eggert@twinsun.com>
41487
41488         Merge from coreutils.
41489
41490         * m4/inttostr.m4: New file.
41491         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
41492         Require AM_STDBOOL_H and gl_TIMESPEC instead.
41493         Require gl_CLOCK_TIME.
41494         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
41495
41496 2004-03-30  Paul Eggert  <eggert@twinsun.com>
41497
41498         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
41499         not bool, to be more consistent with Unix conventions.
41500         Suggested by Bruno Haible.
41501
41502         Merge from coreutils.
41503
41504         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
41505         * lib/umaxtostr.c: New files.
41506
41507         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
41508         the usual <time.h> dance.
41509         (get_date): Change signature to support fractional time stamps.
41510         All callers changed.
41511         * lib/getdate.y: Include "getdate.h" first, as we can now
41512         assume C89 and don't need to worry about 'const'.
41513         Similarly, include "unlocked-io.h" near start, not in middle.
41514         Include <limits.h>.
41515         (textint.value): Use long int rather than int.
41516         (textint.digits): Use size_t rather than int.
41517         (BILLION, LOG10_BILLION): New constants.
41518         (parser_control): New member rel_ns.  Members day_ordinal,
41519         time_zone, month, day, hour, minutes, rel_year, rel_month,
41520         rel_day, rel_hour, rel_minutes, rel_seconds
41521         are now long int, not int.  Member seconds is now struct timespec,
41522         not int.  New member timespec_seen.  Members dates_seen, days_seen,
41523         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
41524         not int.
41525         (%union.intval): Now long int, not int.
41526         New member timespec.
41527         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
41528         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
41529         (spec): Now is a timespec or an item list.
41530         (timespec, items): New nonterminals.
41531         (time, rel, relunit, number, get_date):
41532         Add support for fractional seconds.
41533         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
41534         (gmtime, localtime, mktime): Remove decls; not needed with C89.
41535         (to_hour): First arg is now long int, not int.
41536         (to_year): Returns long int, not int.
41537         Don't treat year -70 like 70.
41538         (tm_diff): Returns long int, not int.
41539         (lookup_word): Use bool instead of int when appropriate.
41540         (yylex): Use size_t for count, not int.
41541         Detect overflow when parsing large integer constants.
41542         Add support for fractions.
41543         (get_date): Make pointers 'const' if possible.
41544         Use more-portable code to detect integer overflow.
41545         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
41546         Don't use ctime; it's not reliable if the year has >4 digits.
41547
41548         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
41549         This is for compatibility with BSD.
41550
41551         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
41552         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
41553         From coreutils' system.h.
41554
41555         * lib/userspec.c: Don't include "posixver.h".
41556         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
41557         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
41558         compatible extension.  Simplify code by removing a boolean int
41559         that was always nonzero if a string was nonnull.
41560
41561 2004-03-30  Jim Meyering  <jim@meyering.net>
41562
41563         Merge from coreutils.
41564
41565         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
41566         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
41567         on some systems one must include <grp.h> before it.
41568         Reported by Christian Krackowizer.
41569
41570 2004-03-30  Jim Meyering  <jim@meyering.net>
41571
41572         Merge from coreutils.
41573
41574         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
41575
41576         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
41577         an empty input stream.
41578
41579         * lib/readtokens.c: Include <stdbool.h>.
41580         (readtoken): Use `size_t' rather than int/long.
41581         All callers adjusted.
41582         Use `bool' rather than `int' where appropriate.
41583         Use memset rather than an explicit loop.
41584         Use x2nrealloc rather than xrealloc.
41585         Allow the use of `\0' as a delimiter.
41586         (readtokens): Likewise.
41587         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
41588
41589 2004-03-30  Jim Meyering  <jim@meyering.net>
41590
41591         * m4/realloc.m4: Remove file, since now it does no more than
41592         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
41593         the `configure.ac' section of module/realloc.
41594         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
41595
41596 2004-03-30  Bruno Haible  <bruno@clisp.org>
41597
41598         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
41599         nonnull.
41600
41601 2004-03-29  Paul Eggert  <eggert@twinsun.com>
41602
41603         Merge changes to getloadavg.c from coreutils and Emacs.
41604
41605         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
41606         Define to an expression, not to the empty string.
41607         Include cloexec.h and xalloc.h.
41608         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
41609         Use set_cloexec_flag rather than rolling our own.
41610         * lib/cloexec.c, lib/cloexec.h: New files.
41611
41612 2004-03-29  Paul Eggert  <eggert@twinsun.com>
41613
41614         * m4/cloexec.m4: New file.
41615
41616 2004-03-18  Paul Eggert  <eggert@twinsun.com>
41617
41618         * lib/getopt.h: Sync with libc CVS.
41619
41620 2004-03-18  Paul Eggert  <eggert@twinsun.com>
41621             Bruno Haible  <bruno@clisp.org>
41622
41623         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
41624         mbswidth.
41625
41626 2004-03-18  Paul Eggert  <eggert@twinsun.com>
41627             Bruno Haible  <bruno@clisp.org>
41628
41629         * lib/mbswidth.h: Include <wchar.h> only if
41630         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
41631         <wchar.h>.
41632         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
41633
41634 2004-03-09  Paul Eggert  <eggert@twinsun.com>
41635
41636         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
41637         Sync with libc CVS.
41638         * lib/getopt_int.h: New file, also synced from libc.
41639
41640 2004-03-09  Paul Eggert  <eggert@twinsun.com>
41641
41642         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
41643         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
41644         Bring back getopt.c, getopt.h, getopt1.c.
41645
41646 2004-03-07  Paul Eggert  <eggert@twinsun.com>
41647
41648         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
41649         All uses changed.  Check for sa_sigaction member; this fixes
41650         a bug first reported by Jason Andrade in
41651         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
41652
41653 2004-03-07  Paul Eggert  <eggert@twinsun.com>
41654
41655         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
41656         '#if' expressions.  Unlike the code it replaces, it does not
41657         depend on (defined _SC_PAGESIZE).  However, it does depend on
41658         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
41659         first reported by Jason Andrade in
41660         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
41661
41662 2004-02-25  Simon Josefsson  <jas@extundo.com>
41663
41664         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
41665
41666 2004-02-25  Simon Josefsson  <jas@extundo.com>
41667
41668         * lib/strdup.h: New file.
41669         * lib/strdup.c: Include it.
41670         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
41671         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
41672
41673 2004-02-23  Karl Berry  <karl@gnu.org>
41674
41675         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
41676         (from fencepost.gnu.org:/gd/gnuorg).
41677
41678 2004-02-23  Karl Berry  <karl@gnu.org>
41679
41680         * config/srclistvars.sh (GNUORG) [karl]: redefine.
41681         * config/srclist.txt: add maintain/standards documents.
41682
41683 2004-02-18  Bruno Haible  <bruno@clisp.org>
41684
41685         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
41686         Reported by Derek Robert Price <derek@ximbiot.com>.
41687
41688 2004-02-16  Karl Berry  <karl@gnu.org>
41689
41690         * config/mkinstalldirs, install-sh: update from automake.
41691
41692 2004-02-06  Karl Berry  <karl@gnu.org>
41693
41694         * m4/po.m4: update from gettext 0.14.1.
41695
41696 2004-02-06  Karl Berry  <karl@gnu.org>
41697
41698         * lib/config.charset: update from gettext 0.14.1.
41699
41700 2004-02-05  Paul Eggert  <eggert@twinsun.com>
41701
41702         Add comments and code, prompted by suggestions from Bruno Haible
41703         for sh-quote.
41704         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
41705         describing the enum quoting_style values.
41706         * lib/quotearg.c (quotearg_alloc): New function.
41707         (quotearg_buffer_restyled): Treat lone { and } as special.
41708         Treat = as special.  Work around bug with older shells
41709         that "see" a '\' that is really the 2nd byte of a multibyte char.
41710         Quote empty string with shell_quoting_style.
41711
41712 2004-02-03  Bruno Haible  <bruno@clisp.org>
41713
41714         * m4/pipe.m4: New file, from GNU gettext.
41715
41716 2004-02-03  Bruno Haible  <bruno@clisp.org>
41717
41718         * lib/pipe.h: New file, from GNU gettext.
41719         * lib/pipe.c: New file, from GNU gettext.
41720
41721 2004-01-27  Bruno Haible  <bruno@clisp.org>
41722
41723         * m4/execute.m4: New file, from GNU gettext.
41724
41725 2004-01-27  Bruno Haible  <bruno@clisp.org>
41726
41727         * lib/execute.h: New file, from GNU gettext.
41728         * lib/execute.c: New file, from GNU gettext.
41729         * lib/w32spawn.h: New file, from GNU gettext.
41730
41731 2004-01-24  Paul Eggert  <eggert@twinsun.com>
41732
41733         Merge from diffutils.
41734
41735         * lib/file-type.c (file_type): Add typed memory objects.
41736         * lib/file-type.h (S_TYPEISTMO): New macro.
41737
41738         * lib/c-stack.h (c_stack_action): Remove argv argument.
41739         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
41740         (die): Don't calculate message unless segv_action returns.
41741         (get_stack_location, min_address_from_argv, max_address_from_argv,
41742         volatile stack_base, volatile_stack_size): Remove.
41743         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
41744         that every segmentation violation is a stack overflow.  (Ouch!)
41745         See Debian bug 136249 (still outstanding) for more info about why
41746         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
41747
41748 2004-01-24  Paul Eggert  <eggert@twinsun.com>
41749
41750         Exit-status fix from coreutils.
41751
41752         Use exit_failure consistently in place of EXIT_FAILURE,
41753         so that program exit statuses are consistent on failure.
41754
41755         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
41756         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
41757         * lib/argmatch.h: Comment fix to match the above.
41758         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
41759         Now a macro referring to exit_failure, instead of a separate
41760         variable.  Include "exitfail.h" to get it.
41761         * lib/xstrtol.h: Include "exitfail.h".
41762         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
41763
41764         * lib/long-options.c (parse_long_options): Use prototype
41765         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
41766         for clarity.
41767
41768 2004-01-21  Jim Meyering  <jim@meyering.net>
41769
41770         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
41771         so as not to conflict with a different-sized __mktime_internal
41772         function in GNU libc.
41773         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
41774         Problem building statically-linked `ls' reported by Michael Brunnbauer.
41775
41776 2004-01-20  Karl Berry  <karl@gnu.org>
41777
41778         * config/config.guess: update from config.
41779
41780         * config/srclistvars.sh: GNUWWWLICENSES for karl.
41781
41782 2004-01-20  Bruno Haible  <bruno@clisp.org>
41783
41784         Safer stack allocation.
41785         * lib/setenv.c: Include allocsa.h.
41786         (alloca): Remove fallback definition.
41787         (freea): Remove macro.
41788         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
41789         instead of freea.
41790
41791 2004-01-20  Bruno Haible  <bruno@clisp.org>
41792
41793         * m4/eealloc.m4: New file, from GNU gettext.
41794
41795 2004-01-20  Bruno Haible  <bruno@clisp.org>
41796
41797         * m4/allocsa.m4: New file, from GNU gettext.
41798
41799 2004-01-20  Bruno Haible  <bruno@clisp.org>
41800
41801         * lib/xallocsa.h: New file, from GNU gettext.
41802         * lib/xallocsa.c: New file, from GNU gettext.
41803
41804 2004-01-20  Bruno Haible  <bruno@clisp.org>
41805
41806         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
41807
41808 2004-01-20  Bruno Haible  <bruno@clisp.org>
41809
41810         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
41811         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
41812         specially.
41813
41814 2004-01-20  Bruno Haible  <bruno@clisp.org>
41815
41816         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
41817         patch.
41818
41819 2004-01-20  Bruno Haible  <bruno@clisp.org>
41820
41821         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
41822
41823 2004-01-20  Bruno Haible  <bruno@clisp.org>
41824
41825         * lib/eealloc.h: New file.
41826
41827 2004-01-20  Bruno Haible  <bruno@clisp.org>
41828
41829         * lib/binary-io.h: Avoid warnings on Cygwin.
41830
41831 2004-01-20  Bruno Haible  <bruno@clisp.org>
41832
41833         * lib/allocsa.h: New file, from GNU gettext.
41834         * lib/allocsa.c: New file, from GNU gettext.
41835
41836 2004-01-18  Karl Berry  <karl@gnu.org>
41837
41838         * doc/gpl.texi, doc/lgpl.texi: new files.
41839
41840 2004-01-18  Karl Berry  <karl@gnu.org>
41841
41842         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
41843         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
41844
41845 2004-01-15  Paul Eggert  <eggert@twinsun.com>
41846
41847         Merge from coreutils.
41848
41849         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
41850         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
41851         (gl_DEFAULT_POSIX2_VERSION): Move
41852         the documentation from 'configure' into 'config.hin',
41853         so that 'configure --help' isn't burdened by it and
41854         we don't have to worry about its formatting there.
41855         Reword the documentation so that it's more succinct
41856         and can be run together into a single paragraph.
41857         * m4/same.m4 (gl_SAME): Check for pathconf.
41858
41859 2004-01-15  Paul Eggert  <eggert@twinsun.com>
41860
41861         Merge from coreutils.
41862
41863         * lib/posixver.c: Include posixver.h.
41864
41865         * lib/same.c: Include <stdbool.h>, <limits.h>.
41866         (_POSIX_NAME_MAX): Define if not defined.
41867         (MIN): New macro.
41868         (same_name): If file names are silently truncated, report
41869         that the file names are the same if they are the same after
41870         the silent truncation.
41871
41872         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
41873         conversion function.
41874         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
41875         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
41876         longer needed.
41877
41878 2004-01-15  Jim Meyering  <jim@meyering.net>
41879
41880         Merge from coreutils.
41881
41882         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
41883         if no library is required.
41884         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
41885         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
41886         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
41887         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
41888         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
41889         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
41890         value, $ac_cv_search_crypt, if it's "none required".
41891         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
41892         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
41893         not gl_FUNC_GETLOADAVG.
41894         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
41895         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
41896
41897 2004-01-15  Jim Meyering  <jim@meyering.net>
41898
41899         Merge from coreutils.
41900
41901         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
41902         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
41903         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
41904
41905         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
41906         optional configure-time default.
41907
41908         * lib/version-etc.c (version_etc_copyright): Update copyright date.
41909
41910         * lib/xreadlink.c (xreadlink): Correct outdated comment.
41911
41912 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
41913
41914         Merge from coreutils.
41915
41916         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
41917         value, $ac_cv_search_nanosleep, if it's "none required".
41918
41919 2004-01-14  Paul Eggert  <eggert@twinsun.com>
41920
41921         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
41922         with like-named macro in fnmatch.c.
41923         (EXT): Use an internal constant instead.
41924
41925         Merge fnmatch patches from glibc.
41926         * lib/fnmatch.c (mbsinit): Remove define.
41927         Add libc_hidden_ver (__fnmatch, fnmatch).
41928         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
41929         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
41930
41931 2004-01-14  Karl Berry  <karl@gnu.org>
41932
41933         * config/install-sh: update from automake.
41934
41935 2004-01-13  Karl Berry  <karl@gnu.org>
41936
41937         * config/install-sh: update from automake.
41938
41939 2004-01-09  Karl Berry  <karl@gnu.org>
41940
41941         * config/install-sh: update from automake.
41942
41943 2004-01-05  Karl Berry  <karl@gnu.org>
41944
41945         * config/config.{sub,guess}: update from config.
41946
41947 2003-12-31  Karl Berry  <karl@gnu.org>
41948
41949         * config/depcomp: update from automake.
41950
41951 2003-12-14  Karl Berry  <karl@gnu.org>
41952
41953         * lib/config.charset: update from gettext-runtime.
41954
41955 2003-12-03  Paul Eggert  <eggert@twinsun.com>
41956
41957         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
41958         Bug reported by Alfred M. Szmidt.
41959
41960 2003-12-03  Bruno Haible  <bruno@clisp.org>
41961
41962         * m4/gettext.m4: Upgrade from gettext-0.13.
41963         * m4/po.m4: Upgrade from gettext-0.13.
41964         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
41965         * m4/intmax.m4: New file, from gettext-0.13.
41966         * m4/printf-posix.m4: New file, from gettext-0.13.
41967
41968 2003-11-29  Karl Berry  <karl@gnu.org>
41969
41970         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
41971
41972 2003-11-25  Paul Eggert  <eggert@twinsun.com>
41973             Bruno Haible  <bruno@clisp.org>
41974
41975         * lib/printf-parse.h: Don't include sys/types.h.
41976         (ARG_NONE): New macro.
41977         (char_directive): Change type of *arg_index fields to size_t.
41978         * lib/printf-parse.c: Don't include sys/types.h.
41979         (SSIZE_MAX): Remove macro.
41980         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
41981         Remove unnecessary overflow check.
41982         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
41983         fields.
41984
41985 2003-11-25  Bruno Haible  <bruno@clisp.org>
41986
41987         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
41988
41989 2003-11-25  Bruno Haible  <bruno@clisp.org>
41990
41991         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
41992         gt_TYPE_SSIZE_T.
41993
41994 2003-11-24  Paul Eggert  <eggert@twinsun.com>
41995
41996         * modules/alloca: Remove dependency on xalloc.
41997
41998 2003-11-24  Paul Eggert  <eggert@twinsun.com>
41999
42000         * lib/alloca.c: Remove dependency on xalloc module.
42001         (xalloc_die): Remove.
42002         (memory_full) [!defined emacs]: New macro.
42003         [!defined emacs]: Don't include xalloc.h.
42004         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
42005         address arithmetic overflows.  Change datatypes a bit to avoid
42006         unnecessary casts.
42007
42008 2003-11-22  Jim Meyering  <jim@meyering.net>
42009
42010         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
42011         s/size/size_t/.
42012
42013 2003-11-21  Karl Berry  <karl@gnu.org>
42014
42015         * config/config.{sub,guess}: update from config.
42016
42017 2003-11-18  Karl Berry  <karl@gnu.org>
42018
42019         * config/config.{sub,guess}: update from config.
42020
42021         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
42022
42023 2003-11-17  Paul Eggert  <eggert@twinsun.com>
42024
42025         * README: Mention that S+T cannot overflow if S is the size of
42026         an existing object and T is sufficiently small.
42027
42028 2003-11-17  Jim Meyering  <jim@meyering.net>
42029
42030         On systems without utime and without a utimes function capable of
42031         dealing with a NULL struct utimbuf* argument, this utime replacement
42032         could -- in unusual circumstances -- leak a file descriptor.
42033         * lib/utime.c: Include <unistd.h> and <errno.h>.
42034         (utime_null): Be sure to close `fd' and to preserve errno.
42035         Reported by Geoff Collyer via Arnold Robbins.
42036
42037 2003-11-17  Bruno Haible  <bruno@clisp.org>
42038
42039         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
42040         (Depends-on): Add xsize.
42041
42042 2003-11-17  Bruno Haible  <bruno@clisp.org>
42043
42044         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
42045
42046 2003-11-17  Bruno Haible  <bruno@clisp.org>
42047
42048         * lib/vasnprintf.c (alloca): Remove fallback definition.
42049         (freea): Remove definition.
42050         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
42051         Reported by Paul Eggert.
42052
42053 2003-11-16  Paul Eggert  <eggert@twinsun.com>
42054             Bruno Haible  <bruno@clisp.org>
42055
42056         Protect against address arithmetic overflow.
42057         * lib/printf-args.h: Include stddef.h.
42058         (arguments): Change type of field 'count' to size_t.
42059         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
42060         'unsigned int' where appropriate.
42061         * lib/printf-parse.h: Include sys/types.h.
42062         (char_directive): Change type of *arg_index fields to ssize_t.
42063         (char_directives): Change type of fields 'count', max_*_length to
42064         size_t.
42065         * lib/printf-parse.c: Include sys/types.h and xsize.h.
42066         (SSIZE_MAX): Define fallback value.
42067         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
42068         instead of 'int' where appropriate. Check a_allocated, d_allocated
42069         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
42070         * lib/vasnprintf.c: Include xsize.h.
42071         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
42072         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
42073         overflow. Avoid wraparound when converting a width or precision from
42074         decimal to binary.
42075
42076 2003-11-16  Bruno Haible  <bruno@clisp.org>
42077
42078         Update from GNU gettext.
42079         * lib/printf-parse.c: Generalize to it can be compiled for wide
42080         strings.
42081         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
42082         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
42083         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
42084         SNPRINTF): New macros.
42085         Don't include <alloca.h> if the file is used inside libintl.
42086         (local_wcslen): New function, for Solaris 2.5.1.
42087         (VASNPRINTF): Use it instead of wcslen.
42088
42089 2003-11-16  Bruno Haible  <bruno@clisp.org>
42090
42091         * lib/xsize.h (xmax): New function.
42092         (xsum, xsum3, xsum4): Declare as "pure" functions.
42093
42094 2003-11-12  Paul Eggert  <eggert@twinsun.com>
42095
42096         * modules/xalloc (Files): Undo latest change, since xalloc.h
42097         no longer needs SIZE_MAX or PTRDIFF_MAX.
42098
42099 2003-11-12  Paul Eggert  <eggert@twinsun.com>
42100
42101         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
42102         gl_PTRDIFF_MAX.
42103
42104 2003-11-12  Paul Eggert  <eggert@twinsun.com>
42105
42106         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
42107         "return", to pacify some unknown compiler.  Problem reported
42108         by Joerg Schilling.
42109
42110 2003-11-12  Paul Eggert  <eggert@twinsun.com>
42111
42112         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
42113         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
42114         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
42115         heuristic is just as accurate as far as we know, and it removes a
42116         dependency on size_max.m4 and ptrdiff_max.m4.
42117
42118 2003-11-11  Bruno Haible  <bruno@clisp.org>
42119
42120         * modules/xsize (Files): Add m4/size_max.m4.
42121         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
42122
42123 2003-11-11  Bruno Haible  <bruno@clisp.org>
42124
42125         * m4/size_max.m4: New file.
42126         * m4/ptrdiff_max.m4: New file.
42127         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
42128         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
42129         (gl_XALLOC): Invoke it.
42130
42131 2003-11-11  Bruno Haible  <bruno@clisp.org>
42132
42133         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
42134         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
42135         defined.
42136
42137 2003-11-10  Paul Eggert  <eggert@twinsun.com>
42138
42139         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
42140         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
42141         rejected some allocations of exactly SIZE_MAX - 2 bytes.
42142         From Bruno Haible.
42143         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
42144         not (size_t) -1, since it's defined here.
42145
42146 2003-11-09  Karl Berry  <karl@gnu.org>
42147
42148         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
42149
42150 2003-11-06  Paul Eggert  <eggert@twinsun.com>
42151
42152         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
42153         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
42154         Reject sizes of exactly SIZE_MAX bytes.
42155         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
42156         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
42157
42158 2003-11-05  Bruno Haible  <bruno@clisp.org>
42159
42160         * lib/xsize.h: Include limits.h, to avoid a possible collision with
42161         SIZE_MAX defined in <limits.h> on Solaris.
42162
42163 2003-11-04  Jim Meyering  <jim@meyering.net>
42164
42165         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
42166         variable names, rather than @VAR@.
42167         * modules/poll: Likewise.
42168
42169 2003-11-04  Bruno Haible  <bruno@clisp.org>
42170
42171         * modules/xsize: New file.
42172         * modules/linebreak: Depend on xsize.
42173         * MODULES.html.sh (func_all_modules): Add xsize.
42174
42175 2003-11-04  Bruno Haible  <bruno@clisp.org>
42176
42177         * m4/xsize.m4: New file.
42178
42179 2003-11-04  Bruno Haible  <bruno@clisp.org>
42180
42181         * lib/xsize.h: New file.
42182         * lib/linebreak.c: Include xsize.h.
42183         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
42184         argument for overflow.
42185         Suggested by Paul Eggert.
42186
42187 2003-11-03  Karl Berry  <karl@gnu.org>
42188
42189         * config/config.{guess,sub}: update from config.
42190
42191 2003-11-03  Jim Meyering  <jim@meyering.net>
42192
42193         * modules/userspec (lib_SOURCES): Add userspec.h.
42194         (Include): Add "userspec.h".
42195         Improve description.
42196
42197 2003-11-03  Jim Meyering  <jim@meyering.net>
42198
42199         * lib/userspec.c: Include "userspec.h".
42200         * lib/userspec.h: New file.
42201
42202 2003-11-03  Bruno Haible  <bruno@clisp.org>
42203
42204         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
42205
42206 2003-11-03  Bruno Haible  <bruno@clisp.org>
42207
42208         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
42209         available, to avoid (extremely rare) race condition.
42210         Suggested by Paul Eggert.
42211
42212 2003-11-02  Karl Berry  <karl@gnu.org>
42213
42214         * config/srclist.txt (vasprintf.c): sync broken, sigh.
42215
42216 2003-10-31  Paul Eggert  <eggert@twinsun.com>
42217
42218         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
42219         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
42220         (read_filesystem_list): Set and use me_type_malloced.
42221         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
42222         whatever the type happens to be), for brevity and consistency.
42223         Check for size calculation overflow on Alphas running OSF/1.
42224
42225 2003-10-31  Jim Meyering  <jim@meyering.net>
42226
42227         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
42228
42229         * lib/linebuffer.c: Include <string.h> for declaration of memset.
42230
42231 2003-10-30  Paul Eggert  <eggert@twinsun.com>
42232             Bruno Haible  <bruno@clisp.org>
42233
42234         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
42235         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
42236
42237 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
42238
42239         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
42240         netbsd*-gnu*.  Suggested by Robert Millan.
42241
42242 2003-10-29  Paul Eggert  <eggert@twinsun.com>
42243
42244         * modules/group-member: Depend on stdbool.
42245
42246 2003-10-29  Paul Eggert  <eggert@twinsun.com>
42247
42248         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
42249
42250 2003-10-29  Paul Eggert  <eggert@twinsun.com>
42251
42252         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
42253         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
42254         after the 'gnu' in these cases.  This fixes some bugs in the
42255         previous change, and is based on suggestions by Robert Millan.
42256
42257 2003-10-29  Paul Eggert  <eggert@twinsun.com>
42258
42259         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
42260         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
42261         no longer needed.
42262         * lib/quotearg.c (quotearg_n_options): Use it.
42263         * lib/group-member.c: Include <stdbool.h>.
42264         (free_group_info): Arg is now const *; don't free arg.
42265         (get_group_info): Now returns bool and accepts struct group_info *,
42266         rather than returning a malloc'ed struct group_info *.
42267         All uses changed.  Check for overflow in internal size calculation.
42268
42269         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
42270         rather than xmalloc/xrealloc.
42271         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
42272         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
42273         conformance bug: the old code used a pointer after freeing the
42274         storage that it addressed.
42275         * lib/hash.c (hash_initialize): Simplify the code by using
42276         xalloc_oversized rather than doing it by hand.
42277         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
42278         the buffer preserved.  Use free and xmalloc instead.
42279         * lib/quotearg.c (quotearg_n_options): Likewise.
42280         Use a simpler test for size overflow.  Don't use xalloc_oversized
42281         because unsigned int might be wider than size_t (!); this suggests
42282         that we should switch from unsigned int to size_t for slot numbers.
42283
42284 2003-10-28  Paul Eggert  <eggert@twinsun.com>
42285
42286         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
42287         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
42288         NetBSD kernels.  Requested by Richard Stallman.
42289
42290 2003-10-27  Paul Eggert  <eggert@twinsun.com>
42291
42292         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
42293         to allocate the returned structure.  Do not allocate a subarray,
42294         as x2nrealloc will do that.
42295         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
42296         instead of xnrealloc.
42297         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
42298
42299 2003-10-27  Bruno Haible  <bruno@clisp.org>
42300
42301         * lib/stdbool_.h: Better support for BeOS.
42302
42303 2003-10-26  Paul Eggert  <eggert@twinsun.com>
42304
42305         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
42306         now uses inline.
42307
42308 2003-10-26  Paul Eggert  <eggert@twinsun.com>
42309
42310         * lib/xalloc.h (xalloc_oversized): New static inline function, for
42311         callers that want to do their own size-overflow checking.  Include
42312         <stdbool.h>, since xalloc_oversized returns bool.
42313         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
42314         to use xalloc_oversized.
42315
42316         Add two functions x2realloc, x2nrealloc, for programs that grow
42317         arrays dynamically by doubling their sizes.
42318         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
42319         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
42320         New functions.
42321
42322         Port to C99 semantics for 'inline' of external functions.
42323         Bug reported by Bruno Haible.
42324         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
42325         with the old contents of xnmalloc.
42326         (xnmalloc, xmalloc): Use it.
42327         (xnrealloc_inline): New static inline function,
42328         with the old contents of xnrealloc.
42329         (xnrealloc, xrealloc): Use it.
42330
42331         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
42332         that.
42333
42334 2003-10-26  Karl Berry  <karl@gnu.org>
42335
42336         * config/srclist.txt (COPYING.DOC): no longer available from
42337         /gd/gnuorg; don't know where the ultimate source is.
42338
42339 2003-10-25  Paul Eggert  <eggert@twinsun.com>
42340
42341         Fix several address-calculation bugs in the hash modules,
42342         plus some minor code cleanup.
42343
42344         * lib/hash.h: Include <stdbool.h>, for bool.
42345         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
42346         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
42347         hash_get_n_entries, hash_get_max_bucket_length,
42348         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
42349         hash_rehash): Use size_t rather than unsigned.
42350         * lib/hash.c (struct hash_table, hash_get_n_buckets,
42351         hash_get_n_buckets_used, hash_get_n_entries,
42352         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
42353         hash_get_entries, hash_do_for_each, hash_string, is_prime,
42354         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
42355         Likewise.
42356         (SIZE_MAX): Define if not defined.
42357         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
42358         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
42359         hash_print):
42360         Use const * when possible.
42361         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
42362         (check_tuning): Fix bug: if tuning parameters were very close to
42363         0 or 1, rounding errors could have caused subscript violations.
42364         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
42365         (hash_initialize): Add 'fail:' label
42366         to free table and return NULL, and use it to simplify code.
42367         Use calloc rather than clearing the storage ourself.
42368         (hash_initialize, hash_rehash): Check for arithmetic overflow in
42369         buffer size calculations.
42370         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
42371         Include <stddef.h>, for size_t.
42372         * lib/hash-pjw.c (hash_pjw): Likewise.
42373         Switch to method described by Bruno Haible.
42374         Include <limits.h>, for CHAR_BIT.
42375         (SIZE_BITS): New macro.
42376
42377 2003-10-23  Paul Eggert  <eggert@twinsun.com>
42378
42379         * m4/getline.m4 (AM_FUNC_GETLINE):
42380         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
42381         hosts.  Problem reported by Derek Robert Price in
42382         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
42383         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
42384         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
42385
42386 2003-10-21  Paul Eggert  <eggert@twinsun.com>
42387
42388         * lib/getndelim2.c (getndelim2): When size calculation overflows,
42389         ceiling the allocation at NMAX bytes rather than silently
42390         discarding input bytes before NMAX is reached.  This makes
42391         a difference only if NMAX exceeds SIZE_MAX / 2.
42392
42393         * lib/obstack.c: Merge from glibc.
42394         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
42395         Add libc_hidden_def (_obstack_newchunk).
42396         (_obstack_free) [! defined _LIBC]: Remove.
42397         [defined _LIBC]: Make a strong alias from obstack_free, rather than
42398         a clone of the function body.
42399         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
42400         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
42401
42402         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
42403         glibc.
42404         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
42405         arg to memcpy.
42406
42407         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
42408         (obstack_ptr_grow_fast, obstack_int_grow_fast):
42409         Don't use lvalue casts, as GCC plans to remove support for them
42410         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
42411         was also present in the non-GCC version, indicating that this
42412         code had always been buggy and had never been widely used.
42413         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
42414         Use the fast variant of each macro, rather than copying the
42415         definiens of the fast variant; that way, we'll be more likely to
42416         catch future bugs in the fast variants.
42417
42418 2003-10-20  Bruno Haible  <bruno@clisp.org>
42419
42420         * modules/wait-process: New file.
42421         * MODULES.html.sh (func_all_modules): Add wait-process.
42422
42423 2003-10-20  Bruno Haible  <bruno@clisp.org>
42424
42425         * m4/wait-process.m4: New file.
42426
42427 2003-10-20  Bruno Haible  <bruno@clisp.org>
42428
42429         * lib/wait-process.h: New file, from GNU gettext.
42430         * lib/wait-process.c: New file, from GNU gettext.
42431
42432 2003-10-19  Jim Meyering  <jim@meyering.net>
42433
42434         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
42435         HPUX 10.20.
42436
42437 2003-10-18  Karl Berry  <karl@gnu.org>
42438
42439         * config/config.guess: update from config.
42440
42441 2003-10-16  Paul Eggert  <eggert@twinsun.com>
42442
42443         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
42444         (getgroups): First arg is int, not size_t.
42445         Don't let 'free' mangle errno.
42446
42447 2003-10-16  Paul Eggert  <eggert@twinsun.com>
42448
42449         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
42450
42451 2003-10-16  Karl Berry  <karl@gnu.org>
42452
42453         * config/config.{guess,sub}: update from config.
42454
42455 2003-10-16  Jim Meyering  <jim@meyering.net>
42456
42457         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
42458         memcpy.
42459
42460 2003-10-15  Paul Eggert  <eggert@twinsun.com>
42461
42462         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
42463         (SIZE_MAX): Remove.
42464         (new_exclude, add_exclude_file): Initial size no longer needs to
42465         be a power of 2.
42466         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
42467         our own address arithmetic overflow checking.
42468
42469         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
42470         (fnmatch): Do not alloca more than 2000 wide characters;
42471         instead, use malloc for large buffers.
42472         Check for address arithmetic overflow, and return -1
42473         with errno set to ENOMEM in that case.
42474         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
42475         (NEW_PATTERN): Do not alloca more than 8000 bytes;
42476         instead, return -1.  Check for address arithmetic overflow.
42477
42478 2003-10-14  Paul Eggert  <eggert@twinsun.com>
42479
42480         Handle invalid suffixes and overflow independently, so that
42481         callers can treat them independently as needed.  Fix some bugs in
42482         suffix handling, e.g., "100k@" was not diagnosed as an invalid
42483         suffix for a human-readable blocksize.  The major caller-visible
42484         change is the addition of a new
42485         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
42486         that both overflow and suffix chars were found.
42487
42488         * lib/human.c (humblock): Don't check separately for invalid suffix
42489         char; that is xstrtoumax's job (now that its bug is fixed).
42490         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
42491         INTMAX_MAX]: New macros.
42492         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
42493         TYPE_MAXIMUM): New macros.
42494         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
42495         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
42496         if overflow occurs, as it's what __strtol does and it's more useful
42497         in practice.
42498         (__xstrtol): If __strtol reports some error other than ERANGE,
42499         reflect it to the caller as LONGINT_INVALID.  If it reports
42500         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
42501         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
42502         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
42503         value.
42504         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
42505         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
42506         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
42507         [defined UINTMAX_MAX]: New macros.
42508
42509 2003-10-14  Bruno Haible  <bruno@clisp.org>
42510
42511         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
42512
42513 2003-10-14  Bruno Haible  <bruno@clisp.org>
42514
42515         * m4/sig_atomic_t: New file, from GNU gettext.
42516         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
42517
42518 2003-10-14  Bruno Haible  <bruno@clisp.org>
42519
42520         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
42521         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
42522         Also use volatile where needed.
42523
42524 2003-10-12  Paul Eggert  <eggert@twinsun.com>
42525
42526         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
42527         Change maintainer from Bruno Haible to 'all'.
42528
42529 2003-10-12  Paul Eggert  <eggert@twinsun.com>
42530
42531         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
42532
42533 2003-10-12  Paul Eggert  <eggert@twinsun.com>
42534
42535         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
42536         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
42537         and define in terms of the other primitives.
42538         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
42539         (SIZE_MAX): Define if not already defined.
42540         (array_size_overflow): New function.
42541         (xalloc_die): Abort instead of exiting if 'error' returns.
42542         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
42543         (xmalloc, xrealloc): Use them.
42544         (xcalloc): Check for address arithmetic overflow.
42545         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
42546         a bit faster than strcpy.
42547
42548 2003-10-10  Simon Josefsson  <jas@extundo.com>
42549
42550         * modules/argp (Depends-on): Add restrict and strcase.
42551
42552 2003-10-10  Simon Josefsson  <jas@extundo.com>
42553
42554         * m4/argp.m4: Add AC_C_INLINE.
42555
42556 2003-10-08  Paul Eggert  <eggert@twinsun.com>
42557
42558         Merge getpass from libc, plus a few fixes.
42559
42560         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
42561         Include <stdbool.h>.
42562         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
42563         __fsetlocking to empty.
42564         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
42565         do include <bits/libc-lock.h>.
42566         Do not include <fcntl.h>; not needed.
42567         [_LIBC]: Include <wchar.h>.
42568         (NOTCANCEL_MODE): New macro.
42569         (flockfile, funlockfile) [_LIBC]: New macros.
42570         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
42571         [!_LIBC]: New macros.
42572         (call_fclose): New function.
42573         (getpass): Use it.  Save tty stream separately; this simplifies the
42574         code and makes it more reliable if stdin happens to equal stdout.
42575         Invoke __fsetlocking on tty.
42576         Handle thread cancellation if needed.
42577         Namespace cleanup (use __tcgetattr, __getline).
42578         Use bool for Booleans.
42579         [USE_IN_LIBIO]: Handle wide streams.
42580         [!_LIBC]: Unconditionally do the fseek, since we don't know what
42581         stream might go where.
42582
42583         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
42584         doesn't have to include <stdio.h> before us.
42585         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
42586         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
42587         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
42588         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
42589         if not declared, so that we can use getpass.c code from libc without
42590         rewriting it.
42591         (flockfile, ftrylockfile, funlockfile): New macros.
42592
42593 2003-10-08  Paul Eggert  <eggert@twinsun.com>
42594
42595         * modules/getpass: Depend on stdbool.
42596
42597 2003-10-08  Paul Eggert  <eggert@twinsun.com>
42598
42599         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
42600
42601 2003-10-07  Karl Berry  <karl@gnu.org>
42602
42603         * config/config.{guess,sub}: update from config.
42604
42605 2003-10-06  Jim Meyering  <jim@meyering.net>
42606             Bruno Haible  <bruno@clisp.org>
42607
42608         This lets translators provide better translations for the
42609         "Written by ..." part of --version output.
42610         * lib/version-etc.h: Include stdarg.h.
42611         (version_etc_copyright): Declare as readonly.
42612         (version_etc): Make this function variadic with a NULL-terminated list
42613         of author name strings.
42614         (version_etc_va): New declaration.
42615         * lib/version-etc.c: Include stdarg.h, stdlib.h.
42616         (version_etc_copyright): Declare as readonly.
42617         (version_etc_va): New function. Provide a different translatable string
42618         for each possible number of authors < 10. Abbreviate when there are 10
42619         authors or more.
42620         (version_etc): Make this function variadic. Call version_etc_va.
42621         Suggestion from Gary V. Vaughan.
42622
42623         * lib/long-options.h (parse_long_options): Change prototype: the
42624         authors string is moved to the end and becomes variadic.
42625         * lib/long-options.c: Include stdarg.h.
42626         (parse_long_options): Make this function variadic, too.
42627         Call version_etc_va, not version_etc.
42628
42629 2003-10-06  Bruno Haible  <bruno@clisp.org>
42630
42631         * modules/version-etc-2: Remove file.
42632         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
42633
42634 2003-10-06  Bruno Haible  <bruno@clisp.org>
42635
42636         * modules/fatal-signal: New file.
42637         * MODULES.html.sh (func_all_modules): Add fatal-signal.
42638
42639 2003-10-06  Bruno Haible  <bruno@clisp.org>
42640
42641         * m4/fatal-signal.m4: New file.
42642         * m4/signalblocking.m4: New file, from GNU gettext.
42643
42644 2003-10-06  Bruno Haible  <bruno@clisp.org>
42645
42646         * lib/version-etc-2.h: Remove file.
42647         * lib/version-etc-2.c: Remove file.
42648
42649 2003-10-06  Bruno Haible  <bruno@clisp.org>
42650
42651         * lib/fatal-signal.h: New file, from GNU gettext.
42652         * lib/fatal-signal.c: New file, from GNU gettext.
42653
42654 2003-10-05  Paul Eggert  <eggert@twinsun.com>
42655
42656         * README: Rework advice for preventing empty .o files.
42657         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
42658         not <sys/types.h>.
42659
42660 2003-10-04  Karl Berry  <karl@gnu.org>
42661
42662         * lib/argp*: update from libc.
42663
42664 2003-10-04  Karl Berry  <karl@gnu.org>
42665
42666         * config/config.{guess,sub}: update from config.
42667
42668 2003-10-02  Bruno Haible  <bruno@clisp.org>
42669
42670         * modules/lchown (Include): Add lchown.h.
42671         * modules/time_r (Include): Use "..." syntax.
42672         * modules/xgetdomainname (Include): Add xgetdomainname.h.
42673
42674 2003-10-01  Simon Josefsson  <jas@extundo.com>
42675
42676         * MODULES.html.sh (func_all_modules): Move gethostname from section
42677         'based on' to section 'lacking' POSIX:2001.
42678
42679 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
42680
42681         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
42682         to output mode on the same stream.
42683
42684 2003-09-29  Paul Eggert  <eggert@twinsun.com>
42685
42686         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
42687         Fix arg typo in previous patch.
42688
42689 2003-09-28  Jim Meyering  <jim@meyering.net>
42690
42691         * lib/error.c: Correct cpp indentation.
42692
42693 2003-09-27  Paul Eggert  <eggert@twinsun.com>
42694
42695         * modules/free: New file.
42696
42697 2003-09-27  Paul Eggert  <eggert@twinsun.com>
42698
42699         * m4/free.m4: New file.
42700
42701 2003-09-27  Paul Eggert  <eggert@twinsun.com>
42702
42703         * lib/minmax.h (MIN, MAX)
42704         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
42705         Omit the special code that used __typeof__, since we worry that
42706         it could be more trouble than it's worth.  See:
42707         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
42708         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
42709
42710         * lib/free.c: New file.
42711
42712 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
42713
42714         Trivial fixes to Makefile.am parts of module listings.
42715         * modules/strstr: Append strstr.h to lib_SOURCES.
42716         * modules/strcase: Likewise, for strcase.h.
42717
42718 2003-09-27  Karl Berry  <karl@gnu.org>
42719
42720         * config/mkinstalldirs: update from automake.
42721
42722 2003-09-26  Paul Eggert  <eggert@twinsun.com>
42723
42724         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
42725         (error_tail): Do not loop, reallocating temporary buffer, since
42726         the output cannot contain more wide characters than the input
42727         contains bytes, the size must be big enough already.  This avoids
42728         one potential size overflow calculation.  Check for size overflow
42729         when calculating temporary buffer size.  Free temporary buffer
42730         when done, if it was allocated with malloc; this plugs a memory
42731         leak.  Remove casts from void * to pointers, that are no longer
42732         needed now that we're assuming C89 or better.
42733
42734         Merge error changes from glibc.
42735
42736         * lib/error.c, error.h: Update copyright notice header to match glibc.
42737         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
42738         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
42739         Disable cancellation while printing error.
42740         * lib/error.h: Prepend __ to parameter names.
42741
42742 2003-09-26  Jim Meyering  <jim@meyering.net>
42743
42744         * lib/error.c (error_tail): Move some declarations
42745         into inner scope where the local variables are used.
42746
42747 2003-09-26  Bruno Haible  <bruno@clisp.org>
42748
42749         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
42750         stpncpy().
42751         Don't define stpncpy through config.h; it's now done through stpncpy.h.
42752
42753 2003-09-26  Bruno Haible  <bruno@clisp.org>
42754
42755         * lib/stpncpy.h (gnu_stpncpy): New declaration.
42756         (stpncpy): Define as alias for gnu_stpncpy.
42757         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
42758
42759 2003-09-25  Simon Josefsson  <jas@extundo.com>
42760
42761         * lib/xgetdomainname.h: New file.
42762         * lib/xgetdomainname.c: New file.
42763
42764 2003-09-25  Simon Josefsson  <jas@extundo.com>
42765             Bruno Haible  <bruno@clisp.org>
42766
42767         * modules/getdomainname: New file.
42768         * modules/xgetdomainname: New file.
42769         * MODULES.html.sh (func_all_modules): Add getdomainname,
42770         xgetdomainname.
42771
42772 2003-09-25  Simon Josefsson  <jas@extundo.com>
42773             Bruno Haible  <bruno@clisp.org>
42774
42775         * m4/getdomainname.m4: New file.
42776
42777 2003-09-25  Simon Josefsson  <jas@extundo.com>
42778             Bruno Haible  <bruno@clisp.org>
42779
42780         * lib/getdomainname.h: New file.
42781         * lib/getdomainname.c: New file.
42782
42783 2003-09-25  Karl Berry  <karl@gnu.org>
42784
42785         * lib/argp-fmtstream.c, argp-help.c: update from libc.
42786
42787 2003-09-25  Karl Berry  <karl@gnu.org>
42788
42789         * config/install-sh: update from automake.
42790
42791 2003-09-25  Bruno Haible  <bruno@clisp.org>
42792
42793         * modules/version-etc-2: New file, from modules/version-etc with
42794         modifications.
42795         * MODULES.html.sh (func_all_modules): Add version-etc-2.
42796
42797 2003-09-25  Bruno Haible  <bruno@clisp.org>
42798
42799         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
42800         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
42801
42802 2003-09-24  Simon Josefsson  <jas@extundo.com>
42803
42804         * modules/xgethostname: Add xgethostname.h.
42805
42806 2003-09-24  Paul Eggert  <eggert@twinsun.com>
42807
42808         * lib/linebuffer.c (freebuffer): Don't free the argument, just
42809         the buffer associated with the argument.  Bug reported by
42810         Simon Josefsson.
42811
42812 2003-09-24  Paul Eggert  <eggert@twinsun.com>
42813
42814         * README: Document assumptions that 'int' is at least 32 bits
42815         wide, that integer arithmetic is 2's complement without overflow,
42816         that there are no holes in integer values, that adding sizes of
42817         two nonoverlapping objects can't overflow, and that all-bits-zero
42818         yields scalar zero.  Fix spelling and capitalization typos.
42819
42820 2003-09-19  Karl Berry  <karl@gnu.org>
42821
42822         * lib/argp.h: update from libc.
42823
42824 2003-09-17  Paul Eggert  <eggert@twinsun.com>
42825
42826         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
42827         to avoid spurious warnings like "AC_RUN_IFELSE was called before
42828         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
42829
42830 2003-09-17  Paul Eggert  <eggert@twinsun.com>
42831
42832         * gnulib-tool: Use "test -h", not "test -L", for portability
42833         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
42834         (tags_regexp): Remove, since \| doesn't conform to POSIX.
42835         (sed_extract_prog): Issue s commands one-by-one, rather than
42836         using \| in one s command.
42837
42838 2003-09-16  Paul Eggert  <eggert@twinsun.com>
42839
42840         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
42841         input error, instead of returning NULL the next time we are called
42842         (and therefore losing track of errno).
42843
42844 2003-09-16  Bruno Haible  <bruno@clisp.org>
42845
42846         * gnulib-tool (func_create_testdir): Warn about duplicated
42847         dependencies.
42848
42849 2003-09-15  Paul Eggert  <eggert@twinsun.com>
42850
42851         * modules/argmatch, modules/fatal, modules/obstack,
42852         modules/xalloc, modules/xgethostname: Sort dependencies by
42853         importance, not alphabetically.
42854
42855 2003-09-15  Paul Eggert  <eggert@twinsun.com>
42856
42857         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
42858         fails, so that the caller gets the proper errno.
42859
42860         * lib/readutmp.c (read_utmp): Likewise.
42861         Check for fstat error.  Close stream and free storage
42862         when failing.
42863
42864 2003-09-14  Karl Berry  <karl@gnu.org>
42865
42866         * config/srclist.txt (strdup.c): disable for c89 changes.
42867
42868 2003-09-14  Jim Meyering  <jim@meyering.net>
42869
42870         * lib/getloadavg.c: Correct cpp indentation.
42871         * lib/strdup.c: Likewise.
42872         * lib/vasnprintf.c: Likewise.
42873
42874 2003-09-14  Bruno Haible  <bruno@clisp.org>
42875
42876         * modules/fwriteerror: New file.
42877         * MODULES.html.sh (func_all_modules): Add fwriteerror.
42878
42879 2003-09-14  Bruno Haible  <bruno@clisp.org>
42880
42881         * lib/fwriteerror.h: New file.
42882         * lib/fwriteerror.c: New file.
42883
42884 2003-09-12  Paul Eggert  <eggert@twinsun.com>
42885
42886         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
42887         modules/xgethostname, modules/xalloc: Depend on exit.
42888
42889 2003-09-12  Paul Eggert  <eggert@twinsun.com>
42890
42891         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
42892
42893         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
42894         and AC_MINIX, too, so that their extensions are available.
42895
42896         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
42897         This macro has been superseded by gl_BACKUPFILE.
42898
42899         More patches to assume C89 or better.
42900
42901         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
42902
42903         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
42904         unconditionally.
42905         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
42906         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
42907         Include <string.h>, <stdlib.h> unconditionally.
42908         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
42909         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
42910         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
42911         headers or for string.h.
42912         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
42913         or strtoul.
42914
42915         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
42916         headers.
42917         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
42918         * m4/userspec.m4 (gl_USERSPEC): Likewise.
42919         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
42920         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
42921         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
42922         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
42923         memcpy, memset.
42924         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
42925         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
42926         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
42927         strtol.
42928         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
42929         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
42930         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
42931         strtoul.
42932
42933 2003-09-12  Paul Eggert  <eggert@twinsun.com>
42934
42935         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
42936         * lib/obstack.c [!defined _LIBC]: Likewise.
42937         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
42938         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
42939         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
42940
42941         More changes to assume C89 or better.
42942
42943         * lib/error.c (error_tail): Assume vprintf.
42944
42945         * lib/argmatch.c (getenv): Remove decl.
42946         * lib/progreloc.c (get_full_program_name): Define via prototype.
42947         * lib/setenv.c (clearenv): Likewise.
42948         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
42949         needed.
42950         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
42951         (malloc, memcpy): Remove decls.
42952         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
42953         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
42954         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
42955         (memcpy): Remove macro.
42956         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
42957         (__P): Remove.  All uses removed.
42958         (PTR): Remove.  All uses changed to void *.
42959         (CHAR_BIT, NULL): Remove.
42960         (spaces, zeros, memset_space, memset_zero)
42961         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
42962         Remove.
42963         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
42964         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
42965         Define with prototype.
42966         Remove now-unnecessary prototype decl.
42967         (extra_args_spec): Assume ANSI C.  All uses changed.
42968         (extra_args_spec_iso): Remove.
42969         (my_strftime, emacs_strftimeu): Define via prototype.
42970         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
42971         unconditionally.
42972         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
42973         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
42974         (strtoul, strtol): Remove decls.
42975         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
42976         LONG_MAX): Remove.
42977         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
42978         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
42979         (LOCALE_PARAM_PROTO): New macro.
42980         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
42981         (INTERNAL (strtol), strtol): Define with a prototype.
42982         (PARAMS): Remove.  All uses removed.
42983         * lib/tempname.c: Include <string.h> unconditionally.
42984         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
42985         * lib/xgethostname.c (main): Define with a prototype.
42986         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
42987         Include <stdlib.h> unconditionally.
42988         (calloc, malloc, realloc, free): Remove decls.
42989         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
42990         Include <stdlib.h> unconditionally.  Sort include file names.
42991         (strtod): Remove.
42992         (xstrtod): Define with a prototype.
42993         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
42994         (strtol, strtoul): Remove decls.
42995
42996 2003-09-11  Paul Eggert  <eggert@twinsun.com>
42997
42998         More patches to assume C89 or better.
42999         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
43000         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
43001         string.h, memchr, STDC_HEADERS.
43002
43003 2003-09-11  Paul Eggert  <eggert@twinsun.com>
43004
43005         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
43006         Include <stdlib.h>, <string.h> unconditionally.
43007         Remove now-unnecessary cast to char *.
43008         * lib/strnlen.c: Include <string.h> unconditionally.
43009         * lib/yesno.c (yesno): Define with a prototype.
43010
43011 2003-09-11  Bruno Haible  <bruno@clisp.org>
43012
43013         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
43014
43015 2003-09-10  Jim Meyering  <jim@meyering.net>
43016
43017         * lib/error.c: Correct indentation of cpp directives.
43018
43019 2003-09-10  Bruno Haible  <bruno@clisp.org>
43020
43021         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
43022         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
43023         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
43024         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
43025         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
43026         <stdlib.h> and <string.h> checks.
43027         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
43028         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
43029
43030 2003-09-10  Bruno Haible  <bruno@clisp.org>
43031
43032         * lib/strcspn.c: Include <string.h> unconditionally.
43033         * lib/strpbrk.c: Include <string.h> unconditionally.
43034         * lib/strstr.c: Include <string.h> unconditionally.
43035         * lib/unicodeio.c: Include <string.h> unconditionally.
43036         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
43037         * lib/unsetenv.c: Likewise.
43038         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
43039         * lib/yesno.c: Include <stdlib.h> unconditionally.
43040         (rpmatch): Add prototype.
43041
43042 2003-09-09  Paul Eggert  <eggert@twinsun.com>
43043
43044         More patches to assume C89 or better.
43045         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
43046         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
43047         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
43048         or for string.h.
43049         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
43050         stdlib.h.
43051         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
43052         C headers.
43053         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
43054         string.h.
43055         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
43056         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
43057         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
43058         or for string.h.
43059         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
43060         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
43061         C headers.
43062         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
43063         memcpy.
43064         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
43065         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
43066         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
43067         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
43068         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
43069         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
43070         string.h, free.
43071         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
43072         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
43073         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
43074         C headers, or for string.h.
43075         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
43076         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
43077         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
43078         headers, memory.h, stdlib.h, string.h, strings.h.
43079         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
43080         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
43081         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
43082         strchr.
43083         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
43084         headers, memory.h, string.h.
43085         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
43086         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
43087         free.
43088         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
43089         headers.
43090         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
43091         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
43092         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
43093         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
43094         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
43095
43096 2003-09-09  Paul Eggert  <eggert@twinsun.com>
43097
43098         More K&R removal.
43099
43100         * lib/acosl.c (main): Use a prototype.
43101         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
43102         tanl.c: Likewise.
43103
43104         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
43105
43106         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
43107         (getopt, etopt_long, getopt_long_only, _getopt_internal)
43108         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
43109         with a prototype.
43110         * lib/getopt.c (const): Remove macro.
43111         Include <string.h> unconditionally.
43112         (my_index): Remove; all uses changed to strchr.
43113         (strlen): Remove decl.
43114         (exchange): Remove forward decl; no longer needed.
43115         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
43116         Define with prototype.
43117         * lib/getopt1.c (const): Remove macro.
43118         (getopt_long, getopt_long_only, main): Define with prototype.
43119
43120         * lib/getugroups.c: Include <string.h> unconditionally.
43121
43122         * lib/getusershell.c: Include <stdlib.h> unconditionally.
43123         (getusershell, setusershell, endusershell, readname, main):
43124         Define with prototypes.
43125
43126         * lib/group-member.c: Include group-member.h first.
43127         Include <stdlib.h> unconditionally.
43128
43129         * lib/hard-locale.c: Include hard-locale.h first.
43130         Include <stdlib.h>, <string.h> unconditionally.
43131
43132         * lib/hash.c (free, malloc): Remove decls.
43133         Include <stdlib.h> unconditionally.
43134
43135         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
43136         (getenv): Do not declare.
43137
43138         * lib/idcache.c: Include <string.h> unconditionally.
43139
43140         * lib/long-options.c: Include long-options.h first, to test interface.
43141         Include <stdlib.h> unconditionally.
43142
43143         * lib/makepath.c: Include makepath.h first, to test interface.
43144         Include <stdlib.h> and <string.h> unconditionally.
43145
43146         * lib/linebuffer.c: Include <stdlib.h>.
43147         (free): Remove decl.
43148
43149         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
43150         stddef.h. rpl_malloc returns void *, not char *.
43151         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
43152         prototype.
43153
43154         * lib/md5.h: Include <limits.h> unconditionally.
43155         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
43156         (__P): Remove; all uses removed.
43157         * lib/md5.c: Include "md5.h" first.
43158         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
43159         md5_buffer, md5_process_bytes, md5_process_block):
43160         Define with prototypes.
43161         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
43162         * lib/sha.c: Include "sha.h" first.
43163         Include <stdlib.h>, <string.h> unconditionally.
43164
43165         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
43166         * lib/memcmp.c (__ptr_t): Likewise.
43167         * lib/memrchr.c (__ptr_t): Likewise.
43168         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
43169         Include <string.h> unconditionally.
43170         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
43171         * lib/memchr.c: Include <stdlib.h> unconditionally.
43172         * lib/memchr.c (LONG_MAX): Remove.
43173         * lib/memrchr.c (LONG_MAX): Likewise.
43174         * lib/memchr.c (__memchr): Define via a prototype.
43175         * lib/memrchr.c (__memrchr): Likewise.
43176         * lib/memcmp.c (__P): Remove, and remove all uses.
43177         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
43178         Remove forward decls; no longer needed.
43179         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
43180         Use types required by C89 in prototype.
43181
43182         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
43183         * lib/savedir.c: Likewise.
43184         * lib/mkdir.c (free): Remove decl.
43185         * lib/rmdir.c (rmdir): Define with a prototype.
43186         * lib/savedir.c: Include savedir.h first, to test interface.
43187
43188         * lib/mktime.c (STDC_HEADERS): Remove.
43189         Include <stdlib.h>, <string.h> unconditionally.
43190
43191         * lib/modechange.c: Include <stdlib.h> unconditionally.
43192         (malloc): Remove decl.
43193
43194         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
43195         (free): Remove decl.
43196
43197         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
43198         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
43199         (This type really should be intptr_t, but that's a C99ism.)
43200         (_obstack_memcpy): Remove: all uses changed to memcpy.
43201         Include <string.h> unconditionally.
43202         (struct obstack): Assume __STDC__ for types of members
43203         chunkfun, freefun, extra_arg.
43204         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
43205         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
43206         obstack_begin, obstack_specify_allocation,
43207         obstack_specify_allocation_with_arg, obstack_chunkfun,
43208         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
43209         Remove unprototyped decls and the macros that use them.
43210         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
43211         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
43212         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
43213         (defined __STDC__ && __STDC__)]:
43214         Remove nonprototyped code.
43215         Include <stdlib.h> unconditionally.
43216         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
43217         _obstack_allocated_p, _obstack_free, obstack_free,
43218         _obstack_memory_used, print_and_abort):
43219         Define using prototypes.
43220         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
43221         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
43222         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
43223         obstack_next_free, obstack_object_size, obstack_room) [0]:
43224         Remove unused, unprototyped code.
43225
43226         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
43227
43228         * lib/physmem.c (physmem_total, physmem_available, main): Define
43229         with prototypes.
43230
43231         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
43232         (main): Define with a prototype.
43233
43234         * lib/posixver.c (getenv): Remove decl.
43235
43236         * lib/putenv.c (malloc): Returns void *, not char *.
43237         Include <string.h> unconditionally.
43238         (strchr, memcpy, NULL): Do not define.
43239
43240         * lib/readtokens.c: Include readtokens.h first, to test interface.
43241         Include <stdlib.h>, <string.h> unconditionally.
43242         (init_tokenbuffer): Define with a prototype.
43243
43244         * lib/regex.c (PARAMS): Remove.  All uses removed.
43245         All uses of _RE_ARGS removed, too.
43246         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
43247         unconditionally.
43248         (bzero): Assume memset exists.
43249         (memcmp, memcpy, NULL): Remove.
43250         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
43251         char, or assignments to local vars of type signed char.
43252         (init_syntax_once, PREFIX(extract_number_and_incr),
43253         PREFIX(print_partial_compiled_pattern),
43254         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
43255         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
43256         PREFIX(regex_grow_registers), PREFIX(regex_compile),
43257         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
43258         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
43259         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
43260         wcs_compile_range, byte_compile_range, truncate_wchar,
43261         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
43262         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
43263         count_mbs_length, wcs_re_match_2_internal,
43264         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
43265         PREFIX(alt_match_null_string_p),
43266         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
43267         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
43268         regfree, PREFIX(extract_number)): Define with prototype.  Remove
43269         now-unnecessary declaration, if any.
43270         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
43271         regcomp, regexec):
43272         Remove now-unnecessary casts among pointer types.
43273         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
43274
43275         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
43276         (free): Remove decl.
43277
43278         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
43279
43280         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
43281         (free): Remove decl.
43282
43283         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
43284         * lib/xgetcwd.c: Likewise.
43285
43286         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
43287         (free): Remove decl.
43288
43289         * lib/strchrnul.c (strchrnul): Define with a prototype.
43290         Fix bug: c_in was not converted to char before searching.
43291
43292         The following changes are not K&R related:
43293
43294         * lib/group-member.h: Include <sys/types.h>, so that this file is
43295         self-contained.
43296         * lib/makepath.h: Likewise.
43297
43298         * lib/getusershell.c (readname, default_index, line_size, readname):
43299         Use size_t, not int, for sizes.
43300         (readname): If the size overflows, report an error instead of
43301         looping forever.
43302
43303 2003-09-09  Paul Eggert  <eggert@twinsun.com>
43304
43305         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
43306         libc.
43307
43308 2003-09-09  Paul Eggert  <eggert@twinsun.com>
43309
43310         * README: New section: portability guidelines.
43311
43312 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
43313
43314         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
43315         C89 spec.
43316
43317 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
43318
43319         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
43320
43321 2003-09-08  Paul Eggert  <eggert@twinsun.com>
43322
43323         Assume C89 or better; remove K&R cruft.
43324         A few of these changes were first proposed by Derek Robert Price
43325         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
43326
43327         * lib/addext.c: Include <string.h> unconditionally.
43328         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
43329         Don't declare getenv or malloc.
43330
43331         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
43332         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
43333         (NULL): Remove.
43334         (find_stack_direction, alloca): Use prototypes.
43335
43336         * lib/atexit.c (atexit): Define using a prototype.
43337
43338         * lib/basename.c, dirname.c, stripslash.c:
43339         Include <string.h> unconditionally.
43340
43341         * lib/bcopy.c: Include <stddef.h>.
43342         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
43343
43344         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
43345
43346         * lib/error.h (error, error_at_line, error_print_progname)
43347         [! (defined (__STDC__) && __STDC__)]: Remove decls.
43348         * lib/error.c: Include error.h first, to check interface.
43349         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
43350         (VA_START): Remove; all uses changeed to va_start.
43351         (exit, strerror): Remove decls.
43352         (error_print_progname): Prototype uncondionally.
43353         Don't include <errno.h>; no longer needed.
43354         (private_strerror): Remove.
43355         (error_tail): Always define.
43356         (error, error_at_line): Assume C89 or better; always use prototypes.
43357         * lib/fatal.c: Include "fatal.h" first, to test interface.
43358         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
43359         (VA_START): Remove; all uses changed to va_start.
43360         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
43361         this case.
43362         (exit): Remove decl.
43363         (fatal): Prototype unconditionally.  Assume va_start works.
43364         Abort at end, to pacify gcc.
43365
43366         * lib/euidaccess.c (main): Define with a prototype.
43367
43368         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
43369
43370         * lib/exitfail.c: Include <stdlib.h> unconditionally.
43371
43372         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
43373         prototypes.
43374         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
43375         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
43376         (getenv): Remove decl.
43377         (fnmatch): Define using a prototype.
43378         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
43379         (FCT): Define using a prototype.
43380
43381         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
43382
43383         * lib/gethostname.c: Include <stddef.h>.
43384         (gethostname): Define with prototype.  Length is size_t, not int.
43385
43386 2003-09-08  Paul Eggert  <eggert@twinsun.com>
43387
43388         Assume C89 or better; remove K&R cruft.
43389         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
43390         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
43391         string.h, getenv, malloc.
43392         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
43393         headers.
43394         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
43395         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
43396         do not check for strerror.
43397         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
43398         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
43399         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
43400         do not check for doprnt or vprintf.
43401         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
43402         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
43403
43404 2003-09-08  Paul Eggert  <eggert@twinsun.com>
43405
43406         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
43407         getversion.c should have been removed then, but was accidentally
43408         preserved.
43409
43410         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
43411         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
43412
43413 2003-09-08  Karl Berry  <karl@gnu.org>
43414
43415         * config/config.sub, config.guess, srclistvars.sh: update from savannah
43416                 config, forget about prep.
43417
43418         * config/depcomp, missing: update from automake.
43419
43420 2003-09-07  Paul Eggert  <eggert@twinsun.com>
43421
43422         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
43423         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
43424
43425 2003-09-07  Paul Eggert  <eggert@twinsun.com>
43426
43427         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
43428         copy_tm_result.  Bug reported by Simon Josefsson in
43429         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
43430
43431 2003-09-06  Paul Eggert  <eggert@twinsun.com>
43432
43433         * m4/time_r.m4: New file.
43434         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
43435         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
43436         is. Check for timegm declaration.
43437         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
43438         Do not check for gmtime_r.
43439         Replace mktime if __mktime_internal does not exist and if mktime
43440         hasn't been replaced already.
43441
43442 2003-09-06  Paul Eggert  <eggert@twinsun.com>
43443
43444         * lib/time_r.c, lib/time_r.h: New files.
43445
43446         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
43447         __localtime_r.
43448         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
43449         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
43450
43451         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
43452         __gmtime_r.
43453         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
43454         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
43455         Include <time_r.h>.
43456
43457         * lib/timegm.c: Switch to glibc implementation, with the following
43458         changes:
43459         [defined HAVE_CONFIG_H]: Include <config.h>.
43460         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
43461         (__mktime_internal) [!defined _LIBC]: New decl.
43462         (__gmtime_r) [!defined _LIBC]: New macro and function.
43463         (timegm): Use a prototype, since gnulib assumes C89.
43464         Do not bother declaring tmp to be const, as it's not really usefu.
43465         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
43466         (timegm): Declare only if HAVE_DECL_TIMEGM.
43467
43468 2003-09-06  Paul Eggert  <eggert@twinsun.com>
43469
43470         * MODULES.html.sh (func_all_modules): Add time_r.
43471         * modules/time_r: New file.
43472         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
43473         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
43474
43475 2003-09-03  Paul Eggert  <eggert@twinsun.com>
43476
43477         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
43478         Bug reported by Lute Kamstra in
43479         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
43480
43481         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
43482         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
43483         course with correspondingly smaller numbers for tomorrow and
43484         yesterday.  From Tadayoshi Funaba.  Originally installed into
43485         sh-utils on 1999-08-07, but the patch got lost (I guess during the
43486         coreutils merge?).
43487
43488 2003-08-31  Simon Josefsson  <jas@extundo.com>
43489
43490         * modules/timegm: New file.
43491         * MODULES.html.sh (func_all_modules): Add timegm.
43492
43493 2003-08-31  Simon Josefsson  <jas@extundo.com>
43494
43495         * m4/timegm.m4: New file.
43496
43497 2003-08-31  Simon Josefsson  <jas@extundo.com>
43498
43499         * lib/timegm.h: New file.
43500         * lib/timegm.c: New file.  Based on
43501         wget-1.8.2/src/http.c:mktime_from_utc.
43502
43503 2003-08-31  Karl Berry  <karl@gnu.org>
43504
43505         * lib/argp.h: update from libc.
43506
43507 2003-08-28  Bruno Haible  <bruno@clisp.org>
43508
43509         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
43510         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
43511         followed by '#define fnmatch fnmatch_posix' gives an error.
43512
43513 2003-08-28  Bruno Haible  <bruno@clisp.org>
43514
43515         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
43516         warning on QNX, which defines O_BINARY to 000000.
43517
43518 2003-08-27  Jim Meyering  <jim@meyering.net>
43519
43520         * m4/mkstemp.m4: Require that the system mkstemp be able to create
43521         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
43522         would fail after 32.  Reported by Danny Levinson.  Details here:
43523         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
43524
43525 2003-08-24  Bruno Haible  <bruno@clisp.org>
43526
43527         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
43528         MSVC7 <stdio.h> is included later.
43529
43530 2003-08-22  Simon Josefsson  <jas@extundo.com>
43531
43532         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
43533
43534 2003-08-20  Karl Berry  <karl@gnu.org>
43535
43536         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
43537
43538 2003-08-20  Bruno Haible  <bruno@clisp.org>
43539
43540         * modules/progname: New file.
43541         * MODULES.html.sh (func_all_modules): Add progname.
43542
43543 2003-08-20  Bruno Haible  <bruno@clisp.org>
43544
43545         * lib/progname.h: New file, from GNU gettext.
43546         * lib/progname.c: New file, from GNU gettext.
43547         * lib/progreloc.c: New file, from GNU gettext.
43548
43549 2003-08-19  Jim Meyering  <jim@meyering.net>
43550
43551         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
43552         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
43553
43554 2003-08-19  Bruno Haible  <bruno@clisp.org>
43555
43556         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
43557         more.
43558
43559 2003-08-19  Bruno Haible  <bruno@clisp.org>
43560
43561         * lib/xstrdup.c: Assume <string.h> exists.
43562
43563 2003-08-18  Paul Eggert  <eggert@twinsun.com>
43564
43565         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
43566         in makefile rules.
43567
43568 2003-08-18  Jim Meyering  <jim@meyering.net>
43569
43570         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
43571         * m4/lib-ld.m4: Likewise.
43572
43573 2003-08-18  Jim Meyering  <jim@meyering.net>
43574
43575         * lib/setenv.h: Indent nested cpp directive.
43576         * lib/vasnprintf.c: Remove trailing blanks.
43577
43578 2003-08-17  Simon Josefsson  <jas@extundo.com>
43579
43580         * modules/xstrndup: New file.
43581         * MODULES.html.sh (func_all_modules): Add xstrndup.
43582
43583 2003-08-17  Simon Josefsson  <jas@extundo.com>
43584
43585         * modules/argp: Fix autoconf macro name. Add more dependencies.
43586
43587 2003-08-17  Simon Josefsson  <jas@extundo.com>
43588
43589         * m4/xstrndup.m4: New file.
43590
43591 2003-08-17  Simon Josefsson  <jas@extundo.com>
43592
43593         * m4/argp.m4: New file.
43594
43595 2003-08-17  Simon Josefsson  <jas@extundo.com>
43596             Bruno Haible  <bruno@clisp.org>
43597
43598         * lib/xstrndup.h: New file.
43599         * lib/xstrndup.c: New file.
43600
43601 2003-08-17  Bruno Haible  <bruno@clisp.org>
43602
43603         * modules/strndup (Files, Include): Add lib/strndup.h.
43604
43605 2003-08-17  Bruno Haible  <bruno@clisp.org>
43606
43607         * modules/euidaccess (Files): Add lib/euidaccess.h.
43608
43609 2003-08-17  Bruno Haible  <bruno@clisp.org>
43610
43611         * lib/strndup.h: New file.
43612
43613 2003-08-17  Bruno Haible  <bruno@clisp.org>
43614
43615         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
43616         like AC_GNU_SOURCE.
43617         * modules/extensions (configure.ac): Comment out the invocation of
43618         gl_USE_SYSTEM_EXTENSIONS.
43619
43620 2003-08-16  Paul Eggert  <eggert@twinsun.com>
43621
43622         Merges from coreutils, etc.
43623         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
43624         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
43625         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
43626         fixing a typo.
43627         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
43628         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
43629
43630 2003-08-16  Paul Eggert  <eggert@twinsun.com>
43631
43632         Document merge from coreutils.
43633         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
43634         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
43635         * modules/utime: Add m4/utimes-null.m4.
43636
43637 2003-08-16  Paul Eggert  <eggert@twinsun.com>
43638
43639         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
43640         space, undoing this 2003-08-12 change:
43641         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
43642
43643 2003-08-16  Paul Eggert  <eggert@twinsun.com>
43644
43645         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
43646         strtoul.c from libc, undoing this 2003-08-12 change:
43647         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
43648
43649 2003-08-16  Jim Meyering  <jim@meyering.net>
43650
43651         Merges from coreutils.
43652         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
43653         prefix.  Adjust cache variables similarly.  Create 500 rather than
43654         just 300 files, to exercise bug on Darwin6.5, too.
43655         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
43656         $missing_dir.
43657         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
43658         AM_SYS_POSIX_TERMIOS.
43659         Reported by mkc@mathdogs.com.
43660         Also change use of $am_cv_sys_posix_termios
43661         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
43662         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
43663         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
43664         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
43665         in /proc/mounts until it finds one with matching device number.  This
43666         is unnecessary when the FILE argument *is* a mount point.  No stat call
43667         is necessary in that case.  So, disable the statvfs-testing code on
43668         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
43669         as RedHat bug# 84846.
43670         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
43671         to 1MB, so as not to render systems with no stack size limit (e.g.,
43672         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
43673         Include <unistd.h>.  On some systems,
43674         it is required for the definition of _SC_PAGESIZE.
43675
43676 2003-08-16  Jim Meyering  <jim@meyering.net>
43677
43678         Merge from coreutils.
43679         * lib/xstrtoimax.c: #else #if -> #elif.
43680         * lib/xstrtoumax.c: Likewise.
43681
43682 2003-08-16  Jim Meyering  <jim@meyering.net>
43683
43684         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
43685         * m4/utimes.m4: Removed.
43686         * m4/utimes-null.m4: Renamed from utimes.m4.
43687
43688         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
43689         to 1MB, so as not to render systems with no stack size limit (e.g.,
43690         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
43691         Include <unistd.h>.  On some systems,
43692         it is required for the definition of _SC_PAGESIZE.
43693
43694 2003-08-16  Jim Meyering  <jim@meyering.net>
43695         and Paul Eggert  <eggert@cs.ucla.edu>
43696
43697         Merges from coreutils, etc.
43698
43699         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
43700         using the latest version from cvs.  This avoids problems with #line
43701         directives using a vendor (Sun) compiler.
43702         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
43703         Don't set GETGROUPS_LIB here; now it's
43704         done via getgroups.m4's wrapper function.
43705         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
43706         rather than just in sh-util/configure.in, so that the
43707         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
43708         same.
43709         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
43710         AC_FUNC_GETLOADAVG where to find getloadavg.c.
43711         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
43712         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
43713         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
43714         Remove code that is now done by the newly-required macros.
43715         Append $(EXEEXT) to DF_PROG.
43716         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
43717         Do not invoke or require the following here,
43718         since prereq.m4 or some gnulib .m4 now does this for us:
43719         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
43720         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
43721         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
43722         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
43723         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
43724         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
43725         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
43726         AC_FUNC_OBSTACK.
43727         Do not replace the following functions, as this is now the job
43728         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
43729         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
43730         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
43731         atexit getpass, strdup, getpagesize.
43732         Replace 'raise'.
43733         Do not check for the following functions, as this is now the job
43734         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
43735         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
43736         setregid.
43737         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
43738         Check for sys/sysctl.h.
43739         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
43740         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
43741         of checking for ssize_t ourselves.
43742
43743         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
43744         Require every macro that gnulib/modules/* suggests for us.
43745         (jm_PREREQ_ADDEXT): New macro.
43746         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
43747         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
43748
43749         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
43750         (gl_PHYSMEM): Use it.
43751         Also check for `table' function.
43752         Check for new headers and functions.
43753         Add check for sys/sysmp.h.
43754         With suggestions from Kaveh Ghazi.
43755         Ignore headers that are present but cannot be compiled.  This
43756         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
43757         C 5.4.
43758
43759 2003-08-15  Paul Eggert  <eggert@twinsun.com>
43760
43761         Document merge from coreutils.
43762         * modules/userspec: Depend on posixver.
43763         * modules/strftime: Depend on tzset.
43764
43765 2003-08-15  Paul Eggert  <eggert@twinsun.com>
43766
43767         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
43768         rather than tab, after '#' in shell-script copyright notices.
43769         Suggested by Bruno Haible.
43770
43771 2003-08-15  Paul Eggert  <eggert@twinsun.com>
43772
43773         * config/srclist-update: Use three spaces, rather than tab, after '#'
43774         in shell-script copyright notices.  Suggested by Bruno Haible.
43775         Remove unnecessary parenthesization in regular expression.
43776
43777 2003-08-15  Jim Meyering  <jim@meyering.net>
43778
43779         Merge from coreutils.
43780         * lib/xgethostname.c: Include <stdlib.h>.
43781         (xghostname): Don't exit for anything other than memory-related
43782         failure; just return NULL.
43783         * lib/userspec.c: Include "posixver.h".
43784         (parse_user_spec): Accept `.' as a separator only
43785         in pre-POSIX-200112 mode.
43786         * lib/strtoimax.c: Use #elif rather than #else #if.
43787         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
43788         Remove function, now that we can rely on a working tzset function.
43789         [!_LIBC]: Ensure that the required autoconf test has been run.
43790         [!defined _NL_CURRENT && HAVE_STRFTIME]:
43791         Use underlying_strftime for %r.
43792         * lib/sha.c: Merge in some clean-up and optimization changes from
43793         glibc.
43794         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
43795         Ensure that it is a multiple of 64.
43796         Rearrange loop exit tests so as to avoid performing an
43797         additional fread after encountering an error or EOF.
43798         * lib/realloc.c: Update copyright date.
43799
43800 2003-08-15  Jim Meyering  <jim@meyering.net>
43801         and Paul Eggert  <eggert@twinsun.com>
43802
43803         Merge from coreutils.
43804         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
43805         member but strut utmpx does not.  Needed for AIX 4.3.3.
43806         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
43807
43808 2003-08-15  Jim Meyering  <jim@meyering.net>
43809         and Paul Eggert  <eggert@cs.ucla.edu>
43810
43811         Merges from coreutils, etc.
43812         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
43813         Require gl_FUNC_TZSET_CLOBBER.
43814         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
43815         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
43816         members.
43817
43818 2003-08-14  Paul Eggert  <eggert@twinsun.com>
43819
43820         Help the merge from coreutils.
43821         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
43822         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
43823         * m4/tzset.m4: Use it too.
43824
43825 2003-08-14  Paul Eggert  <eggert@twinsun.com>
43826
43827         * modules/tzset: New file.
43828
43829 2003-08-14  Jim Meyering  <jim@meyering.net>
43830
43831         Merges from coreutils.
43832         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
43833         variable names, rather than @FNMATCH_H@.
43834         * modules/alloca: Likewise for $(ALLOCA_H).
43835
43836         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
43837         the three copies of the literal target, `fnmatch.h'.
43838         * modules/alloca (alloca.h): Likewise.
43839
43840 2003-08-14  Jim Meyering  <jim@meyering.net>
43841
43842         Merge from coreutils.
43843         * m4/tzset.m4: New file.
43844         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
43845         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
43846         otherwise, AIX 5.1 systems would end up using the latter.
43847         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
43848         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
43849         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
43850         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
43851
43852 2003-08-14  Jim Meyering  <jim@meyering.net>
43853
43854         Merge from coreutils.
43855         * lib/obstack.h: Whitespace changes.
43856         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
43857         and xcalloc return values.
43858         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
43859         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
43860         hang on OSF/1 5.1 for DIR on both local and remote file systems.
43861         Reported by (and fix confirmed by) Nelson H. F. Beebe.
43862         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
43863         error from mntctl.
43864         Use mntctl's return value to drive the entry-processing loop, since
43865         we can't rely on the value of the vmt_length member in the last
43866         entry.  On some systems doing so could result in exhausting
43867         virtual memory.  Based in part on a patch from Mike Jetzer.
43868
43869 2003-08-14  Jim Meyering  <jim@meyering.net>
43870         and Paul Eggert  <eggert@twinsun.com>
43871
43872         Merges from coreutils, plus other fixes.
43873         * lib/physmem.c: Merge in portability changes from gcc/libiberty
43874         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
43875         for credits and details.  Thanks to Kaveh Ghazi for helping
43876         to keep these files in sync.
43877         (ARRAY_SIZE): Define it.
43878         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
43879         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
43880         (memcasecmp): Don't assume size_t fits in unsigned int.
43881         Remove casts and duplicate code.
43882         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
43883         (memcpy): Remove definition.
43884         Merge in some clean-up and optimization changes from glibc.
43885         [BLOCKSIZE]: Move definition to top of file.
43886         Ensure that it is a multiple of 64.
43887         Rearrange loop exit tests so as to avoid performing an
43888         additional fread after encountering an error or EOF.
43889         * lib/md5.h (md5_uintptr): Define.
43890         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
43891         return to the initial working directory.  Preserve errno
43892         for caller.
43893         * lib/idcache.c: Include "xalloc.h".
43894         (xmalloc, xrealloc): Remove decls.
43895         (getuser): Remove casts no longer required in C89.
43896         * lib/human.c: Include stdio.h, for sprintf.
43897         * lib/group-member.c: Include "xalloc.h".
43898         (xmalloc, xrealloc): Remove decls.
43899         (get_group_info): Remove casts no longer required in C89.
43900         * lib/getusershell.c (readname): Remove casts no longer required in
43901         C89.
43902         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
43903         * lib/getline.c: Whitespace fix, from coreutils.
43904
43905 2003-08-13  Paul Eggert  <eggert@twinsun.com>
43906
43907         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
43908         Check for isascii.
43909
43910         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
43911         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
43912         Undo previous (whitespace-only) change.
43913
43914 2003-08-13  Paul Eggert  <eggert@twinsun.com>
43915
43916         * lib/exclude.c: Include <ctype.h>
43917         (IN_CTYPE_DOMAIN): New macro.
43918         (is_space): New fn.
43919         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
43920         and empty lines.
43921
43922         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
43923         Undo previous (whitespace-only) change.
43924
43925 2003-08-13  Paul Eggert  <eggert@twinsun.com>
43926
43927         * config/srclist-update: Change update back to the old behavior,
43928         leaving whitespace alone.  Use one 'sed' command rather than a
43929         pipeline.
43930         (fixlicense): Now a variable, not a function.
43931         (remove_trailing_blanks): Remove.
43932         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
43933         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
43934         Undo previous (whitespace-only) change.
43935
43936 2003-08-12  Paul Eggert  <eggert@twinsun.com>
43937
43938         Merge from coreutils.
43939         * modules/euidaccess: Add lib_SOURCES, include for new
43940         file euidaccess.h
43941
43942 2003-08-12  Paul Eggert  <eggert@twinsun.com>
43943
43944         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
43945         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
43946         Normalize leading white space and remove trailing white space.
43947
43948         Merge from coreutils
43949         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
43950
43951         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
43952         0.12.1.  These files are now being upgraded automatically by
43953         ../config/srclist-update.
43954
43955 2003-08-12  Paul Eggert  <eggert@twinsun.com>
43956
43957         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
43958         Normalize leading white space and remove trailing white space.
43959         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
43960         notice, as per ../config/srclist-update.
43961
43962         Merge from coreutils.
43963         * lib/euidaccess.h: New file.
43964         * lib/euidaccess.c: Include it.
43965         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
43966         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
43967         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
43968
43969 2003-08-12  Paul Eggert  <eggert@twinsun.com>
43970
43971         * config/srclist-update: Add copyright notice.
43972         (remove_id_lines, remove_trailing_blanks): New constants.
43973         (fixfile): Use them to normalize spacing a bit in copied files.
43974         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
43975         Normalize leading white space and remove trailing white space.
43976
43977         * config/texinfo.tex: Sync with texinfo.
43978
43979         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
43980         strtoul.c from libc, to merge coreutils whitespace changes.
43981
43982         * config/srclist.txt: Get the following m4 files from gettext:
43983         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
43984         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
43985         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
43986         wint_t.m4.
43987
43988 2003-08-12  Karl Berry  <karl@gnu.org>
43989
43990         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
43991         been made.
43992
43993 2003-08-11  Paul Eggert  <eggert@twinsun.com>
43994
43995         * modules/gnu-source, m4/gnu-source.m4:
43996         Remove; we're assuming Autoconf 2.54 or later now.
43997         Suggested by Bruno Haible.
43998         * MODULES.html.sh (func_all_modules): Remove gnu-source.
43999
44000 2003-08-11  Bruno Haible  <bruno@clisp.org>
44001
44002         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
44003
44004 2003-08-11  Bruno Haible  <bruno@clisp.org>
44005
44006         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
44007         (vasnprintf): Use it instead of wcslen.
44008
44009 2003-08-11  Bruno Haible  <bruno@clisp.org>
44010
44011         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
44012         value to ensure that _Bool promotes to int. Use #define for _Bool when
44013         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
44014
44015 2003-08-10  Karl Berry  <karl@gnu.org>
44016
44017         * lib/regex.h: update from libc (whitespace fix).
44018
44019 2003-08-09  Paul Eggert  <eggert@twinsun.com>
44020
44021         Merge some files from coreutils.  These changes were
44022         originally made by Jim Meyering.
44023         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
44024         many older Unixes require this.
44025         * lib/alloca.c (alloca): Remove cast to argument of free;
44026         no longer needed in C89.
44027         * lib/alloca_.h, regex.h: Fix white space to match
44028         what GNU indent does.
44029
44030 2003-08-09  Paul Eggert  <eggert@twinsun.com>
44031
44032         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
44033         apparently Emacs's Unicode mode got confused before my 2003-08-05
44034         checkin.
44035
44036 2003-08-08  Paul Eggert  <eggert@twinsun.com>
44037
44038         * m4/extensions.m4: New file.
44039         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
44040         Require gl_USE_SYSTEM_EXTENSIONS.
44041         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
44042         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
44043
44044 2003-08-08  Paul Eggert  <eggert@twinsun.com>
44045
44046         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
44047         * modules/extensions, modules/gnu-source: New files.
44048         * modules/timespec, modules/unlocked-io: Depend on extensions.
44049
44050 2003-08-07  Paul Eggert  <eggert@twinsun.com>
44051
44052         * modules/restrict: New file.
44053         * MODULES.html.sh (func_all_modules): Add restrict.
44054         * modules/regex: Depend on restrict.
44055
44056 2003-08-07  Paul Eggert  <eggert@twinsun.com>
44057
44058         * m4/restrict.m4: New file.
44059         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
44060
44061 2003-08-07  Bruno Haible  <bruno@clisp.org>
44062
44063         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
44064         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
44065
44066 2003-08-07  Bruno Haible  <bruno@clisp.org>
44067
44068         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
44069         makes the module 'getndelim2' compatible with the module 'getline'.
44070
44071 2003-08-05  Paul Eggert  <eggert@twinsun.com>
44072
44073         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
44074         byte with "\201" to avoid glitches when editing that source file
44075         with multi-gnome-terminal.
44076
44077 2003-08-05  Paul Eggert  <eggert@twinsun.com>
44078
44079         * lib/bumpalloc.h: Remove.
44080
44081 2003-08-05  Paul Eggert  <eggert@twinsun.com>
44082
44083         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
44084         * modules/bumpalloc: Remove.
44085
44086 2003-08-04  Paul Eggert  <eggert@twinsun.com>
44087
44088         * lib/getloadavg.c: Change copyright notice and spacing to conform to
44089         GNU coding style.
44090
44091         Merge from coreutils.
44092         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
44093         1. From glibc.
44094         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
44095         from Karl Berry, implemented by Jim Meyering.
44096         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
44097         from Dmitry V. Levin.
44098         Remove anachronistic cast of xrealloc.
44099         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
44100         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
44101         type. Otherwise, it wouldn't compile with at least /bin/cc on
44102         ymp-cray-unicos9.0.2.X.
44103         Combine two mostly-identical uses of alloca into one.
44104         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
44105
44106 2003-08-04  Dave Love  <d.love@dl.ac.uk>
44107
44108         [From Emacs.]
44109
44110         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
44111         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
44112         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
44113         obsolete NLIST_NAME_UNION.
44114         [__GNU__]: Undef BSD and FSCALE.
44115         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
44116
44117 2003-08-03  Paul Eggert  <eggert@twinsun.com>
44118
44119         * lib/stdbool_.h (_Bool): Make it signed char, instead of
44120         an enum type, so that it's guaranteed to promote to int.  See:
44121         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
44122
44123 2003-08-03  Karl Berry  <karl@gnu.org>
44124
44125         * config/depcomp: update from automake.
44126
44127 2003-07-31  Paul Eggert  <eggert@twinsun.com>
44128
44129         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
44130         (strerror): Don't assume that a printable int fits in 14 bytes.
44131
44132 2003-07-31  Bruno Haible  <bruno@clisp.org>
44133
44134         * modules/getpass-gnu: New file.
44135         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
44136
44137 2003-07-31  Bruno Haible  <bruno@clisp.org>
44138
44139         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
44140
44141 2003-07-24  Karl Berry  <karl@gnu.org>
44142
44143         * config/missing: update from automake.
44144
44145 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
44146             Bruno Haible  <bruno@clisp.org>
44147
44148         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
44149         * lib/getline.c (getline, getdelim): Likewise.
44150         Remove _GNU_SOURCE define; now it's defined in config.h through
44151         m4/getline.m4.
44152
44153 2003-07-23  Karl Berry  <karl@gnu.org>
44154
44155         * config/config.sub: update from prep.
44156
44157 2003-07-22  Paul Eggert  <eggert@twinsun.com>
44158
44159         * modules/xalloc (Depends-on): Add exitfail.
44160         * modules/xmemcoll: Likewise.
44161
44162 2003-07-22  Paul Eggert  <eggert@twinsun.com>
44163
44164         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
44165         over-parenthesization in macros.
44166
44167         Sync with coreutils.
44168
44169         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
44170         required by C99.
44171
44172         Use `exit_failure' for xalloc and xmemcoll instead of their own
44173         private exit-failure variables.
44174         * lib/xalloc.h (xalloc_exit_failure): Remove.
44175         * lib/xmalloc.c: Likewise.  Include exitfail.h.
44176         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
44177         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
44178         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
44179         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
44180
44181 2003-07-20  Jim Meyering  <jim@meyering.net>
44182
44183         * modules/closeout (Depends-on): Add exitfail.
44184         Suggestion from Bruno Haible.
44185
44186 2003-07-19  Karl Berry  <karl@gnu.org>
44187
44188         * config/config.sub: update from prep.
44189
44190 2003-07-18  Paul Eggert  <eggert@twinsun.com>
44191
44192         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
44193         Remove.
44194         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
44195         to test that it can stand by itself.  Include "exitfail.h".
44196         Clients should set exit_failure instead.
44197         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
44198
44199 2003-07-18  Bruno Haible  <bruno@clisp.org>
44200
44201         * modules/getndelim2: New file.
44202         * modules/getline: Share files with module getndelim2.
44203         * modules/getnline: Depend on getndelim2 instead of sharing files with
44204         it. Add getnline.c to lib_SOURCES.
44205         * MODULES.html.sh (func_all_modules): Add getndelim2.
44206
44207 2003-07-18  Bruno Haible  <bruno@clisp.org>
44208
44209         * m4/getndelim2.m4: New file.
44210         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
44211         invoke gl_PREREQ_GETNDELIM2.
44212         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
44213         gl_PREREQ_GETNDELIM2.
44214         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
44215         gl_GETNDELIM2.
44216
44217 2003-07-18  Bruno Haible  <bruno@clisp.org>
44218
44219         * lib/getndelim2.h: New file.
44220         * lib/getndelim2.c: Make into a module of its own. Include config.h,
44221         getndelim2.h.
44222         (getndelim2): Make non-static. Change return type to ssize_t.
44223         * lib/getline.h: Change argument names.
44224         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
44225         * lib/getnline.c: Include getndelim2.h.
44226
44227 2003-07-18  Andreas Schwab  <schwab@suse.de>
44228
44229         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
44230
44231 2003-07-17  Karl Berry  <karl@gnu.org>
44232
44233         * config/config.sub: update from prep.
44234
44235 2003-07-17  Bruno Haible  <bruno@clisp.org>
44236
44237         * modules/getnline: New file.
44238         * modules/getline: Add lib/getndelim2.c to source file list.
44239         * MODULES.html.sh (func_all_modules): Add getnline.
44240
44241 2003-07-17  Bruno Haible  <bruno@clisp.org>
44242
44243         * m4/getnline.m4: New file.
44244
44245 2003-07-17  Bruno Haible  <bruno@clisp.org>
44246
44247         * m4/Makefile.am.in: Remove file.
44248         * m4/Makefile.am: Remove file.
44249         * m4/Makefile.in: Remove file.
44250
44251 2003-07-17  Bruno Haible  <bruno@clisp.org>
44252
44253         * lib/getnline.h: New file.
44254         * lib/getnline.c: New file.
44255         * lib/getndelim2.c: New file, extracted from getline.c.
44256         (getndelim2): Renamed from getdelim2, with added nmax argument.
44257         * lib/getline.c: Include getndelim2.c.
44258         (getdelim2): Moved out to getndelim2.c.
44259         (getline, getdelim): Update.
44260
44261 2003-07-17  Bruno Haible  <bruno@clisp.org>
44262
44263         * lib/Makefile.am: Remove file.
44264         * lib/Makefile.in: Remove file.
44265
44266 2003-07-17  Bruno Haible  <bruno@clisp.org>
44267
44268         * configure.in: Remove file.
44269         * Makefile.in: Remove file.
44270
44271 2003-07-17  Bruno Haible  <bruno@clisp.org>
44272
44273         * MODULES.html.sh: Put the </BODY> right before </HTML>.
44274
44275 2003-07-16  Karl Berry  <karl@gnu.org>
44276
44277         * config/srclist-update: was running fixlicense twice, which caused
44278                 texinfo.tex to be nullified for some reason.  Simplify,
44279                 $gplsrc is no longer needed as far as I can see?
44280
44281 2003-07-16  Jim Meyering  <jim@meyering.net>
44282
44283         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
44284
44285 2003-07-15  Paul Eggert  <eggert@twinsun.com>
44286
44287         * config/srclist.txt: Get the following files from gettext-runtime/intl
44288         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
44289         ref-del.sin.  From Bruno Haible.
44290         * config/srclist-update (fixfile): Change grep pattern again, since the
44291         previous fix didn't work (there was another trailing $).  Use
44292         '[$]' to escape the $s.
44293
44294 2003-07-15  Karl Berry  <karl@gnu.org>
44295
44296         * lib/vasnprintf.c: update from gettext.
44297
44298 2003-07-15  Karl Berry  <karl@gnu.org>
44299
44300         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
44301         gets expanded when surrounded by '$'.
44302
44303 2003-07-15  Jim Meyering  <jim@meyering.net>
44304
44305         * modules/save-cwd: Don't depend on error.  From Derek Price.
44306
44307 2003-07-15  Jim Meyering  <jim@meyering.net>
44308
44309         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
44310
44311 2003-07-14  Simon Josefsson  <jas@extundo.com>
44312
44313         * modules/mempcpy: New file.
44314         * MODULES.html.sh (func_all_modules): Add mempcpy.
44315
44316 2003-07-14  Simon Josefsson  <jas@extundo.com>
44317
44318         * m4/mempcpy.m4: New file.
44319
44320 2003-07-14  Simon Josefsson  <jas@extundo.com>
44321
44322         * lib/mempcpy.h: New file.
44323         * lib/mempcpy.c: New file.
44324
44325 2003-07-14  Paul Eggert  <eggert@twinsun.com>
44326
44327         * modules/getdate, modules/posixtm: Depend on mktime.
44328
44329 2003-07-14  Paul Eggert  <eggert@twinsun.com>
44330
44331         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
44332         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
44333         unicodeio.c, unicodeio.h, unlocked-io.h:
44334         Switch from LGPL to GPL.
44335
44336 2003-07-14  Paul Eggert  <eggert@twinsun.com>
44337
44338         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
44339         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
44340         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
44341         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
44342         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
44343         updated automatically by ../config/srclist-update.  This changes
44344         their license from LPGL to GPL.
44345
44346 2003-07-14  Paul Eggert  <eggert@twinsun.com>
44347
44348         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
44349         assumed to refer to the root of the most recent stable gettext version.
44350         * config/srclistvars.sh: Add defaults for eggert.
44351         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
44352         Match "This program" as well as "The program".  This is needed
44353         for gettext.
44354
44355 2003-07-14  Jim Meyering  <jim@meyering.net>
44356
44357         Don't emit diagnostics.  Let callers do that.
44358         * lib/save-cwd.c: Don't include "error.h".
44359         (save_cwd): Don't call error.  Ensure that errno is valid
44360         when returning nonzero.
44361
44362         * lib/save-cwd.h (restore_cwd): Update prototype.
44363         * lib/save-cwd.c (restore_cwd): Remove two parameters.
44364         Simplify.  Don't call error upon failure.  Let callers do that.
44365         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
44366         when auditing is enabled.  But don't bother updating the #if.
44367
44368 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
44369
44370         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
44371         it breaks C++ compilation.
44372         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
44373
44374 2003-07-10  Simon Josefsson  <jas@extundo.com>
44375
44376         * modules/strchrnul (Makefile.am): Add strchrnul.h.
44377
44378 2003-07-10  Jim Meyering  <jim@meyering.net>
44379
44380         * m4/clock_time.m4: Remove trailing blank.
44381         * m4/intmax_t.m4: Likewise.
44382
44383 2003-07-10  Jim Meyering  <jim@meyering.net>
44384
44385         * lib/vasnprintf.c: Remove trailing blanks.
44386         Make cpp indentation consistent.
44387
44388 2003-07-09  Paul Eggert  <eggert@twinsun.com>
44389
44390         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
44391         posixver.c, strftime.c, strnlen.c, strverscmp.c:
44392         Switch from LGPL to GPL.
44393
44394 2003-07-09  Paul Eggert  <eggert@twinsun.com>
44395
44396         * config/srclist.txt: Sort sublists.  Add
44397         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
44398         that differ from gnulib for one reason or another; we'd like this list
44399         to be smaller but for now let's document what we have.
44400
44401 2003-07-08  Paul Eggert  <eggert@twinsun.com>
44402
44403         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
44404         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
44405         and sweeter "eval x=$x".
44406         * config/srclist.txt: Get lib/argp* from glibc.
44407
44408 2003-07-07  Paul Eggert  <eggert@twinsun.com>
44409
44410         * lib/mktime.c: Fix some boundary cases and remove need for floating
44411         point.
44412
44413         Issue a compile-time diagnostic if time_t is floating point, or if
44414         two's complement arithmetic is not in effect, or if arithmetic
44415         right shift does not propagate the sign.  These assumptions were
44416         all in the original code but they weren't checked.
44417
44418         (TIME_T_MIDPOINT, verify): New macros.
44419         (__isleap): Remove; it has integer overflow problems.
44420         (leapyear): New function, without those problems.
44421         (ydhms_tm_diff): Remove; splitting into two parts.
44422         (ydhms_diff): New function, containing the arithmetic part of
44423         the old ydhms_tm_diff function.  Issue a compile-time
44424         diagnostic if we are not using C99 integer division.
44425         Avoid casts when possible.
44426         (guess_time_tm): New function, containing the checking part of
44427         the old ydhms_tm_diff function.  Return the new value, rather than
44428         the difference between it and the old.  Accept a new argument T
44429         so that *T specifies the old value.  Check for overflow in the result.
44430
44431         (__mktime_internal): Use a time_t offset, not a long int offset.
44432         This undoes the 2003-06-04 change, which is no longer needed now
44433         that we have better overflow checking.
44434         (localtime_offset): Likewise.
44435
44436         (__mktime_internal): Avoid harmful overflow on hosts where time_t
44437         and long are 64-bit but int is only 32-bit.
44438         (ydhms_diff): Use long int to store year1 and yday1.
44439         Issue a compile-time diagnostic if long int is not wide enough.
44440
44441         (__mktime_internal): Use long int to store adjusted year and yday.
44442         Use plain C rather than preprocessor commands, if that doesn't
44443         affect efficiency.
44444         Check for overflow (and try to repair) after each probe
44445         rather than checking only at the very end.  This avoids some bugs
44446         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
44447         does not equal GMT offset at maximum time).
44448         Use integer to check for overflow rather than floating point; this
44449         is more portable to non-IEEE hosts, and is a tad faster.
44450         When we detect that we are oscillating between two values,
44451         don't check whether tm_isdst has the requested value, since
44452         we already know the answer.  When tm_isdst has the wrong value,
44453         use a different heuristic to find the right one, based on the
44454         extreme values actually observed in practice in tz2003a,
44455         rather than the (overly optimistic) "previous 3 calendar quarters".
44456
44457         (not_equal_tm, print_tm, check_result): Use "const T" rather than
44458         "T const" to accommodate glibc style.
44459         (check_result): Use less-confusing report format.  "long" -> "long int.
44460         (main): Likewise.
44461         Don't loop if the iteration overflows time_t.
44462         Allow a negative step in the iteration.
44463
44464 2003-07-06  Karl Berry  <karl@gnu.org>
44465
44466         * config/depcomp: update from automake.
44467         * config/config.sub: update from prep.
44468
44469 2003-07-03  Karl Berry  <karl@gnu.org>
44470
44471         * config/config.guess: update from prep.
44472
44473 2003-07-01  Paul Eggert  <eggert@twinsun.com>
44474
44475         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
44476         xreadlink.c now includes it unconditionally.
44477
44478 2003-07-01  Paul Eggert  <eggert@twinsun.com>
44479
44480         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
44481         having it depend on HAVE_SYS_TYPES_H.
44482
44483 2003-07-01  Bruno Haible  <bruno@clisp.org>
44484
44485         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
44486         <sys/types.h> should be sufficient.
44487         Reported by Paul Eggert.
44488
44489 2003-06-26  Karl Berry  <karl@gnu.org>
44490
44491         * config/depcomp: update from automake.
44492
44493 2003-06-26  Bruno Haible  <bruno@clisp.org>
44494
44495         * modules/human: Depend on module stdbool.
44496
44497 2003-06-25  Bruno Haible  <bruno@clisp.org>
44498
44499         * modules/readlink: New file.
44500         * modules/xreadlink: Depend on it.
44501         * MODULES.html.sh (func_all_modules): Add readlink.
44502
44503 2003-06-25  Bruno Haible  <bruno@clisp.org>
44504
44505         * m4/readlink.m4: New file.
44506
44507 2003-06-25  Bruno Haible  <bruno@clisp.org>
44508
44509         * lib/readlink.c: New file.
44510
44511 2003-06-22  Karl Berry  <karl@gnu.org>
44512
44513         * config/srclist.txt: update mkinstalldirs from automake.
44514         * config/mkinstalldirs: update.
44515
44516 2003-06-22  Bruno Haible  <bruno@clisp.org>
44517
44518         Portability to mingw32.
44519         * m4/ssize_t.m4: New file, from GNU gettext.
44520         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
44521         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
44522
44523 2003-06-22  Bruno Haible  <bruno@clisp.org>
44524
44525         * modules/safe-read: Add m4/ssize_t.m4.
44526         * modules/xreadlink: Add m4/ssize_t.m4.
44527
44528 2003-06-20  Bruno Haible  <bruno@clisp.org>
44529
44530         Assume C89, so PARAMS isn't needed.
44531         * lib/unicodeio.h (PARAMS): Remove.
44532         * lib/unicodeio.c: Don't use PARAMS.
44533
44534 2003-06-18  Karl Berry  <karl@gnu.org>
44535
44536         * config/config.{guess,sub}: update from prep.
44537
44538 2003-06-18  Jim Meyering  <jim@meyering.net>
44539
44540         Merge changes from coreutils.
44541         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
44542         Remove explicit declarations of xmalloc and realloc.
44543         Include xalloc.h.
44544         (read_utmp): Remove anachronistic cast of xmalloc.
44545
44546 2003-06-17  Paul Eggert  <eggert@twinsun.com>
44547
44548         Assume C89, so PARAMS isn't needed.
44549         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
44550         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
44551         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
44552         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
44553         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
44554         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
44555         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
44556         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
44557         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
44558         lib/xstrtod.h, lib/xstrtol.h: Likewise.
44559         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
44560         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
44561         no longer needed. Anyway, config.h should always be included before any
44562         other file.
44563
44564 2003-06-11  Simon Josefsson  <jas@extundo.com>
44565
44566         * modules/sysexits: New file.
44567         * MODULES.html.sh (func_all_modules): Add sysexits.
44568
44569 2003-06-11  Simon Josefsson  <jas@extundo.com>
44570
44571         * lib/sysexit_.h: New file.
44572
44573 2003-06-11  Derek Price  <derek@ximbiot.com>
44574
44575         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
44576         necessary.
44577
44578 2003-06-11  Bruno Haible  <bruno@clisp.org>
44579
44580         * m4/sysexits.m4: New file.
44581
44582 2003-06-10  Simon Josefsson  <jas@extundo.com>
44583
44584         * lib/argp.h: New file, from glibc.
44585         * lib/argp-ba.c: New file, from glibc.
44586         * lib/argp-eexst.c: New file, from glibc.
44587         * lib/argp-fmtstream.c: New file, from glibc.
44588         * lib/argp-fmtstream.h: New file, from glibc.
44589         * lib/argp-fs-xinl.c: New file, from glibc.
44590         * lib/argp-help.c: New file, from glibc.
44591         * lib/argp-namefrob.h: New file, from glibc.
44592         * lib/argp-parse.c: New file, from glibc.
44593         * lib/argp-pv.c: New file, from glibc.
44594         * lib/argp-pvh.c: New file, from glibc.
44595         * lib/argp-xinl.c: New file, from glibc.
44596
44597 2003-06-10  Simon Josefsson  <jas@extundo.com>
44598
44599         * modules/strchrnul: New file.
44600
44601 2003-06-10  Simon Josefsson  <jas@extundo.com>
44602
44603         * modules/argp: New file.
44604
44605 2003-06-10  Simon Josefsson  <jas@extundo.com>
44606
44607         * m4/strchrnul.m4: New file.
44608
44609 2003-06-10  Simon Josefsson  <jas@extundo.com>
44610
44611         * lib/strchrnul.h: New file.
44612         * lib/strchrnul.c: New file.
44613
44614 2003-06-10  Bruno Haible  <bruno@clisp.org>
44615
44616         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
44617
44618 2003-06-07  Karl Berry  <karl@gnu.org>
44619
44620         * config/config.{guess,sub}: update from prep.
44621
44622 2003-06-07  Jim Meyering  <jim@meyering.net>
44623
44624         * modules/strtod: Use $(...) notation, not @...@ for
44625         AC_REPLACE'd variables.
44626         * modules/localcharset: Likewise.
44627
44628 2003-06-07  Jim Meyering  <jim@meyering.net>
44629
44630         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
44631         in place of my name in the copyright comment.
44632         Remove definition and uses of __P.
44633
44634         From coreutils.
44635         * lib/stat.c: Don't declare xmalloc explicitly.
44636         Instead, include "xalloc.h".
44637         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
44638         xrealloc, and xcalloc return values.
44639         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
44640         Improve comment.
44641         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
44642
44643 2003-06-07  Bruno Haible  <bruno@clisp.org>
44644
44645         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
44646         avoid AC_CONFIG_LINKS.
44647         * modules/fnmatch (Makefile.am): Use explicit creation rule for
44648         fnmatch.h, to avoid AC_CONFIG_LINKS.
44649         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
44650
44651 2003-06-07  Bruno Haible  <bruno@clisp.org>
44652
44653         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
44654         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
44655         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
44656         directory.
44657         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
44658         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
44659         directory.
44660
44661 2003-06-06  Jim Meyering  <jim@meyering.net>
44662
44663         Merge from coreutils.
44664         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
44665         Consolidate declarations and initializations of *_base* locals.
44666
44667         Merge from coreutils.
44668         This avoids a core dump on systems without GNU putenv,
44669         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
44670         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
44671         (unsetenv): New static function, from GNU libc.
44672         (rpl_putenv): Use it.
44673
44674         * lib/modechange.c: Remove trailing blanks.
44675
44676         Merge from coreutils.
44677         * lib/fsusage.c: Remove declaration of statfs.
44678         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
44679
44680         * lib/posixtm.c: Include <stdbool.h> unconditionally.
44681
44682 2003-06-06  Jim Meyering  <jim@meyering.net>
44683
44684         * lib/stdbool_.h: Renamed from stdbool.h.in.
44685
44686 2003-06-06  Jim Meyering  <jim@meyering.net>
44687             Bruno Haible  <bruno@clisp.org>
44688
44689         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
44690         Adjust Makefile.am snippet not to redirect directly to target.
44691         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
44692
44693 2003-06-05  Paul Eggert  <eggert@twinsun.com>
44694
44695         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
44696         mismatch, look in future quarters as well as past.  This fixes a
44697         bug when processing fall-backwards gaps immediately after a long
44698         period of daylight-saving time.
44699
44700         * lib/mktime.c: Assume freestanding C89 or better.
44701         (HAVE_LIMITS_H): Remove.  Assume it's 1.
44702         (__P): Remove; not used.
44703         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
44704         (mktime, not_equal_tm, print_tm, check_result,
44705         main): Use prototypes.  Use const * where appropriate.
44706         (main): Fix typo in testing code that uncovered by above changes.
44707         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
44708
44709 2003-06-04  Paul Eggert  <eggert@twinsun.com>
44710
44711         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
44712         locale.h, localeconv.  This merges changes from coreutils.
44713
44714         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
44715         It can be removed after the next Autoconf is released.
44716         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
44717         needed.
44718
44719 2003-06-04  Paul Eggert  <eggert@twinsun.com>
44720
44721         * lib/mktime.c: Fix Debian bug 177940
44722         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
44723         (localtime_offset): Now long int, not time_t, because we want it
44724         to be guaranteed to be signed.  All uses changed.
44725         (__mktime_internal): If overflow would occur when adding offset,
44726         don't add it.
44727
44728         Merge 'human' changes from coreutils.  Rewrite to support
44729         locale-specific notations like thousands separators.
44730         * lib/human.c: Simplify authorship notice.
44731         Include human.h immediately after config.h.
44732         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
44733         <limits.h>: Do not include, since human.h does.
44734         (SIZE_MAX, UINTMAX_MAX): New macros.
44735         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
44736         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
44737         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
44738         (power_letter): Renamed from suffixes.
44739         (generate_suffix_backwards): Remove.
44740         (adjust_value): Now takes int style (because of human.h changes)
44741         and long double value (for greater precision on some platforms).
44742         (group_number): New function.
44743         (human_readable): Use it.  Use integer options, not enum.
44744         Put the options before the sizes in the arg list.
44745         Support all the new options.
44746         The old human_readable function has been removed;
44747         use inttostr.h instead.
44748         (human_readable, default_block_size, humblock):
44749         Use uintmax_t, not int, for block sizes.
44750         (human_readable_inexact, block_size_types): Remove.
44751         (block_size_opts): New constant.
44752         (human_options): Renamed from human_block_size, with new signature
44753         that allows block sizes up to UINTMAX_MAX.  All callers changed.
44754         * lib/human.h: Add copyright and authorship notice.
44755         Include <limits.h> and <stdbool.h> unconditionally.
44756         (PARAMS): Remove.  All uses removed.
44757         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
44758         (enum human_inexact_style): Remove tag; now a nameless enum.
44759         (human_floor, human_ceiling, human_round_to_even): Now have
44760         values 2, 0, 1 rather than -1, 1, 0.
44761         (human_group_digits, human_suppress_point_zero, human_autoscale,
44762         human_base_1024, human_SI, human_B): New constants.
44763         (human_readable_inexact, human_block_size): Remove.
44764         (human_readable): Size args are now uintmax_t, not int.
44765         (human_options): New decl.
44766
44767         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
44768         unnecessary now that we assume C89 or better.  This change
44769         imported from coreutils.
44770
44771         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
44772         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
44773         in the 2003-05-30 sync from glibc.
44774
44775         .h files should stand alone, but we shouldn't include <sys/types.h>
44776         if we can get away with just <stddef.h>.
44777
44778         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
44779         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
44780         rather than <sys/types.h>, as we merely need size_t.
44781         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
44782         to get size_t.
44783         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
44784         Include <stdio.h>, to get FILE.
44785         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
44786         memcasecmp.h has included <stddef.h> and all we need is size_t.
44787         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
44788         our interface, instead of including <sys/types.h>
44789
44790 2003-06-04  Paul Eggert  <eggert@twinsun.com>
44791
44792         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
44793         now, as glibc mktime is buggy on non-glibc systems.
44794
44795 2003-06-03  Karl Berry  <karl@gnu.org>
44796
44797         * config/config.sub: update from prep.
44798
44799 2003-06-02  Paul Eggert  <eggert@twinsun.com>
44800
44801         [from coreutils]
44802         Fix some minor time-related bugs with POSIX time arguments.
44803         Some valid time stamps were being rejected (notably -1, and
44804         time stamps before 1900 on 64-bit hosts).  And some invalid
44805         time stamps were being accepted, e.g. September 31.
44806
44807         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
44808         that we can return (time_t) -1 successfully.
44809         * lib/posixtm.c: Likewise.
44810         [HAVE_STDBOOL_H]: Include <stdbool.h>.
44811         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
44812         (t): Remove static var.
44813         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
44814         of static var.  All uses changed.
44815         (year): Do not reject years before 1900; they can occur with
44816         64-bit time_t.
44817         (posix_time_parse): Do not check for out-of-range components;
44818         that is now the caller's responsibility, since our checks were
44819         only approximations.
44820         (posixtime): Use mktime to check for out-of-range components,
44821         since it knows them exactly.
44822         If mktime returns (time_t) -1, check whether an error actually occurred
44823         by invoking localtime on -1.
44824         (main) [TEST_POSIXTIME]: Check for input data errors, and report
44825         posixtime failures better.
44826         Improve the test data (in comments only).
44827
44828 2003-06-02  Karl Berry  <karl@gnu.org>
44829
44830         * config/mkinstalldirs (version): new variable.
44831         (--version): new option.
44832         (usage): improve message.
44833
44834 2003-05-30  Karl Berry  <karl@gnu.org>
44835
44836         * lib/mktime.c: update from libc.
44837
44838 2003-05-30  Bruno Haible  <bruno@clisp.org>
44839
44840         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
44841         * config/config.rpath: Upgrade to gettext-0.12.1.
44842
44843 2003-05-30  Bruno Haible  <bruno@clisp.org>
44844
44845         * m4/gettext.m4: Upgrade to gettext-0.12.1.
44846         * m4/nls.m4: New file, from gettext-0.12.1.
44847         * m4/po.m4: New file, from gettext-0.12.1.
44848         * m4/progtest.m4: Upgrade to gettext-0.12.1.
44849
44850 2003-05-30  Bruno Haible  <bruno@clisp.org>
44851
44852         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
44853         * lib/localcharset.h: Likewise.
44854         * lib/localcharset.c: Likewise.
44855
44856 2003-05-29  Karl Berry  <karl@gnu.org>
44857
44858         * config/config.rpath: update from gettext.
44859
44860 2003-05-28  Paul Eggert  <eggert@twinsun.com>
44861
44862         Assume the headers required for C89 freestanding compilers.
44863         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
44864         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
44865         * m4/human.m4 (gl_HUMAN): Likewise.
44866         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
44867         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
44868         * m4/userspec.m4 (gl_USERSPEC): Likewise.
44869         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
44870         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
44871         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
44872
44873 2003-05-28  Paul Eggert  <eggert@twinsun.com>
44874
44875         Assume the headers required for C89 freestanding compilers.
44876         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
44877         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
44878         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
44879         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
44880         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
44881         define, since <limits.h> is guaranteed to do that.
44882         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
44883         * lib/exclude.c: Include <stdbool.h> unconditionally.
44884         * lib/tempname.c: Include <stddef.h> unconditionally.
44885         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
44886         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
44887         <stddef.h> does that.
44888         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
44889         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
44890         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
44891         needed.
44892         * lib/xstrtol.c: Likewise.
44893         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
44894         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
44895
44896         * lib/addext.c (addext): Use assignment rather than cast, to avoid
44897         warnings on some platforms.
44898
44899         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
44900         arbitrarily.
44901
44902 2003-05-26  Jim Meyering  <jim@meyering.net>
44903
44904         Merge in a change from coreutils:
44905         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
44906         that is guaranteed to be `no'.  Use `no_such_member' to indicate
44907         that condition, rather than `-1' which is slightly misleading.
44908         Change the name of the cache variable to have the gl_ prefix.
44909         Prompted by a patch from Richard Dawe for DJGPP.
44910
44911 2003-05-24  Karl Berry  <karl@gnu.org>
44912
44913         * config/config.guess: update from prep.
44914
44915 2003-05-22  Karl Berry  <karl@gnu.org>
44916
44917         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
44918
44919 2003-05-20  Karl Berry  <karl@gnu.org>
44920
44921         * config/config.guess: update from prep.
44922
44923 2003-05-18  Karl Berry  <karl@gnu.org>
44924
44925         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
44926         might actually be set by the user.
44927
44928         * config/depcomp, install-sh, mdate-sh: update from automake.
44929
44930 2003-05-17  Bruno Haible  <bruno@clisp.org>
44931
44932         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
44933         invalid expansion for AC_EGREP_CPP.
44934         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
44935         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
44936         Suggested by Akim Demaille <akim@epita.fr> in
44937         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
44938
44939 2003-05-12  Jim Meyering  <jim@meyering.net>
44940
44941         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
44942         the space-padded-by-default conversion specifiers, %e, %k, %l.
44943
44944 2003-05-12  Bruno Haible  <bruno@clisp.org>
44945
44946         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
44947         the string is longer than 4 KB.
44948
44949 2003-05-11  Karl Berry  <karl@gnu.org>
44950
44951         * config/config.{guess,sub}: update from prep.
44952
44953 2003-05-09  Bruno Haible  <bruno@clisp.org>
44954
44955         * modules/error: Add m4/strerror_r.m4 to file list.
44956
44957 2003-05-03  Bruno Haible  <bruno@clisp.org>
44958
44959         Upgrade to Unicode-4.0.
44960         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
44961         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
44962         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
44963         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
44964         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
44965         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
44966         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
44967         Change width of U+E0100..U+E01EF from 1 to 0.
44968
44969 2003-04-25  Jim Meyering  <jim@meyering.net>
44970
44971         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
44972         of type size_t, not int.
44973
44974 2003-04-25  Bruno Haible  <bruno@clisp.org>
44975
44976         * lib/copy-file.c: Include <stddef.h>, for size_t.
44977
44978 2003-04-21  Paul Eggert  <eggert@twinsun.com>
44979
44980         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
44981         code which expansion is under static control.  Patch imported from
44982         Akim Demaille's patch to Bison; see
44983         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
44984
44985 2003-04-14  Bruno Haible  <bruno@clisp.org>
44986
44987         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
44988
44989 2003-04-11  Jim Meyering  <jim@meyering.net>
44990
44991         Merge changes from Coreutils.
44992
44993         2003-03-22  Jim Meyering  <jim@meyering.net>
44994
44995         * lib/strftime.c (widen): Cast alloca return value to proper type.
44996
44997         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
44998
44999         From GNU libc.
45000         * lib/strftime.c (my_strftime): Handle very large width
45001         specifications for numeric values correctly.  Improve checks for
45002         overflow.
45003
45004         2003-01-19  Jim Meyering  <jim@meyering.net>
45005
45006         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
45007         definitions.
45008         (nl_get_alt_digit) [! defined my_strftime]: Define.
45009         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
45010         _nl_get_alt_digit and _nl_get_walt_digit.
45011
45012         * lib/strftime.c (my_strftime): Merge in locale-related changes from
45013         libc. These changes have no effect outside of _LIBC.
45014
45015 2003-04-10  Bruno Haible  <bruno@clisp.org>
45016
45017         * modules/findprog: New file.
45018         * MODULES.html.sh (func_all_modules): Add it.
45019
45020 2003-04-10  Bruno Haible  <bruno@clisp.org>
45021
45022         * m4/findprog.m4: New file.
45023         * m4/eaccess.m4: New file.
45024
45025 2003-04-10  Bruno Haible  <bruno@clisp.org>
45026
45027         * lib/findprog.h: New file, from GNU gettext.
45028         * lib/findprog.c: New file, from GNU gettext.
45029
45030 2003-04-05  Jim Meyering  <jim@meyering.net>
45031
45032         Merge changes from Coreutils.
45033
45034         * lib/exclude.h (PARAMS): Remove definition and uses.
45035         * lib/exclude.c: Remove uses of `PARAMS'.
45036
45037         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
45038         Add test-cases for DOS filenames. Declare program_name.
45039         (main): Set up program_name.  Patch by Rich Dawe.
45040
45041         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
45042         error from mntctl.
45043         Use mntctl's return value to drive the entry-processing loop, since
45044         we can't rely on the value of the vmt_length member in the last
45045         entry.  On some systems doing so could result in exhausting
45046         virtual memory.  Based in part on a patch from Mike Jetzer.
45047
45048 2003-04-04  Bruno Haible  <bruno@clisp.org>
45049
45050         * modules/linebreak: New file.
45051         * MODULES.html.sh (func_all_modules): Add it.
45052
45053 2003-04-04  Bruno Haible  <bruno@clisp.org>
45054
45055         * m4/linebreak.m4: New file.
45056
45057 2003-04-04  Bruno Haible  <bruno@clisp.org>
45058
45059         * lib/linebreak.h: New file, from GNU gettext.
45060         * lib/linebreak.c: New file, from GNU gettext with slight
45061         modifications.
45062         * lib/lbrkprop.h: New file, from GNU gettext.
45063
45064 2003-04-03  Bruno Haible  <bruno@clisp.org>
45065
45066         * modules/utf8-ucs4: New file.
45067         * modules/utf16-ucs4: New file.
45068         * modules/ucs4-utf8: New file.
45069         * modules/ucs4-utf16: New file.
45070         * MODULES.html.sh (func_all_modules): Add them.
45071
45072 2003-04-03  Bruno Haible  <bruno@clisp.org>
45073
45074         * m4/utf-ucs4.m4: New file.
45075         * m4/ucs4-utf.m4: New file.
45076
45077 2003-04-03  Bruno Haible  <bruno@clisp.org>
45078
45079         * lib/utf8-ucs4.h: New file, from GNU gettext.
45080         * lib/utf16-ucs4.h: New file, from GNU gettext.
45081         * lib/ucs4-utf8.h: New file, from GNU gettext.
45082         * lib/ucs4-utf16.h: New file, from GNU gettext.
45083
45084 2003-04-02  Bruno Haible  <bruno@clisp.org>
45085
45086         * modules/binary-io: New file.
45087         * MODULES.html.sh (func_all_modules): Add it.
45088
45089 2003-04-02  Bruno Haible  <bruno@clisp.org>
45090
45091         * lib/binary-io.h: New file, from GNU gettext.
45092
45093 2003-04-01  Bruno Haible  <bruno@clisp.org>
45094
45095         * modules/pathname: New file.
45096         * MODULES.html.sh (func_all_modules): Add it.
45097
45098 2003-04-01  Bruno Haible  <bruno@clisp.org>
45099
45100         * lib/pathname.h: New file, from GNU gettext.
45101         * lib/concatpath.c: New file, from GNU gettext.
45102
45103 2003-03-30  Bruno Haible  <bruno@clisp.org>
45104
45105         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
45106
45107 2003-03-30  Bruno Haible  <bruno@clisp.org>
45108
45109         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
45110         function chown() doesn't exist.
45111
45112 2003-03-28  Bruno Haible  <bruno@clisp.org>
45113
45114         * modules/copy-file: New file.
45115         * MODULES.html.sh (func_all_modules): Add it.
45116
45117 2003-03-28  Bruno Haible  <bruno@clisp.org>
45118
45119         * m4/copy-file.m4: New file.
45120
45121 2003-03-28  Bruno Haible  <bruno@clisp.org>
45122
45123         * lib/copy-file.h: New file, from GNU gettext.
45124         * lib/copy-file.c: New file, from GNU gettext.
45125
45126 2003-03-18  Jim Meyering  <jim@meyering.net>
45127
45128         * lib/quote.c (quote_n): Fix typo in comment.
45129
45130 2003-03-18  Bruno Haible  <bruno@clisp.org>
45131
45132         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
45133         checking.
45134         * m4/onceonly_2_57.m4: Likewise.
45135
45136 2003-03-17  Bruno Haible  <bruno@clisp.org>
45137
45138         * m4/onceonly.m4: Require autoconf 2.54 or newer.
45139         (m4_quote): Remove macro.
45140         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
45141
45142 2003-03-14  Jim Meyering  <jim@meyering.net>
45143
45144         Merge changes from Coreutils.
45145         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
45146         to be const, in order to avoid warnings.
45147         (obstack_room): Likewise.
45148         (obstack_empty_p): Likewise.
45149
45150 2003-03-14  Bruno Haible  <bruno@clisp.org>
45151
45152         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
45153         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
45154
45155 2003-03-13  Paul Eggert  <eggert@twinsun.com>
45156
45157         Merge changes from Bison.
45158         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
45159         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
45160         when compiling Bison 1.875's `bitset bset = obstack_alloc
45161         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
45162         * lib/hash.c: Include <stdbool.h> unconditionally.
45163
45164 2003-03-13  Paul Eggert  <eggert@twinsun.com>
45165
45166         * m4/onceonly.m4 (m4_quote): New macro.
45167         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
45168         Quote AC_FOREACH variable-expansions properly.
45169
45170 2003-03-13  Paul Eggert  <eggert@twinsun.com>
45171
45172         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
45173
45174 2003-03-09  Paul Eggert  <eggert@twinsun.com>
45175
45176         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
45177         Reported by Bruce Becker; see:
45178         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
45179
45180 2003-03-03  Paul Eggert  <eggert@twinsun.com>
45181             Bruno Haible  <bruno@clisp.org>
45182
45183         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
45184         Reported by John Hughes, see
45185         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
45186
45187 2003-02-20  Bruno Haible  <bruno@clisp.org>
45188
45189         * MODULES.html.sh (func_all_modules): Add poll.
45190
45191 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
45192
45193         * modules/poll: New file.
45194
45195 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
45196
45197         * lib/poll_.h: New file.
45198         * lib/poll.c: New file.
45199
45200 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
45201
45202         * m4/poll.m4: New file.
45203
45204 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
45205
45206         * modules/mathl: New file.
45207
45208 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
45209
45210         * lib/mathl.h: New file.
45211         * lib/acosl.c: New file.
45212         * lib/asinl.c: New file.
45213         * lib/atanl.c: New file.
45214         * lib/ceill.c: New file.
45215         * lib/cosl.c: New file.
45216         * lib/expl.c: New file.
45217         * lib/floorl.c: New file.
45218         * lib/frexpl.c: New file.
45219         * lib/ldexpl.c: New file.
45220         * lib/logl.c: New file.
45221         * lib/sincosl.c: New file.
45222         * lib/sinl.c: New file.
45223         * lib/sqrtl.c: New file.
45224         * lib/tanl.c: New file.
45225         * lib/trigl.c: New file.
45226         * lib/trigl.h: New file.
45227
45228 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
45229
45230         * m4/mathl.m4: New file.
45231
45232 2003-02-18  Bruno Haible  <bruno@clisp.org>
45233
45234         * MODULES.html.sh (func_all_modules): Add mathl.
45235
45236 2003-02-17  Bruno Haible  <bruno@clisp.org>
45237
45238         * modules/mkdtemp: New module.
45239         * MODULES.html.sh (func_all_modules): Add it.
45240
45241 2003-02-17  Bruno Haible  <bruno@clisp.org>
45242
45243         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
45244
45245 2003-02-17  Bruno Haible  <bruno@clisp.org>
45246
45247         * lib/mkdtemp.h: New file, from GNU gettext.
45248         * lib/mkdtemp.c: New file, from GNU gettext.
45249
45250 2003-02-02  Jim Meyering  <jim@meyering.net>
45251
45252         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
45253         e.g. glibc-2.2.93.
45254
45255 2003-01-31  Bruno Haible  <bruno@clisp.org>
45256
45257         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
45258         'rpl_rename'.
45259         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
45260         'rpl_strnlen'.
45261         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
45262         'rpl_strtod'.
45263         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
45264         'rpl_utime'.
45265
45266 2003-01-31  Bruno Haible  <bruno@clisp.org>
45267
45268         * lib/rename.c: #undef rename before defining rpl_rename.
45269         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
45270
45271 2003-01-30  Bruno Haible  <bruno@clisp.org>
45272
45273         * modules/vasnprintf, modules/vasprintf: New modules.
45274         * MODULES.html.sh (func_all_modules): Add them.
45275
45276 2003-01-30  Bruno Haible  <bruno@clisp.org>
45277
45278         * m4/signed.m4: New file, from GNU gettext.
45279         * m4/longdouble.m4: New file, from GNU gettext.
45280         * m4/wchar_t.m4: New file, from GNU gettext.
45281         * m4/wint_t.m4: New file, from GNU gettext.
45282         * m4/vasnprintf.m4: New file.
45283         * m4/vasprintf.m4: New file.
45284
45285 2003-01-30  Bruno Haible  <bruno@clisp.org>
45286
45287         * lib/printf-args.h: New file, from GNU gettext.
45288         * lib/printf-args.c: New file, from GNU gettext.
45289         * lib/printf-parse.h: New file, from GNU gettext.
45290         * lib/printf-parse.c: New file, from GNU gettext.
45291         * lib/vasnprintf.h: New file, from GNU gettext.
45292         * lib/vasnprintf.c: New file, from GNU gettext.
45293         * lib/asnprintf.c: New file, from GNU gettext.
45294         * lib/vasprintf.h: New file, from GNU gettext with modifications.
45295         * lib/vasprintf.c: New file, from GNU gettext.
45296         * lib/asprintf.c: New file, from GNU gettext.
45297
45298 2003-01-29  Bruno Haible  <bruno@clisp.org>
45299
45300         * modules/stpncpy: New module.
45301         * MODULES.html.sh (func_all_modules): Add it.
45302
45303 2003-01-29  Bruno Haible  <bruno@clisp.org>
45304
45305         * m4/stpncpy.m4: New file.
45306
45307 2003-01-29  Bruno Haible  <bruno@clisp.org>
45308
45309         * lib/stpncpy.h: New file, from GNU gettext with modifications.
45310         * lib/stpncpy.c: New file, from GNU gettext with modifications.
45311
45312 2003-01-28  Bruno Haible  <bruno@clisp.org>
45313
45314         * modules/c-ctype: New module.
45315         * MODULES.html.sh (func_all_modules): Add it.
45316
45317 2003-01-28  Bruno Haible  <bruno@clisp.org>
45318
45319         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
45320         Paul Eggert.
45321         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
45322         Paul Eggert.
45323
45324 2003-01-27  Bruno Haible  <bruno@clisp.org>
45325
45326         * modules/xsetenv: New module.
45327         * MODULES.html.sh (func_all_modules): Add it.
45328
45329 2003-01-27  Bruno Haible  <bruno@clisp.org>
45330
45331         * lib/xsetenv.h: New file, from GNU gettext.
45332         * lib/xsetenv.c: New file, from GNU gettext.
45333
45334 2003-01-23  Jim Meyering  <jim@meyering.net>
45335
45336         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
45337         from working on systems without dirfd (at least Irix and OSF1/Tru64).
45338
45339 2003-01-23  Bruno Haible  <bruno@clisp.org>
45340
45341         * modules/minmax: New module.
45342         * MODULES.html.sh (func_all_modules): Add it.
45343
45344 2003-01-23  Bruno Haible  <bruno@clisp.org>
45345
45346         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
45347         Eggert.
45348
45349 2003-01-22  Bruno Haible  <bruno@clisp.org>
45350
45351         * modules/exit: New module.
45352         * MODULES.html.sh (func_all_modules): Add it.
45353
45354 2003-01-22  Bruno Haible  <bruno@clisp.org>
45355
45356         * lib/exit.h: New file, from GNU gettext.
45357
45358 2003-01-19  Bruno Haible  <bruno@clisp.org>
45359
45360         * gnulib-tool: Recognize option --extract-maintainer.
45361         (func_get_maintainer): New function.
45362         * modules/*: Add Maintainer entry.
45363
45364 2003-01-16  Jim Meyering  <jim@meyering.net>
45365
45366         * m4/regex.m4: The `regex' struct is both input and output.
45367         Initialize it before each use.  Patch by Tim Waugh.
45368
45369 2003-01-16  Bruno Haible  <bruno@clisp.org>
45370
45371         * MODULES.html.sh: Add a table of contents. Add the module name as
45372         leftmost column. Add hyperlinks.
45373
45374 2003-01-15  Bruno Haible  <bruno@clisp.org>
45375
45376         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
45377
45378 2003-01-15  Bruno Haible  <bruno@clisp.org>
45379
45380         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
45381         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
45382         suffix.
45383
45384 2003-01-15  Bruno Haible  <bruno@clisp.org>
45385
45386         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
45387
45388 2003-01-15  Bruno Haible  <bruno@clisp.org>
45389
45390         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
45391         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
45392
45393 2003-01-14  Jim Meyering  <jim@meyering.net>
45394
45395         * lib/same.c (same_name): Tweak a comment.
45396
45397 2003-01-14  Bruno Haible  <bruno@clisp.org>
45398
45399         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
45400         when a string comparison is sufficient.
45401
45402 2003-01-14  Bruno Haible  <bruno@clisp.org>
45403
45404         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
45405         'unsigned int'.
45406
45407 2003-01-14  Bruno Haible  <bruno@clisp.org>
45408
45409         * lib/hash-pjw.c: Add comment about low quality of this function.
45410
45411 2003-01-13  Bruno Haible  <bruno@clisp.org>
45412
45413         * modules/stpcpy: Distribute lib/stpcpy.h.
45414         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
45415
45416 2003-01-13  Bruno Haible  <bruno@clisp.org>
45417
45418         * modules/*: Add a description.
45419         * modules/strpbrk: Fix Makefile.am snippet.
45420         * modules/strtoimax: Fix dependencies.
45421         * modules/strtoumax: Likewise.
45422
45423 2003-01-13  Bruno Haible  <bruno@clisp.org>
45424
45425         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
45426         * modules/alloca (Makefile.am): All object files depend on alloca.h.
45427         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
45428
45429 2003-01-13  Bruno Haible  <bruno@clisp.org>
45430
45431         * gnulib-tool (func_create_testdir): Store config/* files in the main
45432         directory.
45433         * config.rpath: Move to ...
45434         * config/config.rpath: ... here.
45435         * modules/gettext: Contains config/config.rpath, not config.rpath.
45436         * modules/iconv: Likewise.
45437
45438 2003-01-12  Paul Eggert  <eggert@twinsun.com>
45439
45440         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
45441         to avoid collisions with libcurses and libreadline.
45442
45443         * m4/getstr.m4: Remove.
45444         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
45445
45446 2003-01-12  Paul Eggert  <eggert@twinsun.com>
45447
45448         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
45449         to avoid collisions with libcurses and libreadline.
45450
45451         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
45452         * lib/getstr.h, getstr.c: Remove.
45453         * lib/getline.c: Include "getline.h", to check interface.
45454         Move body of old getstr.c here: this defines MIN_CHUNK and
45455         declares getdelim2, which is renamed from getstr.
45456         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
45457
45458         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
45459         All uses changed.
45460         * lib/linebuffer.h: Likewise.
45461         (readline): Remove backward-compatibility macro.
45462
45463 2003-01-12  Paul Eggert  <eggert@twinsun.com>
45464
45465         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
45466         to avoid collisions with libcurses and libreadline.
45467         * getstr: Remove.
45468         * MODULES.html.sh: Remove getstr.
45469         * modules/getline: Depend on unlocked-io, not getstr.
45470
45471 2003-01-12  Jim Meyering  <jim@meyering.net>
45472
45473         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
45474
45475 2003-01-10  Bruno Haible  <bruno@clisp.org>
45476
45477         * modules/alloca: Change Makefile.am requirements. Simplify Include
45478         requirements. Add lib/alloca_.h to file list.
45479
45480 2003-01-10  Bruno Haible  <bruno@clisp.org>
45481
45482         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
45483
45484 2003-01-10  Bruno Haible  <bruno@clisp.org>
45485
45486         * lib/alloca_.h: New file.
45487         * lib/getdate.y: Unconditionally include alloca.h.
45488         * lib/makepath.c: Likewise.
45489         * lib/setenv.c: Likewise.
45490         * lib/userspec.c: Likewise.
45491
45492 2003-01-09  Karl Berry  <karl@gnu.org>
45493
45494         * MODULES.html.sh: include `dirname $0` in PATH, to find
45495         gnulib-tool.
45496
45497 2003-01-09  Bruno Haible  <bruno@clisp.org>
45498
45499         * modules/stdbool: Change configure.ac, Makefile.am requirements.
45500         Simplify Include requirements. Add lib/stdbool.h.in to file list.
45501
45502 2003-01-09  Bruno Haible  <bruno@clisp.org>
45503
45504         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
45505
45506 2003-01-09  Bruno Haible  <bruno@clisp.org>
45507
45508         * lib/stdbool.h.in: New file.
45509
45510 2003-01-09  Bruno Haible  <bruno@clisp.org>
45511
45512         * gnulib-tool (func_all_modules): Ignore files ending in ~.
45513         * MODULES.html.sh: Likewise.
45514
45515 2003-01-08  Jim Meyering  <jim@meyering.net>
45516
45517         * lib/full-write.c: Undefine and define-away `const' after inclusion
45518         of errno.h, not before.  Suggestion from Bruno Haible.
45519
45520 2003-01-08  Bruno Haible  <bruno@clisp.org>
45521
45522         * modules/full-read: Depend on full-write.
45523
45524 2003-01-08  Bruno Haible  <bruno@clisp.org>
45525
45526         * lib/safe-read.c: Include specification header first, to ensure its
45527         selfcontainedness.
45528         * lib/full-write.c: Likewise.
45529
45530 2003-01-07  Jim Meyering  <jim@meyering.net>
45531
45532         * lib/full-write.c: Rework so that it may serve to define full_read,
45533         too.
45534         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
45535
45536 2003-01-07  Bruno Haible  <bruno@clisp.org>
45537
45538         * lib/strtoimax.c: Include <stdint.h> as an alternative to
45539         <inttypes.h>.
45540         * lib/xstrtol.h: Likewise.
45541         * lib/xstrtoimax.c: Likewise.
45542         * lib/xstrtoumax.c: Likewise.
45543         * lib/human.h: Likewise.
45544
45545         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
45546         on systems that have <inttypes.h> but not <stdint.h>.
45547
45548 2003-01-07  Bruno Haible  <bruno@clisp.org>
45549
45550         * MODULES.html.sh: Add copyright notice.
45551         (missed_files): Omit CVS directory entries.
45552         (func_module): Make it work with sed-3.02.
45553         * MODULES.txt: Remove file.
45554
45555 2003-01-06  Jim Meyering  <jim@meyering.net>
45556
45557         * lib/version-etc.c: Update year in translatable copyright string.
45558
45559 2003-01-03  Karl Berry  <karl@gnu.org>
45560
45561         * config/config.{guess,sub}: update from prep.
45562
45563 2003-01-02  Karl Berry  <karl@gnu.org>
45564
45565         * doc/COPYING.DOC: belatedly updated to 1.2.
45566
45567 2003-01-01  Karl Berry  <karl@gnu.org>
45568
45569         * gnulib-tool (func_verify_module): report module name $module in
45570         error message, not $1.
45571         * gnulib-tool (create-testdir): don't complain if destdir couldn't
45572         be created, only if it doesn't exist.
45573         * gnulib-tool (last_checkin_date): don't expand the $Date here.
45574
45575 2002-12-31  Paul Eggert  <eggert@twinsun.com>
45576
45577         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
45578
45579 2002-12-31  Paul Eggert  <eggert@twinsun.com>
45580
45581         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
45582         memcmp if strcoll doesn't work.
45583
45584 2002-12-31  Bruno Haible  <bruno@clisp.org>
45585
45586         * lib/utime.c (utime_null): No need to call ftruncate if the file was
45587         nonempty.
45588
45589 2002-12-31  Bruno Haible  <bruno@clisp.org>
45590
45591         * lib/memcoll.c (STRCOLL): New macro.
45592         (memcoll): Use it.
45593
45594 2002-12-31  Bruno Haible  <bruno@clisp.org>
45595
45596         * lib/localcharset.h: New file.
45597         * lib/localcharset.c: Include it.
45598         * lib/unicodeio.c: Likewise.
45599
45600 2002-12-31  Bruno Haible  <bruno@clisp.org>
45601
45602         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
45603         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
45604
45605 2002-12-31  Bruno Haible  <bruno@clisp.org>
45606
45607         * lib/getline.h: Include <stddef.h>, for size_t.
45608
45609         * lib/unicodeio.h: Include <stddef.h>, for size_t.
45610         * lib/unicodeio.c: Don't include <stddef.h>.
45611
45612 2002-12-31  Bruno Haible  <bruno@clisp.org>
45613
45614         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
45615         HAVE_TM_ZONE.
45616
45617 2002-12-24  Karl Berry  <karl@gnu.org>
45618
45619         * config/config.guess: update from prep.
45620
45621 2002-12-24  Bruno Haible  <bruno@clisp.org>
45622
45623         General infrasructure.
45624         * m4/README: Rewritten.
45625         * m4/onceonly.m4: New file.
45626         * m4/onceonly_2_57.m4: New file.
45627
45628         Module atexit.
45629         * m4/atexit.m4: New file.
45630
45631         Module strtod.
45632         * m4/strtod.m4: New file.
45633
45634         Module strtol.
45635         * m4/strtol.m4: New file.
45636
45637         Module strtoul.
45638         * m4/strtoul.m4: New file.
45639
45640         Module memchr.
45641         * m4/memchr.m4: New file.
45642
45643         Module memcmp.
45644         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
45645         (jm_FUNC_MEMCMP): Invoke it.
45646
45647         Module memcpy.
45648         * m4/memcpy.m4: New file.
45649
45650         Module memmove.
45651         * m4/memmove.m4: New file.
45652
45653         Module memset.
45654         * m4/memset.m4: New file.
45655
45656         Module strcspn.
45657         * m4/strcspn.m4: New file.
45658
45659         Module strpbrk.
45660         * m4/strpbrk.m4: New file.
45661
45662         Module strstr.
45663         * m4/strstr.m4: New file.
45664
45665         Module strerror.
45666         * m4/strerror.m4: New file.
45667
45668         Module mktime.
45669         * m4/mktime.m4: Renamed from jm-mktime.m4.
45670         (gl_PREREQ_MKTIME): New macro.
45671         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
45672
45673         Module malloc.
45674         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
45675         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
45676         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
45677
45678         Module realloc.
45679         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
45680         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
45681         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
45682
45683         Module strftime.
45684         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
45685         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
45686         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
45687         gl_TM_GMTOFF.
45688         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
45689
45690         Module xalloc.
45691         * m4/xalloc.m4: New file.
45692
45693         Module alloca.
45694         * m4/alloca.m4: New file.
45695
45696         Module putenv.
45697         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
45698         (jm_FUNC_PUTENV): Invoke it.
45699
45700         Module setenv.
45701         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
45702         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
45703         when invoked twice.
45704         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
45705         gt_FUNC_SETENV.
45706
45707         Module memrchr.
45708         * m4/memrchr.m4: New file.
45709
45710         Module stpcpy.
45711         * m4/stpcpy.m4: New file.
45712
45713         Module strcase.
45714         * m4/strcase.m4: New file.
45715
45716         Module strdup.
45717         * m4/strdup.m4: New file.
45718
45719         Module strnlen.
45720         * m4/strnlen.m4: New file.
45721
45722         Module strndup.
45723         * m4/strndup.m4: New file.
45724
45725         Module xstrtod.
45726         * m4/xstrtod.m4: New file.
45727
45728         Module xstrtol.
45729         * m4/xstrtol.m4: New file.
45730
45731         Module getdate.
45732         * m4/getdate.m4: New file.
45733
45734         Module unlocked-io.
45735         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
45736         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
45737         * m4/jm-glibc-io.m4n: Remove file.
45738
45739         Module long-options.
45740         * m4/long-options.m4: New file.
45741
45742         Module md5.
45743         * m4/md5.m4: New file.
45744
45745         Module sha.
45746         * m4/sha.m4: New file.
45747
45748         Module getstr.
45749         * m4/getstr.m4: New file.
45750
45751         Module getline.
45752         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
45753         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
45754         <sys/types.h>, for size_t. Use the function name gnu_getline, not
45755         simply getline. Infoke gl_PREREQ_GETLINE.
45756
45757         Module obstack.
45758         * m4/obstack.m4: New file.
45759
45760         Module hash.
45761         * m4/hash.m4: New file.
45762
45763         Module readtokens.
45764         * m4/readtokens.m4: New file.
45765
45766         Module strverscmp.
45767         * m4/strverscmp.m4: New file.
45768
45769         Module stdbool.
45770         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
45771         OSF/1.
45772
45773         Module strtoll.
45774         * m4/strtoll.m4: New file.
45775
45776         Module strtoull.
45777         * m4/strtoull.m4: New file.
45778
45779         Module strtoimax.
45780         * m4/strtoimax.m4: New file.
45781
45782         Module strtoumax.
45783         * m4/strtoumax.m4: New file.
45784
45785         Module xstrtoimax.
45786         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
45787         jm_AC_PREREQ_XSTRTOIMAX.
45788         Moved the strtol prerequisites to strtol.m4.
45789         Moved the strtoll prerequisites to strtoll.m4.
45790         Moved the strtoimax prerequisites to strtoimax.m4.
45791
45792         Module xstrtoumax.
45793         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
45794         jm_AC_PREREQ_XSTRTOUMAX.
45795         Moved the strtoul prerequisites to strtoul.m4.
45796         Moved the strtoull prerequisites to strtoull.m4.
45797         Moved the strtoumax prerequisites to strtoumax.m4.
45798
45799         Module chown.
45800         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
45801         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
45802
45803         Module dup2.
45804         * m4/dup2.m4: New file.
45805
45806         Module ftruncate.
45807         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
45808         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
45809
45810         Module getgroups.
45811         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
45812         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
45813
45814         Module gettimeofday.
45815         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
45816         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
45817         gl_PREREQ_GETTIMEOFDAY.
45818
45819         Module mkdir.
45820         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
45821         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
45822
45823         Module mkstemp.
45824         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
45825         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
45826         jm_AC_TYPE_UINTMAX_T.
45827         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
45828
45829         Module stat.
45830         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
45831         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
45832
45833         Module lstat.
45834         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
45835         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
45836
45837         Module timespec.
45838         * m4/timespec.m4 (gl_TIMESPEC): New macro.
45839         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
45840         * m4/st_mtim.m4: Indentation.
45841
45842         Module nanosleep.
45843         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
45844         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
45845         gl_PREREQ_NANOSLEEP.
45846
45847         Module regex.
45848         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
45849         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
45850         (gl_REGEX): New macro.
45851
45852         Module rename.
45853         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
45854         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
45855
45856         Module rmdir.
45857         * m4/rmdir.m4: New file.
45858
45859         Module utime.
45860         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
45861         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
45862         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
45863
45864         Module dirname.
45865         * m4/dirname.m4: New file.
45866
45867         Module getopt.
45868         * m4/getopt.m4: New file.
45869
45870         Module unistd-safer.
45871         * m4/unistd-safer.m4: New file.
45872
45873         Module fnmatch.
45874         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
45875         declaration.
45876         (gl_PREREQ_FNMATCH_EXTRA): New macro.
45877         (gl_FUNC_FNMATCH_POSIX): New macro.
45878         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
45879         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
45880         simply fnmatch.
45881
45882         Module exclude.
45883         * m4/exclude.m4: New file.
45884
45885         Module human.
45886         * m4/human.m4: New file.
45887
45888         Module acl.
45889         * m4/acl.m4: Nop.
45890
45891         Module backupfile.
45892         * m4/backupfile.m4: New file.
45893         * m4/d-ino.m4: Indentation.
45894
45895         Module fsusage.
45896         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
45897         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
45898         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
45899
45900         Module dirfd.
45901         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
45902         requirements.
45903
45904         Module euidaccess.
45905         * m4/euidaccess.m4: New file.
45906
45907         Module file-type.
45908         * m4/file-type.m4: New file.
45909
45910         Module fileblocks.
45911         * m4/fileblocks.m4: New file.
45912
45913         Module filemode.
45914         * m4/filemode.m4: New file.
45915
45916         Module isdir.
45917         * m4/isdir.m4: New file.
45918
45919         Module lchown.
45920         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
45921         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
45922
45923         Module makepath.
45924         * m4/makepath.m4: New file.
45925
45926         Module modechange.
45927         * m4/modechange.m4: New file.
45928
45929         Module mountlist.
45930         * m4/mountlist.m4: New file.
45931         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
45932         Indentation.
45933
45934         Module path-concat.
45935         * m4/path-concat.m4: New file.
45936
45937         Module pathmax.
45938         * m4/pathmax.m4: New file.
45939
45940         Module same.
45941         * m4/same.m4: New file.
45942
45943         Module save-cwd.
45944         * m4/save-cwd.m4: New file.
45945
45946         Module savedir.
45947         * m4/savedir.m4: New file.
45948
45949         Module xgetcwd.
45950         * m4/xgetcwd.m4: New file.
45951         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
45952
45953         Module xreadlink.
45954         * m4/xreadlink.m4: New file.
45955
45956         Module safe-read.
45957         * m4/safe-read.m4: New file.
45958
45959         Module safe-write.
45960         * m4/safe-write.m4: New file.
45961
45962         Module closeout.
45963         * m4/closeout.m4: New file.
45964
45965         Module stdio-safer.
45966         * m4/stdio-safer.m4: New file.
45967
45968         Module getpass.
45969         * m4/getpass.m4: New file.
45970
45971         Module getugroups.
45972         * m4/getugroups.m4: New file.
45973
45974         Module group-member.
45975         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
45976         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
45977
45978         Module idcache.
45979         * m4/idcache.m4: New file.
45980
45981         Module userspec.
45982         * m4/userspec.m4: New file.
45983
45984         Module gettime.
45985         * m4/clock_time.m4: New file.
45986         * m4/gettime.m4: New file.
45987
45988         Module settime.
45989         * m4/settime.m4: New file.
45990
45991         Module posixtm.
45992         * m4/posixtm.m4: New file.
45993
45994         Module gethostname.
45995         * m4/gethostname.m4: New file.
45996
45997         Module canon-host.
45998         * m4/canon-host.m4: New file.
45999
46000         Module gettext.
46001         * m4/codeset.m4: New file, from gettext-0.11.5.
46002         * m4/gettext.m4: New file, from gettext-0.11.5.
46003         * m4/glibc21.m4: New file, from gettext-0.11.5.
46004         * m4/iconv.m4: New file, from gettext-0.11.5.
46005         * m4/intdiv0.m4: New file, from gettext-0.11.5.
46006         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
46007         * m4/inttypes.m4: New file, from gettext-0.11.5.
46008         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
46009         * m4/isc-posix.m4: New file, from gettext-0.11.5.
46010         * m4/lcmessage.m4: New file, from gettext-0.11.5.
46011         * m4/lib-ld.m4: New file, from gettext-0.11.5.
46012         * m4/lib-link.m4: New file, from gettext-0.11.5.
46013         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
46014         * m4/progtest.m4: New file, from gettext-0.11.5.
46015         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
46016         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
46017         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
46018
46019         Module localcharset.
46020         * m4/localcharset.m4: New file.
46021
46022         Module hard-locale.
46023         * m4/hard-locale.m4: New file.
46024
46025         Module mbswidth.
46026         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
46027         onceonly macros.
46028         * m4/mbrtowc.m4: Add comment.
46029
46030         Module memcasecmp.
46031         * m4/memcasecmp.m4: New file.
46032
46033         Module memcoll.
46034         * m4/memcoll.m4: New file.
46035
46036         Module unicodeio.
46037         * m4/unicodeio.m4: New file.
46038
46039         Module rpmatch.
46040         * m4/rpmatch.m4: New file.
46041
46042         Module yesno.
46043         * m4/yesno.m4: New file.
46044
46045         Module exitfail.
46046         * m4/exitfail.m4: New file.
46047
46048         Module c-stack.
46049         * m4/c-stack.m4 (gl_C_STACK): New macro.
46050         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
46051
46052         Module error.
46053         * m4/error.m4 (gl_ERROR): New macro.
46054         (jm_PREREQ_ERROR): Use onceonly macros.
46055
46056         Module fatal.
46057         * m4/fatal.m4: New file.
46058
46059         Module getloadavg.
46060         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
46061         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
46062
46063         Module getpagesize.
46064         * m4/getpagesize.m4: New file.
46065
46066         Module getusershell.
46067         * m4/getusershell.m4: New file.
46068
46069         Module physmem.
46070         * m4/physmem.m4: New file.
46071
46072         Module posixver.
46073         * m4/posixver.m4: New file.
46074
46075         Module quotearg.
46076         * m4/quotearg.m4: New file.
46077
46078         Module quote.
46079         * m4/quote.m4: New file.
46080
46081         Module readutmp.
46082         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
46083
46084         Module sig2str.
46085         * m4/sig2str.m4: New file.
46086
46087         Other.
46088         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
46089         ulonglong.m4.
46090         * m4/intmax_t.m4: New file.
46091         * m4/d-type.m4: Indentation.
46092         * m4/jm-macros.m4: Update.
46093         * m4/prereq.m4 (jm_PREREQ): Update.
46094         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
46095         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
46096         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
46097         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
46098         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
46099         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
46100         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
46101         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
46102         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
46103         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
46104         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
46105         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
46106         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
46107         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
46108         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
46109         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
46110         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
46111         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
46112         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
46113
46114 2002-12-24  Bruno Haible  <bruno@clisp.org>
46115
46116         * MODULES.txt: Update according to m4/ changes.
46117
46118         Module gettext.
46119         * config.rpath: New file, from gettext-0.11.5.
46120
46121         * modules/*: New module descriptions.
46122         * gnulib-tool: New file.
46123         * MODULES.html.sh: New file.
46124
46125 2002-12-21  Karl Berry  <karl@gnu.org>
46126
46127         * doc/fdl.texi: update to version 1.2.
46128
46129 2002-12-19  Karl Berry  <karl@gnu.org>
46130
46131         * config/config.guess: update from prep.
46132
46133 2002-12-18  Bruno Haible  <bruno@clisp.org>
46134
46135         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
46136         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
46137
46138 2002-12-17  Bruno Haible  <bruno@clisp.org>
46139
46140         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
46141         stdlib.h, string.h.
46142
46143 2002-12-17  Bruno Haible  <bruno@clisp.org>
46144
46145         * lib/canon-host.c (strdup): Remove unused declaration.
46146
46147         * lib/fsusage.c: Include full_read.h.
46148         (get_fs_usage): Use full_read instead of safe_read.
46149
46150         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
46151
46152 2002-12-12  Karl Berry  <karl@gnu.org>
46153
46154         * config/config.guess: update from prep.
46155
46156 2002-12-11  Bruno Haible  <bruno@clisp.org>
46157
46158         * m4/setenv.m4: New file, from gettext-0.11.5.
46159
46160 2002-12-11  Bruno Haible  <bruno@clisp.org>
46161
46162         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
46163         not unsetenv().
46164         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
46165         modifications:
46166
46167         2002-12-11  Bruno Haible  <bruno@clisp.org>
46168
46169                 * setenv.c (alloca): Fall back to malloc.
46170                 (freea): New macro.
46171                 (setenv): Use freea() to free memory allocated with alloca().
46172
46173         2002-11-13  Bruno Haible  <bruno@clisp.org>
46174
46175                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
46176                 function declarations.
46177                 * unsetenv.c (unsetenv): Likewise.
46178
46179         2002-03-04  Bruno Haible  <bruno@clisp.org>
46180
46181                 Portability to AIX 4.3.3.
46182                 * unsetenv.c: New file, extracted from setenv.c.
46183                 * setenv.c: Move the unsetenv() function to unsetenv.c.
46184
46185         2001-12-20  Bruno Haible  <bruno@clisp.org>
46186
46187                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
46188                 use malloc instead. For SunOS 4.
46189
46190         2001-12-11  Bruno Haible  <bruno@clisp.org>
46191
46192                 * setenv.c: Declare alloca.
46193                 (compar_fn_t): New typedef.
46194                 (KNOWN_VALUE, STORE_VALUE): Use it.
46195
46196         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
46197         setenv.h.
46198
46199 2002-12-10  Paul Eggert  <eggert@twinsun.com>
46200
46201         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
46202         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
46203         Choose values that are less likely to collide with system fnmatch
46204         options.
46205         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
46206         defined (e.g., a pure POSIX system).
46207         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
46208         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
46209
46210 2002-12-06  Paul Eggert  <eggert@twinsun.com>
46211
46212         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
46213         a pain in practice to deal with generated m4 files.  This change
46214         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
46215
46216         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
46217         and jm-glibc-io.m4, as they are no longer a special case.
46218         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
46219         kludge and the auto-generation stuff.  Check only whether the
46220         functions are declared, not whether they exist, since older hosts
46221         that don't declare the functions can't use the optimization anyway.
46222
46223 2002-12-06  Jim Meyering  <jim@meyering.net>
46224
46225         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
46226
46227         Merge in changes from libc's misc/error.c, in preparation
46228         for the merge of gnulib's changes back into libc.
46229
46230         * lib/error.c (_): Define only if not already defined.
46231         Move definition to follow all #include directives.
46232         Include unlocked-io.h only if !_LIBC.
46233         [_LIBC]: Include <libio/libioP.h>.
46234         [USE_IN_LIBIO]: Include <libio/iolibio.h>
46235         (fflush): Tweak definition to use INTUSE.
46236         (putc): Define.
46237
46238 2002-12-05  Paul Eggert  <eggert@twinsun.com>
46239
46240         * lib/alloca.c [defined emacs]: Include "lisp.h".
46241         (xalloc_die) [defined emacs]: New macro.
46242         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
46243         [! defined emacs]: Include <xalloc.h>.
46244         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
46245         (pointer): Typedef to POINTER_TYPE *.
46246         (malloc): Remove decl; we now always use xmalloc.
46247         (alloca): Use old-style definition, since Emacs needs this.
46248         Check for arithmetic overflow when computing combined size.
46249
46250 2002-12-04  Paul Eggert  <eggert@twinsun.com>
46251
46252         Do not generate unlocked-io.h automatically, since it's easier to
46253         maintain it by hand.
46254
46255         * lib/unlocked-io.h: New file, from GNU diffutils,
46256         but with proper copyright notice and attribution.
46257         * lib/gen-uio: Remove.
46258         * lib/Makefile.am: Add copyright notice.
46259         (libfetish_a_SOURCES): Add unlocked-io.h.
46260         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
46261         (DISTCLEANFILES, io_functions): Remove macros.
46262         (EXTRA_DIST): Remove gen_uio.
46263         (unlocked-io.h): Remove rule.
46264
46265 2002-12-04  Jim Meyering  <jim@meyering.net>
46266
46267         Reflect the fact that stat.c and lstat.c are no longer generated.
46268         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
46269         (DISTCLEANFILES): Likewise.
46270         (EXTRA_DIST): Likewise.
46271         (all_local): Don't depend on stat.c or lstat.c.
46272         (stat.c, lstat.c): Remove rules.
46273         (EXTRA_DIST): Remove xstat.in.
46274
46275         * lib/xstat.in: Remove file.  Contents moved into stat.c.
46276         * lib/stat.c: New file.  Contents mostly from xstat.in.
46277         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
46278         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
46279
46280         * lib/safe-read.c: Rework so that it may serve to define safe_write,
46281         too.
46282         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
46283
46284 2002-12-03  Jim Meyering  <jim@meyering.net>
46285
46286         * lib/safe-read.c, safe-write.c: Change variable names and comments,
46287         but not semantics, to minimize the differences between these two files.
46288         (safe_read): Change comment to mention SAFE_READ_ERROR.
46289
46290         * lib/safe-read.c (IS_EINTR): Define.
46291         (safe_read): Use IS_EINTR in place of in-function cpp directives.
46292
46293 2002-12-02  Jim Meyering  <jim@meyering.net>
46294
46295         * lib/safe-read.c (EINTR): Define.
46296         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
46297         (INT_MAX): Provide fallback.
46298         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
46299
46300         * lib/safe-read.h (SAFE_READ_ERROR): Define.
46301
46302 2002-12-02  Bruno Haible  <bruno@clisp.org>
46303
46304         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
46305         Define, taken from safe-read.c.
46306         (INT_MAX): Provide fallback.
46307         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
46308         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
46309
46310         * lib/safe-read.c (EINTR): Remove definition.
46311         (safe_read): Don't use EINTR if it is absent.
46312
46313 2002-12-01  Jim Meyering  <jim@meyering.net>
46314
46315         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
46316         zero.
46317         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
46318
46319 2002-11-27  Paul Eggert  <eggert@twinsun.com>
46320
46321         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
46322         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
46323         with `if (! (value < limit)) abort ();', for readability.
46324
46325 2002-11-26  Karl Berry  <karl@gnu.org>
46326
46327         * lib/strdup.c: copy from libc again, with jim's ok.
46328         * lib/.cppi-disable: re-add strdup.c
46329
46330 2002-11-25  Karl Berry  <karl@gnu.org>
46331
46332         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
46333         instead of "strtol.c".
46334
46335 2002-11-25  Karl Berry  <karl@gnu.org>
46336
46337         * config/install-sh: update from automake for variable quoting, $0 in
46338         error msgs, etc.
46339
46340         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
46341         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
46342         entry.
46343
46344 2002-11-25  Jim Meyering  <jim@meyering.net>
46345
46346         * lib/mktime.c: Sync from libc, now that it has the latest fix.
46347
46348 2002-11-24  Karl Berry  <karl@gnu.org>
46349
46350         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
46351         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
46352
46353 2002-11-24  Jim Meyering  <jim@meyering.net>
46354
46355         Update from coreutils:
46356
46357         * lib/mktime.c: Merge in changes from libc.
46358
46359         Avoid a link-time failure on some Linux systems.
46360         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
46361         (otherwise).
46362         (__mon_yday): Declare with the STATIC attribute.
46363         (__mktime_internal): Likewise.
46364         Based on a report from Greg Schafer.
46365
46366 2002-11-23  Jim Meyering  <jim@meyering.net>
46367
46368         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
46369         Use `unsigned', not `int', as type of index.
46370
46371         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
46372
46373         * lib/fsusage.c: Remove unneeded parentheses around operands of
46374         `defined'.
46375
46376 2002-11-22  Paul Eggert  <eggert@twinsun.com>
46377
46378         * lib/quotearg.h: Allow multiple inclusion by surrounding with
46379         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
46380         so that we can be included first.
46381         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
46382         * lib/quotearg.c: Include quotearg.h immediately after config.h.
46383         No need to include stddef.h or sys/types.h any more.
46384         Surround local include files with "", not "<>".
46385         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
46386         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
46387         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
46388         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
46389         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
46390         (ISPRINT): Remove; no longer needed now that we assume C89.
46391
46392         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
46393         Preserve errno.
46394
46395         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
46396         quotearg_char): Use SIZE_MAX rather than
46397         (size_t) -1 when we are talking about "infinity".
46398
46399         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
46400
46401 2002-11-22  Paul Eggert  <eggert@twinsun.com>
46402
46403         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
46404         hint that one should use `if (! x) abort ();' rather than `assert
46405         (x);', and anyway it's one less thing to worry about configuring.
46406         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
46407         hash_rehash, hash_insert): Use abort rather than assert.
46408
46409 2002-11-22  Bruno Haible  <bruno@clisp.org>
46410
46411         * lib/safe-read.h: Assume C89. Add comments.
46412         (safe_read): Change return type to size_t.
46413         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
46414         byte counts > SSIZE_MAX correctly.
46415         * lib/safe-write.h: New file.
46416         * lib/safe-write.c: New file.
46417         * lib/full-read.h: New file.
46418         * lib/full-read.c: New file.
46419         * lib/full-write.h: Assume C89. Add comments.
46420         * lib/full-write.c: Include safe-write.h.
46421         (full_write): Rewritten to use safe_write.
46422         Suggested by Jim Meyering and Paul Eggert.
46423
46424 2002-11-21  Jim Meyering  <jim@meyering.net>
46425
46426         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
46427
46428         Merge in changes from the coreutils.
46429
46430         2002-09-25  Paul Eggert  <eggert@twinsun.com>
46431         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
46432         <stdint.h>.
46433         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
46434         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
46435         int.  Work more efficiently if X is the same width as uintmax_t.
46436         Do not compare X to -1, to avoid bogus compiler warning.
46437         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
46438         Don't assume that f_frsize and f_bsize are the same type.
46439
46440         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
46441         warning on FreeBSD.
46442
46443         * lib/makepath.c (make_path): Restore umask *before* creating the final
46444         component.
46445         (make_path): Minor reformatting.
46446
46447         * lib/xmalloc.c: Adjust to work with new autoconf macros,
46448         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
46449         HAVE_MALLOC/HAVE_REALLOC.
46450
46451         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
46452         dummy ones.  At least on GNU/Linux systems, `auto' means something
46453         else.
46454         From Michael Stone.
46455
46456 2002-11-21  Bruno Haible  <bruno@clisp.org>
46457
46458         Remove case insensitive option matching.
46459         * lib/argmatch.h (argcasematch): Remove declaration.
46460         (ARGCASEMATCH): Remove macro.
46461         (__xargmatch_internal): Remove case_sensitive argument.
46462         (XARGMATCH): Update.
46463         (XARGCASEMATCH): Remove macro.
46464         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
46465         case_sensitive argument.
46466         (argcasematch): Remove function.
46467         (__xargmatch_internal): Remove case_sensitive argument.
46468         (main): Use XARGMATCH instead of XARGCASEMATCH.
46469
46470         * lib/xmalloc.c: Change compile-time error message. Add comment about
46471         required autoconf version.
46472
46473 2002-11-20  Paul Eggert  <eggert@twinsun.com>
46474
46475         Merge argmatch cleanups from Bison.  Assume C89.
46476
46477         * lib/argmatch.c: Include config.h here, not in argmatch.h.
46478         Include stdlib.h, for EXIT_FAILURE.
46479         Always include <string.h>, since we assume C89.
46480         (EXIT_FAILURE): Remove pre-C89 bug workaround.
46481         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
46482         Include <stddef.h> instead, since it's all we need for size_t.
46483         (PARAMS): Remove.  All uses removed.
46484         (ARRAY_CARDINALITY): Do not bother to #undef.
46485         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
46486         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
46487         Remove unnecessary parentheses.
46488         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
46489         Insert necessary parentheses.
46490         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
46491         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
46492
46493 2002-11-19  Bruno Haible  <bruno@clisp.org>
46494
46495         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
46496         * lib/mbswidth.h: Include <stddef.h>, for size_t.
46497
46498         * lib/mbswidth.h (PARAMS): Remove macro.
46499         (mbswidth, mbsnwidth): Use ANSI C function declarations.
46500         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
46501
46502         * lib/gcd.h (PARAMS): Remove macro.
46503         (gcd): Use ANSI C function declarations.
46504         * lib/gcd.c (gcd): Likewise.
46505
46506 2002-11-15  Bruno Haible  <bruno@clisp.org>
46507
46508         * lib/strcspn.c: Include <stddef.h>.
46509         (strcspn): Use ANSI C function declaration. Change return type to
46510         size_t. Use NULL.
46511         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
46512         (strpbrk): Use NULL.
46513         * lib/strpbrk.h (PARAMS): Remove macro.
46514         (strpbrk): Use ANSI C function declaration.
46515         * lib/strstr.c: Don't include <sys/types.h>.
46516         * lib/strstr.h (PARAMS): Remove macro.
46517         (strstr): Use ANSI C function declarations.
46518
46519 2002-11-14  Karl Berry  <karl@gnu.org>
46520
46521         * config/mkinstalldirs: `do' on separate line, instead of
46522         `for var; do'.
46523
46524 2002-11-06  Bruno Haible  <bruno@clisp.org>
46525
46526         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
46527         * lib/gcd.c (gcd): Likewise.
46528
46529 2002-11-05  Bruno Haible  <bruno@clisp.org>
46530
46531         * lib/gcd.h: New file, from gettext-0.11.5.
46532         * lib/gcd.c: New file, from gettext-0.11.5.
46533
46534 2002-11-05  Bruno Haible  <bruno@clisp.org>
46535
46536         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
46537         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
46538         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
46539         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
46540
46541         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
46542         <libintl.h>.
46543         * lib/makepath.c: Include gettext.h instead of <locale.h> and
46544         <libintl.h>.
46545
46546         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
46547         * lib/human.c: Include gettext.h instead of <libintl.h>.
46548         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
46549         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
46550         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
46551         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
46552         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
46553         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
46554         (textdomain): Remove definition.
46555         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
46556
46557         * lib/long-options.c: Remove include of <libintl.h> and definition of
46558         _.
46559         * lib/same.c: Remove include of <libintl.h> and definition of _.
46560
46561 2002-11-04  Owen Taylor  <otaylor@redhat.com>
46562
46563         * lib/config.charset: A few additions for Solaris.
46564
46565 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
46566
46567         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
46568         * lib/localcharset.c (locale_charset): Declare as extern "C".
46569
46570 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
46571
46572         * lib/config.charset: msdos in uk_UA uses CP1125.
46573
46574 2002-11-04  Bruno Haible  <bruno@clisp.org>
46575
46576         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
46577         * lib/strcase.h: New file, from GNU gettext-0.11.5.
46578         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
46579         * lib/strstr.h: New file, from GNU gettext-0.11.5.
46580         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
46581
46582 2002-11-04  Bruno Haible  <bruno@clisp.org>
46583
46584         * lib/localcharset.c (locale_charset): Don't return an empty string.
46585
46586 2002-11-04  Bruno Haible  <bruno@clisp.org>
46587
46588         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
46589         aliases.
46590
46591 2002-11-04  Bruno Haible  <bruno@clisp.org>
46592
46593         * lib/config.charset: Update for newest glibc. Add canonical names
46594         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
46595
46596 2002-11-04  Bruno Haible  <bruno@clisp.org>
46597
46598         * lib/config.charset: Add support for NetBSD.
46599
46600 2002-11-04  Bruno Haible  <bruno@clisp.org>
46601
46602         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
46603
46604 2002-11-01  Bruno Haible  <bruno@clisp.org>
46605
46606         * configure.in: Add AC_CONFIG_AUX_DIR call.
46607         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
46608         test/Makefile.
46609         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
46610
46611 2002-09-28  Karl Berry  <karl@gnu.org>
46612
46613         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
46614         installed automake until the next release, since changes have been
46615         made.
46616
46617 2002-09-25  Karl Berry  <karl@gnu.org>
46618
46619         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
46620         * lib/getopt*: copy from libc/posix.
46621         * lib/gettext.h: copy from gettext.
46622         * lib/.cppi-disable: add strdup.c, gettext.h.
46623
46624 2002-09-25  Karl Berry  <karl@gnu.org>
46625
46626         * config/srclist.txt: enable gettext.h check.
46627         * config/config.{guess,sub}: update from prep.
46628         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
46629                 from automake 1.6.3.
46630         See srclist*.
46631
46632 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
46633
46634         * regex.c (PATFETCH): Remove the translating fetch.
46635         (PATFETCH_RAW): Rename to PATFETCH.
46636         (set_image_of_range): New fun.
46637         (SET_RANGE_TABLE_WORK_AREA): Use it.
46638         (regex_compile): Don't translate the pattern chars so eagerly.
46639         Only do it when inserting an `exactn' bytecode or when handling
46640         a char-range.
46641         (mutually_exclusive_p): Avoid empty statement.
46642
46643 2002-07-06  Jim Meyering  <meyering@lucent.com>
46644
46645         * m4/README: Don't mention Makefile.am.in.
46646         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
46647
46648 2002-07-01  Jim Meyering  <meyering@lucent.com>
46649
46650         * lib/c-stack.c: Include sys/time.h.
46651         From Volker Borchert.
46652
46653 2002-06-26  Paul Eggert  <eggert@twinsun.com>
46654
46655         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
46656
46657 2002-06-26  Paul Eggert  <eggert@twinsun.com>
46658
46659         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
46660         New macro.  Use it uniformly instead of
46661         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
46662         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
46663         reported by Vin Shelton.
46664
46665 2002-06-22  Paul Eggert  <eggert@twinsun.com>
46666
46667         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
46668         Do not assume SA_SIGINFO behavior.
46669         Bug reported by Jim Meyering on NetBSD 1.5.2.
46670
46671 2002-06-22  Jim Meyering  <meyering@lucent.com>
46672
46673         * m4/c-stack.m4: New file, from diffutils-2.8.2.
46674         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
46675
46676         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
46677         now that configure.ac uses AC_GNU_SOURCE.
46678         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
46679         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
46680
46681         Update to latest tools.  Suggestions from Paul Eggert.
46682         * m4/stdbool.m4: New file, from diffutils-2.8.2.
46683         * m4/gnu-source.m4: Update from diffutils-2.8.2.
46684         * m4/fnmatch.m4: Likewise.
46685         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
46686         to AC_HEADER_STDBOOL
46687
46688 2002-06-22  Jim Meyering  <meyering@lucent.com>
46689
46690         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
46691         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
46692
46693 2002-06-22  Jim Meyering  <meyering@lucent.com>
46694
46695         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
46696
46697         * lib/exitfail.c, exitfail.h: Likewise.
46698         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
46699
46700         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
46701         of fnmatch.h.
46702         (EXTRA_DIST): Add fnmatch_loop.c.
46703         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
46704
46705         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
46706         * lib/fnmatch.c: Update from diffutils-2.8.2.
46707         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
46708         * lib/fnmatch.h: Remove file.
46709
46710 2002-06-21  Jim Meyering  <meyering@lucent.com>
46711
46712         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
46713         * m4/mbrtowc.m4: Likewise.
46714
46715         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
46716         * m4/mbswidth.m4: Reflect name change:
46717         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
46718         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
46719
46720         * m4/lib-link.m4: Update from gettext-0.11.2.
46721         * m4/gettext.m4: Likewise.
46722
46723         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
46724         From Alfred M. Szmidt.
46725
46726 2002-06-18  Paul Eggert  <eggert@twinsun.com>
46727
46728         * lib/file-type.h: Report an error if neither S_ISREG nor
46729         S_IFREG is defined, instead of using a test specific to glibc
46730         2.2.  This should be safe, since POSIX requires S_ISREG and
46731         Unix Version 7 had S_IFREG.  We don't need to check for
46732         <sys/types.h> since we don't use any symbols that it defines.
46733
46734 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
46735
46736         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
46737         $@-t, so that each temporary file name is unique and valid in the first
46738         8 characters, for operation under DOS.
46739
46740 2002-06-15  Paul Eggert  <eggert@twinsun.com>
46741
46742         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
46743
46744 2002-06-15  Jim Meyering  <meyering@lucent.com>
46745
46746         Work even with DJGPP 2.03, which lacks support for symlinks.
46747         From Richard Dawe.
46748         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
46749         is defined.
46750         * lib/lchown.c (S_ISLNK): Likewise.
46751
46752 2002-06-15  Jim Meyering  <meyering@lucent.com>
46753
46754         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
46755         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
46756         have been included before this file.
46757
46758 2002-06-14  Jim Meyering  <meyering@lucent.com>
46759
46760         * lib/file-type.h: Use the version from diffutils-2.8.2.
46761         * lib/file-type.c: Likewise.
46762
46763 2002-06-07  Jim Meyering  <meyering@lucent.com>
46764
46765         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
46766         They're needed at least for NetBSD 1.5.2.
46767         ($statxfs_includes): Include those same headers.
46768         ($statxfs_includes): Include sys/vfs.h if available.
46769         ($statxfs_includes): Likewise for sys/statvfs.h.
46770         Check for the following members in both structs statfs and statvfs:
46771         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
46772
46773 2002-06-01  Jim Meyering  <meyering@lucent.com>
46774
46775         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
46776         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
46777
46778 2002-05-28  Jim Meyering  <meyering@lucent.com>
46779
46780         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
46781         Reported by Volker Borchert.
46782
46783 2002-05-27  Jim Meyering  <meyering@lucent.com>
46784
46785         Fix a problem seen only on nonconforming systems whereby ls.c's
46786         use of localtime, and then of gettimeofday would cause trouble:
46787         the localtime call used to initialize rpl_gettimeofday's save
46788         mechanism would clobber ls's current local time information so
46789         that in any long listing the first file would always be listed
46790         with date 1970-01-01.  Analysis by Volker Borchert.
46791
46792         * lib/gettimeofday.c (localtime): Undefine.
46793         (rpl_localtime): New function.
46794
46795 2002-05-27  Jim Meyering  <meyering@lucent.com>
46796
46797         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
46798         localtime.
46799
46800         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
46801         use the replacement function; it wouldn't resolve at link time.
46802         Reported by Volker Borchert.
46803
46804 2002-05-22  Jim Meyering  <meyering@lucent.com>
46805
46806         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
46807         file-type.h.
46808         * lib/file-type.h: New file.
46809         * lib/file-type.c (file_type): New file/function.  Extracted from
46810         diffutils.
46811
46812 2002-04-30  Jim Meyering  <meyering@lucent.com>
46813
46814         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
46815
46816 2002-04-29  Paul Eggert  <eggert@twinsun.com>
46817
46818         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
46819
46820 2002-04-29  Paul Eggert  <eggert@twinsun.com>
46821
46822         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
46823         Do not check for alloca.h (no longer used) or stdbool.h (was never
46824         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
46825
46826 2002-04-29  Paul Eggert  <eggert@twinsun.com>
46827
46828         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
46829
46830 2002-04-29  Jim Meyering  <meyering@lucent.com>
46831
46832         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
46833         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
46834         Use AC_FUNC_STRNLEN here instead.
46835
46836         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
46837         With autoconf-2.53a, it's part of AC_PROG_CC.
46838
46839 2002-04-28  Paul Eggert  <eggert@twinsun.com>
46840
46841         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
46842         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
46843
46844 2002-04-28  Paul Eggert  <eggert@twinsun.com>
46845
46846         * lib/sig2str.h, lib/sig2str.c: New files.
46847         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
46848
46849 2002-04-28  Paul Eggert  <eggert@twinsun.com>
46850
46851         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
46852         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
46853         of 127, since 64 is the largest conceivable number for ancient
46854         nonstandard hosts.
46855         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
46856
46857 2002-04-28  Jim Meyering  <meyering@lucent.com>
46858
46859         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
46860
46861 2002-04-24  Jim Meyering  <meyering@lucent.com>
46862
46863         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
46864         (jm_PREREQ): Use it.
46865
46866         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
46867         mach/mach.h fcntl.h.
46868         Check for this function: setlocale.
46869
46870 2002-04-24  Jim Meyering  <meyering@lucent.com>
46871
46872         * lib/gettext.h: New file, from Gettext.
46873         * lib/Makefile.am (INCLUDES): Remove -I../intl.
46874         (libfetish_a_SOURCES): Add gettext.h.
46875
46876 2002-04-16  Jim Meyering  <meyering@lucent.com>
46877
46878         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
46879         ut_pid, ut_id, ut_exit.
46880
46881 2002-04-16  Jim Meyering  <meyering@lucent.com>
46882
46883         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
46884         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
46885         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
46886
46887 2002-04-12  Jim Meyering  <meyering@lucent.com>
46888
46889         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
46890         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
46891         existence of the getmntinfo function.  Needed for Darwin 5.3.
46892
46893         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
46894         This is necessary at least on Darwin 5.3.
46895
46896         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
46897         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
46898         strnlen.o in the library, and that makes some versions of ranlib
46899         object.
46900
46901 2002-04-12  Jim Meyering  <meyering@lucent.com>
46902
46903         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
46904
46905 2002-04-09  Jim Meyering  <meyering@lucent.com>
46906
46907         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
46908         to be more precise.  Rather than saying we're checking whether the
46909         function `works', say what we're testing.
46910         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
46911         Reported by Bruno Haible.
46912
46913 2002-03-10  Jim Meyering  <meyering@lucent.com>
46914
46915         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
46916         Suggestion from Santiago Vila.
46917
46918 2002-03-08  Jim Meyering  <meyering@lucent.com>
46919
46920         * lib/rename.c: Mention that this wrapper is needed also on
46921         mips-dec-ultrix4.4 systems.
46922
46923 2002-03-02  Jim Meyering  <meyering@lucent.com>
46924
46925         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
46926         not HAVE_CLOCK_SETTIME.
46927
46928 2002-02-27  Paul Eggert  <eggert@twinsun.com>
46929
46930         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
46931         Check for clock_settime.
46932
46933 2002-02-27  Paul Eggert  <eggert@twinsun.com>
46934
46935         * lib/nanosleep.h: Rename to....
46936         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
46937
46938         * lib/gettime.c: New file.
46939         * lib/settime.c: New file.
46940         * lib/stime.c: Remove.
46941
46942         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
46943         timespec.h.  Remove nanosleep.h.
46944
46945 2002-02-25  Paul Eggert  <eggert@twinsun.com>
46946
46947         * m4/acl.m4: New file.
46948         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
46949         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
46950
46951 2002-02-25  Paul Eggert  <eggert@twinsun.com>
46952
46953         * lib/acl.c, lib/acl.h: New files.
46954         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
46955
46956 2002-02-24  Jim Meyering  <meyering@lucent.com>
46957
46958         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
46959         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
46960         cause trouble.  Reported by Nelson Beebe.
46961
46962 2002-02-23  Paul Eggert  <eggert@twinsun.com>
46963
46964         * lib/path-concat.c (xpath_concat): Reorder code to pacify
46965         compilers that don't know that xalloc_die never returns.
46966
46967 2002-02-20  Jim Meyering  <meyering@lucent.com>
46968
46969         * lib/getdate.c: Regenerate using bison-1.33.
46970
46971 2002-02-17  Jim Meyering  <meyering@lucent.com>
46972
46973         * config/config.guess (main): Don't use `head -1'; it's no longer
46974         portable. Use `sed 1q' instead.
46975
46976 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
46977
46978         * m4/codeset.m4: Upgrade to gettext-0.11.
46979         * m4/gettext.m4: Upgrade to gettext-0.11.
46980         * m4/glibc21.m4: Upgrade to gettext-0.11.
46981         * m4/iconv.m4: Upgrade to gettext-0.11.
46982         * m4/isc-posix.m4: Upgrade to gettext-0.11.
46983         * m4/lcmessage.m4: Upgrade to gettext-0.11.
46984         * m4/lib-ld.m4: New file, from gettext-0.11.
46985         * m4/lib-link.m4: New file, from gettext-0.11.
46986         * m4/lib-prefix.m4: New file, from gettext-0.11.
46987         * m4/progtest.m4: Upgrade to gettext-0.11.
46988
46989 2002-02-15  Paul Eggert  <eggert@twinsun.com>
46990
46991         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
46992         (jm_PREREQ): Use it.
46993
46994 2002-02-15  Paul Eggert  <eggert@twinsun.com>
46995
46996         * lib/posixver.c, lib/posixver.h: New files.
46997         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
46998
46999 2002-02-02  Paul Eggert  <eggert@twinsun.com>
47000             Bruno Haible  <bruno@clisp.org>
47001
47002         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
47003         (fwrite_success_callback): New declaration.
47004         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
47005         print_unicode_char. Call failure callback instead of error.
47006         (fwrite_success_callback): New function.
47007         (exit_failure_callback): New function.
47008         (fallback_failure_callback): New function.
47009         (print_unicode_char): Call unicode_to_mb.
47010
47011 2002-01-26  Jim Meyering  <meyering@lucent.com>
47012
47013         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
47014         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
47015
47016 2002-01-26  Jim Meyering  <meyering@lucent.com>
47017
47018         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
47019
47020 2002-01-22  Paul Eggert  <eggert@twinsun.com>
47021
47022         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
47023
47024 2002-01-22  Jim Meyering  <meyering@lucent.com>
47025
47026         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
47027         Otherwise, some versions of automake would omit the rule that makes
47028         Makefile from Makefile.in.
47029
47030 2002-01-21  Paul Eggert  <eggert@twinsun.com>
47031
47032         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
47033         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
47034         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
47035         (memcoll): Set errno to zero if there is no error.
47036
47037         * lib/quotearg.c (quotearg_buffer_restyled):
47038         Fix bug with quoting buffers containing NUL when backslashing escapes.
47039         This bug was exposed by the other changes in this patch.
47040         (quotearg_n_options): New arg ARGSIZE.
47041         All callers changed.
47042         (quoting_options_from_style): New function.
47043         (quotearg_n_style): Use it.
47044         (quotearg_n_style_mem): New function.
47045
47046         * lib/quotearg.h (quotearg_n_style_mem): New function.
47047
47048 2002-01-19  Jim Meyering  <meyering@lucent.com>
47049
47050         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
47051         Remove useless quotes: DF_PROG="df".
47052         * m4/strnlen.m4: New file.
47053
47054 2002-01-16  Paul Eggert  <eggert@twinsun.com>
47055
47056         * lib/backupfile.c (ISDIGIT): Comment fix.
47057         * lib/getdate.y (ISDIGIT): Likewise.
47058         * lib/posixtm.c (ISDIGIT, year): Likewise.
47059         * lib/strverscmp.c (ISDIGIT): Likewise.
47060         * lib/userspec.c (ISDIGIT): Likewise.
47061
47062 2002-01-16  Jim Meyering  <meyering@lucent.com>
47063
47064         * lib/getdate.y: Add three semicolons, each just before a closing
47065         brace. Bison (as of version 1.31) no longer papers over that mistake.
47066
47067 2002-01-05  Jim Meyering  <meyering@lucent.com>
47068
47069         * lib/version-etc.c (version_etc_copyright): Update copyright year.
47070
47071 2001-12-19  Paul Eggert  <eggert@twinsun.com>
47072
47073         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
47074         not silently exit merely because the output buffer happens to
47075         have nothing pending.
47076
47077 2001-12-18  Paul Eggert  <eggert@twinsun.com>
47078
47079         See the big note in ../ChangeLog.
47080         * lib/human.c (suffixes): Prefer K to k for 1024.
47081         (generate_suffix_backwards): New function.
47082         (human_readable_inexact): Use it.
47083         * lib/xstrtol.c (__xstrtol): If there is no number but there
47084         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
47085         Accept 'K' as well as 'k'.
47086
47087 2001-12-15  Jim Meyering  <meyering@lucent.com>
47088
47089         * lib/regex.h (__restrict_arr): Update from libc.
47090
47091         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
47092         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
47093         (STREQ): Define.
47094
47095 2001-12-14  Jim Meyering  <meyering@lucent.com>
47096
47097         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
47098         Suggestion from Bruno Haible.
47099
47100 2001-12-10  Jim Meyering  <meyering@lucent.com>
47101
47102         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
47103         xrealloc, Instead, include "xalloc.h".
47104         (initbuffer): Don't cast xmalloc return value to char*.
47105         (readline): Reword comment.
47106         Don't cast xrealloc return value to char*
47107         Return NULL, not 0.
47108
47109 2001-12-09  Jim Meyering  <meyering@lucent.com>
47110
47111         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
47112         about `signed and unsigned type in conditional expression'.
47113         * lib/posixtm.c (posix_time_parse): Likewise.
47114
47115         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
47116
47117         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
47118         to avoid a pedantic warning.
47119
47120         * lib/getstr.c: Don't include assert.h.
47121         (getstr): Remove warning-evoking assertions.
47122         Return -1 if offset parameter is out of bounds.
47123         Change the type of a local from int to size_t.
47124
47125         * lib/strftime.c (my_strftime_localtime_r): Include this function
47126         definition in the `#if ! HAVE_TM_GMTOFF' block.
47127
47128         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
47129         Include xalloc.h instead.
47130
47131 2001-12-02  Jim Meyering  <meyering@lucent.com>
47132
47133         * lib/tempname.c: Don't declare getenv, thus reverting the change of
47134         2001-11-18.  It's no longer necessary, now that stdlib.h is always
47135         included.
47136
47137         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
47138         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
47139
47140 2001-11-30  Akim Demaille  <akim@epita.fr>
47141
47142         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
47143         before being defined.
47144
47145 2001-11-27  Paul Eggert  <eggert@twinsun.com>
47146
47147         * lib/quotearg.h (quotearg_n, quotearg_n_style):
47148         First arg is int, not unsigned.
47149         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
47150         (SIZE_MAX, UINT_MAX): New macros.
47151         (quotearg_n_options): Abort if N is negative.
47152         Avoid overflow check on hosts where size_t is 64 bits and int
47153         is 32 bits, as overflow is impossible there.
47154         Fix off-by-one typo that caused unnecessary reallocation.
47155
47156 2001-11-27  Jim Meyering  <meyering@lucent.com>
47157
47158         * lib/tempname.c: Merge with version from libc.
47159         * lib/regex.c: Likewise.
47160
47161         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
47162         systems for which STDC_HEADERS is 0, it was not included, resulting in
47163         a warning about an integer-to-pointer conversion problem with getenv.
47164         Reported by Volker Borchert.
47165
47166 2001-11-26  Jim Meyering  <meyering@lucent.com>
47167
47168         * lib/gtod.h: Remove file.
47169         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
47170         * lib/gettimeofday.c: Don't include gtod.h.
47171         (GTOD_init): Remove function.
47172         (rpl_gettimeofday): Do its job here instead, rather than aborting.
47173         Suggestion from Volker Borchert.
47174
47175 2001-11-23  Jim Meyering  <meyering@lucent.com>
47176
47177         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
47178         it.
47179         * lib/hash.c (struct hash_table): Define it here instead.
47180
47181 2001-11-22  Jim Meyering  <meyering@lucent.com>
47182
47183         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
47184
47185 2001-11-20  Jim Meyering  <meyering@lucent.com>
47186
47187         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
47188         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
47189
47190 2001-11-19  Jim Meyering  <meyering@lucent.com>
47191
47192         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
47193         directory.  Use "conftestXXXXXX" as the template.
47194         Suggestion from Paul Eggert.
47195
47196         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
47197         immediately, so the test doesn't mistakenly hit the max-open-files
47198         limit.
47199
47200 2001-11-18  Paul Eggert  <eggert@twinsun.com>
47201
47202         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
47203         (TEMPORARIES): New macro.
47204         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
47205         removes an artificial limitation (e.g. HP-UX 10.20, where
47206         TMP_MAX is 17576).
47207
47208 2001-11-18  Jim Meyering  <meyering@lucent.com>
47209
47210         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
47211
47212 2001-11-18  Jim Meyering  <meyering@lucent.com>
47213
47214         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
47215         on SunOS 4.
47216
47217         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
47218         files will be created before anything else.
47219
47220 2001-11-17  Paul Eggert  <eggert@twinsun.com>
47221
47222         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
47223         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
47224
47225 2001-11-17  Jim Meyering  <meyering@lucent.com>
47226
47227         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
47228         Prompted by a report from Bob Proulx.
47229
47230         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
47231         Instead, require UTILS_FUNC_MKSTEMP.
47232
47233 2001-11-17  Jim Meyering  <meyering@lucent.com>
47234
47235         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
47236         Now, that's done as part of AC_FUNC_STRTOD.
47237
47238 2001-11-17  Jim Meyering  <meyering@lucent.com>
47239
47240         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
47241         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
47242         rather than group writable.  Patch by Juan F. Codagnone.
47243
47244         * lib/readtokens.c: Remove explicit declarations of xmalloc and
47245         xrealloc, Instead, include "xalloc.h".
47246
47247         * lib/mountlist.c: Include unlocked-io.h after all system headers.
47248         Remove explicit declarations of xmalloc, xrealloc,
47249         and xstrdup.  Instead, include "xalloc.h".
47250
47251         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
47252         unlocked-io.h.
47253         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
47254         Likewise.
47255         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
47256
47257         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
47258         Reported by Padraig Brady.
47259
47260         * lib/mkstemp.c: #undef mkstemp.
47261         Include config.h.
47262         (rpl_mkstemp): Rename from mkstemp.
47263         Protoize.
47264
47265 2001-11-16  Jim Meyering  <meyering@lucent.com>
47266
47267         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
47268         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
47269         determine the amount of total physical memory, use pstat_getstatic.
47270         HPUX-11 doesn't define _SC_PHYS_PAGES.
47271         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
47272         If sysconf couldn't be used to determine the amount of available
47273         physical memory, use both pstat_getstatic and pstat_getdynamic.
47274         Based on a patch from Bob Proulx.
47275
47276 2001-11-10  Jim Meyering  <meyering@lucent.com>
47277
47278         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
47279         (jm_PREREQ): Use it.
47280
47281 2001-11-09  Jim Meyering  <meyering@lucent.com>
47282
47283         * m4/jm-macros.m4: Require autoconf-2.52f.
47284         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
47285         Use these AC_-prefixed names, not the AM_-prefixed ones.
47286
47287         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
47288
47289 2001-11-05  Jim Meyering  <meyering@lucent.com>
47290
47291         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
47292
47293 2001-11-04  Jim Meyering  <meyering@lucent.com>
47294
47295         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
47296         $DEFS.
47297
47298 2001-11-03  Jim Meyering  <meyering@lucent.com>
47299
47300         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
47301         of AC_DEFUN.
47302
47303         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
47304         know the name of the variable in the macro definition.
47305
47306 2001-11-03  Jim Meyering  <meyering@lucent.com>
47307
47308         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
47309         in argmatch_to_argument call.
47310
47311         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
47312         argument.
47313
47314         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
47315         e.g., a fault due to an attempt to free a NULL pointer.
47316
47317 2001-11-01  Jim Meyering  <meyering@lucent.com>
47318
47319         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
47320         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
47321
47322 2001-11-01  Jim Meyering  <meyering@lucent.com>
47323
47324         * lib/dirfd.c, lib/dirfd.h: New files.
47325         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
47326
47327         * lib/hash.c (hash_print) [TESTING]: Clean up.
47328
47329 2001-10-22  Paul Eggert  <eggert@twinsun.com>
47330
47331         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
47332         to avoid a warning if -Wall.
47333
47334 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
47335
47336         * README: New file
47337         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
47338         (per RMS's instructions, this is now the canonical source)
47339         * lgpl/, gpl/: New directories.
47340
47341 2001-10-21  Paul Eggert  <eggert@twinsun.com>
47342
47343         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
47344
47345 2001-10-21  Jim Meyering  <meyering@lucent.com>
47346
47347         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
47348         this code would end up calling gettext even in packages built
47349         with --disable-nls.
47350         * lib/getopt.c (_): Likewise.
47351         * lib/regex.c (_): Likewise.
47352
47353 2001-10-20  Paul Eggert  <eggert@twinsun.com>
47354
47355         * m4/error.m4 (jm_PREREQ_ERROR):
47356         Do not invoke AC_CHECK_FUNCS with strerror_r, as
47357         AC_FUNC_STRERROR_R does that.
47358         Check for strerror declaration.
47359
47360         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
47361         are supposed to have them these days.
47362         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
47363         Merge changes from latest Autoconf CVS.
47364         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
47365         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
47366         POSIX decided to standardize on the int flavor of strerror_r.
47367
47368 2001-10-20  Paul Eggert  <eggert@twinsun.com>
47369
47370         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
47371         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
47372         Use strerror_r that is only a macro, even if it is not a function.
47373         (strerror): Check for HAVE_DECL_STRERROR before declaring.
47374         (private_strerror): Use prototypes, not old-style function definition.
47375         (print_errno_message): New function.
47376         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
47377         char*-flavored one.
47378         (error_tail, error, error_at_line): Use it.
47379
47380 2001-10-11  Jim Meyering  <meyering@lucent.com>
47381
47382         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
47383         and quote_n (1, ... to avoid clobbering a buffer.
47384
47385 2001-10-05  Jim Meyering  <meyering@lucent.com>
47386
47387         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
47388         hash-pjw.h.
47389         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
47390         * lib/hash-pjw.h: New file.
47391
47392 2001-09-30  Jim Meyering  <meyering@lucent.com>
47393
47394         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
47395         `struct fsstat' has the `f_fstypename' member.
47396         Use that to define FS_TYPE, which is now used to make
47397         the getfsstat link test tighter.
47398
47399 2001-09-30  Jim Meyering  <meyering@lucent.com>
47400
47401         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
47402         Include <sys/ucred.h>, for Apple Darwin.
47403         Include sys/mount.h and sys/fs_types.h only if available.
47404         (FS_TYPE): Define.
47405         (read_filesystem_list): Use FS_TYPE.
47406
47407 2001-09-29  Paul Eggert  <eggert@twinsun.com>
47408
47409         * lib/exclude.c (excluded_filename): 0 -> false, since it's
47410         a boolean context.
47411
47412 2001-09-29  Jim Meyering  <meyering@lucent.com>
47413
47414         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
47415         [one-argument getmntent function]): Include stdio.h before mntent.h.
47416         SunOS 4.1.x needs it for the declaration of `FILE'.
47417         Patch by Volker Borchert.
47418
47419         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
47420         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
47421         sys/fs_types.h, and make the link-test for getfsstat guard #include
47422         directives with appropriate #if HAVE_*_H tests so that we can
47423         detect getfsstat on Apple Darwin1.3.7 systems.
47424         Reported by Nelson Beebe.
47425         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
47426
47427 2001-09-28  Paul Eggert  <eggert@twinsun.com>
47428
47429         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
47430         #defines strtoimax.  Also treat the other strto* functions
47431         like strtoimax.
47432
47433         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
47434         Check for strtoul and strtoumax,
47435         as those declarations are made even in the signed case.
47436         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
47437         Likewise, for strtol and strtoimax.
47438
47439 2001-09-28  Paul Eggert  <eggert@twinsun.com>
47440
47441         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
47442         #defines strtoimax.  Also treat the other strto* functions
47443         like strtoimax.
47444
47445         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
47446         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
47447         (strtoimax, strtoumax): Do not declare if already defined as a macro.
47448
47449 2001-09-26  Jim Meyering  <meyering@lucent.com>
47450
47451         Most macros in unlocked-io.h had the wrong number of arguments.
47452         * lib/gen-uio: New script.
47453         (USE_UNLOCKED_IO): Define to 1 if not already defined.
47454         * lib/unlocked-io.hin: Remove file.
47455         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
47456         rather than trying to embed it here.
47457         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
47458         Reported by Padraig Brady.
47459
47460 2001-09-25  Volker Borchert  <bt@teknon.de>
47461
47462         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
47463         `result'.
47464
47465 2001-09-24  Jim Meyering  <meyering@lucent.com>
47466
47467         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
47468
47469 2001-09-23  Jim Meyering  <meyering@lucent.com>
47470
47471         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
47472         instead of the mere test for existence of mntent.h.  The latter
47473         would get a false-positive on AIX 3.4 systems.
47474         In the outer getmntent if-block, don't die if neither of the getmntent
47475         tests succeeds.  Instead, just fall through and continue with the
47476         remaining tests.
47477
47478 2001-09-23  Jim Meyering  <meyering@lucent.com>
47479
47480         * lib/mountlist.c: Remove useless parentheses in #if directives.
47481         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
47482         the deprecated MOUNTED symbol is no longer defined in mntent.h.
47483
47484 2001-09-22  Jim Meyering  <meyering@lucent.com>
47485
47486         * m4/gettext.m4: New file.  From gettext.
47487         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
47488         * m4/progtest.m4: Likewise
47489         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
47490         * m4/glibc21.m4: Likewise.
47491
47492         * m4/libintl.m4: Remove.  No longer used.
47493
47494 2001-09-22  Jim Meyering  <meyering@lucent.com>
47495
47496         * lib/localcharset.c: Update from latest gettext.
47497         * lib/config.charset: Likewise.
47498
47499 2001-09-20  Jim Meyering  <meyering@lucent.com>
47500
47501         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
47502         strtoimax.
47503         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
47504         strtoumax.
47505
47506 2001-09-20  Jim Meyering  <meyering@lucent.com>
47507
47508         * lib/xstrtol.c (strtoimax): Guard declaration with
47509         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
47510         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
47511         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
47512         (strtoumax): Likewise, for completeness (it wasn't necessary).
47513
47514 2001-09-17  Paul Eggert  <eggert@twinsun.com>
47515
47516         * lib/strtoimax.c (HAVE_LONG_LONG):
47517         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
47518         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
47519         to work around bug in IBM C compiler.
47520
47521 2001-09-17  Jim Meyering  <meyering@lucent.com>
47522
47523         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
47524         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
47525         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
47526         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
47527         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
47528         whenever the right hand side need not be expanded by the shell.
47529
47530 2001-09-16  Paul Eggert  <eggert@twinsun.com>
47531
47532         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
47533         library.  It's not correct, as some older glibcs are buggy.
47534         fnmatch wasn't fixed until glibc 2.2.
47535
47536         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
47537         special shell magic here.
47538
47539 2001-09-16  Jim Meyering  <meyering@lucent.com>
47540
47541         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
47542         * m4/jm-macros.m4: Require it.
47543
47544 2001-09-16  Jim Meyering  <meyering@lucent.com>
47545
47546         * lib/mkdir.c: New file.
47547
47548 2001-09-15  Jim Meyering  <meyering@lucent.com>
47549
47550         * m4/jm-macros.m4: Check for help2man.
47551
47552 2001-09-11  Jim Meyering  <meyering@lucent.com>
47553
47554         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
47555         The body, by Paul Eggert, was moved here from configure.in.
47556         * m4/jm-macros.m4: Require UTILS_HOST_OS.
47557
47558 2001-09-04  Paul Eggert  <eggert@twinsun.com>
47559
47560         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
47561         (jm_PREREQ): Use it.
47562
47563 2001-09-04  Paul Eggert  <eggert@twinsun.com>
47564
47565         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
47566         Use ssize_t, not int, to store result of readlink.
47567         Check for ssize_t overflow as well as size_t overflow,
47568         as POSIX says the result of readlink is implementation-defined
47569         when ssize_t overflows.
47570         Remove unnecessary cast to char*.
47571         Use free+malloc instead of realloc, as the storage doesn't need
47572         to be preserved and it's clearer and can be more efficient that way.
47573         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
47574         * lib/xreadlink.h (xreadlink): Update prototype.
47575
47576 2001-09-04  Paul Eggert  <eggert@twinsun.com>
47577
47578         * lib/xgetcwd.c: Revert some of the previous change; intead,
47579         fix the HAVE_GETCWD_NULL code to behave more like the
47580         !HAVE_GETCWD_NULL code used to.
47581
47582         Include "xalloc.h".
47583         (xgetcwd): Do not return NULL when memory is exhausted; instead,
47584         invoke xalloc_die.
47585
47586 2001-09-03  Paul Eggert  <eggert@twinsun.com>
47587
47588         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
47589         sys/param.h, as pathmax.h includes them.
47590
47591 2001-09-03  Paul Eggert  <eggert@twinsun.com>
47592
47593         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
47594         (jm_PREREQ_XGETCWD): New macro.
47595
47596         * m4/getcwd.m4: New file.
47597
47598 2001-09-03  Paul Eggert  <eggert@twinsun.com>
47599
47600         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
47601         like the HAVE_GETCWD_NULL code.
47602         Include pathmax.h if not HAVE_GETCWD.
47603         Do not include xalloc.h.
47604         (INITIAL_BUFFER_SIZE): New symbol.
47605         Do not use xmalloc / xrealloc, since the caller is responsible for
47606         handling errors.  Preserve errno around `free' during failure.
47607         Do not overrun buffer when using getwd.
47608
47609 2001-09-03  Paul Eggert  <eggert@twinsun.com>
47610
47611         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
47612         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
47613         getcwd (NULL, 0).
47614
47615 2001-09-03  Paul Eggert  <eggert@twinsun.com>
47616
47617         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
47618         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
47619         spotted by Jim Meyering.
47620
47621 2001-09-03  Jim Meyering  <meyering@lucent.com>
47622
47623         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
47624         failure.
47625
47626 2001-09-02  Jim Meyering  <meyering@lucent.com>
47627
47628         * lib/error.c: Update from GNU libc.
47629
47630 2001-09-01  Jim Meyering  <meyering@lucent.com>
47631
47632         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
47633         Used by df.
47634
47635 2001-09-01  Jim Meyering  <meyering@lucent.com>
47636
47637         * lib/xreadlink.c: New file.
47638         * lib/xreadlink.h: New file.
47639         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
47640         xreadlink.h.
47641
47642         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
47643         doesn't conflict with sparc Solaris 7's definition in
47644         /usr/include/sys/int_types.h.
47645
47646         * lib/exclude.c: Use `""', not `<>' to #include non-system header
47647         files.
47648         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
47649         and strncasecmp as r-values.  Unixware didn't have declarations.
47650
47651 2001-08-31  Paul Eggert  <eggert@twinsun.com>
47652
47653         * lib/xstrtol.h: Add copyright notice.
47654         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
47655         LONGINT_INVALID_SUFFIX_CHAR.
47656
47657 2001-08-31  Paul Eggert  <eggert@twinsun.com>
47658
47659         * lib/xstrtol.c (strtoimax): New decl.
47660
47661 2001-08-31  Paul Eggert  <eggert@twinsun.com>
47662
47663         * lib/xgetcwd.c: Don't include pathmax.h.
47664         Include stdlib.h and unistd.h if available.
47665         Include xalloc.h.
47666         (xmalloc, xstrdup, free): Remove decls.
47667         (xgetcwd): Don't assume sizes fit in unsigned.
47668         Check for overflow when computing sizes.
47669         Simplify reallocation code.
47670
47671 2001-08-31  Paul Eggert  <eggert@twinsun.com>
47672
47673         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
47674         a directory's st_size can have an arbitrary value, so the old
47675         usage could waste an arbitrary amount of memory.  All uses
47676         changed.
47677         * lib/savedir.h: Update prototype.
47678
47679 2001-08-31  Paul Eggert  <eggert@twinsun.com>
47680
47681         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
47682
47683         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
47684         old strtoimax.c.
47685
47686         Also, make the following further changes to make this file's
47687         configuration more similar to that of strtol.c:
47688         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
47689         (strtoumax, uintmax_t, strtoull, strtol): Remove.
47690         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
47691         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
47692         changed to signed values.
47693
47694         And make the following changes as well:
47695         Fix copyright notice, as 1999 was missing.
47696         (verify): New macro.
47697         (strtoimax): Check sizes at compile-time, not run-time.
47698         Prefer strtol to strtoll if both work.
47699         (main): Remove; it was not that useful and was a pain to maintain.
47700
47701         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
47702
47703 2001-08-31  Jim Meyering  <meyering@lucent.com>
47704
47705         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
47706         Use an initial, malloc'd, buffer of length 128 rather than
47707         a statically allocated one of length 1024.
47708
47709 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47710
47711         Simplify code, partly by assuming autoconf 2.52 semantics.
47712
47713         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
47714
47715         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
47716         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
47717         All uses removed.
47718         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
47719         Move AC_REQUIRE to next-to-top level, to avoid confusion.
47720         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
47721         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
47722         jm_AC_HEADER_INTTYPES_H.
47723         * m4/jm-macros.m4 (jm_MACROS): Likewise.
47724
47725         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
47726
47727         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
47728         Quote first arg of AC_DEFUN.
47729         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
47730         since they are needed to parse the include file even if we need
47731         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
47732         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
47733         but with opposite signedness.
47734
47735 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47736
47737         Merge 'exclude' changes from tar 1.13.22.
47738         This fixes one or two unlikely storage allocation overflow bugs,
47739         but doesn't change user-visible behavior otherwise.
47740
47741 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47742
47743         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
47744         (jm_PREREQ_EXCLUDE): New macro.
47745
47746 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47747
47748         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
47749         tm to be declared.
47750
47751 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47752
47753         * lib/hash.c: Remove '2001' from copyright notice.
47754
47755 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47756
47757         * lib/full-write.h: New file.
47758         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
47759         * lib/full-write.c: Correct credits, as cccp.c no longer
47760         exists and anyway it was so heavily changed from the old cccp
47761         code as to be unrecognizable.  Include full-write.h.
47762         (full_write) Return size_t, with short writes meaning failure.
47763         All callers changed.  This fixes a bug with large buffers
47764         on 64-bit hosts.
47765         * lib/utime.c: Include full-write.h.
47766
47767 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47768
47769         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
47770         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
47771         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
47772         Include if available.
47773         (<xalloc.h>): Include
47774         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
47775         (verify): New macro.  Use it to verify that EXCLUDE macros do not
47776         collide with FNM macros.
47777         (struct patopts): New struct.
47778         (struct exclude): Use it, as exclude patterns now come with options.
47779         (new_exclude): Support above changes.
47780         (new_exclude, add_exclude_file):
47781         Initial size must now be a power of two to simplify overflow checking.
47782         (free_exclude, fnmatch_no_wildcards): New function.
47783         (excluded_filename): No longer requires options arg, as the options
47784         are determined by add_exclude.  Now returns bool, not int.
47785         (excluded_filename, add_exclude):
47786         Add support for the fancy new exclusion options.
47787         (add_exclude, add_exclude_file): Now takes int options arg.
47788         Check for arithmetic overflow when computing sizes.
47789         (add_exclude_file): xrealloc might modify errno, so don't
47790         realloc until after errno might be used.
47791
47792         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
47793         New macros.
47794         (free_exclude): New decl.
47795         (add_exclude, add_exclude_file): Now takes int options arg.
47796         (excluded_filename): No longer requires options arg, as the options
47797         are determined by add_exclude.  Now returns bool, not int.
47798
47799 2001-08-30  Paul Eggert  <eggert@twinsun.com>
47800
47801         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
47802
47803 2001-08-27  Jim Meyering  <meyering@lucent.com>
47804
47805         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
47806
47807         * lib/version-etc.c (N_): Remove definition.
47808         Revert most of last change.
47809         Instead, simply don't mark the `Copyright...' string for translation.
47810         Based on advice from Paul Eggert.
47811
47812         * lib/strtoxmax.c: Tweak comment.
47813
47814 2001-08-26  Jim Meyering  <meyering@lucent.com>
47815
47816         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
47817
47818         * m4/xstrtoimax.m4: New file.
47819         * m4/xstrtoumax.m4: Add comments explaining why we
47820         AC_REPLACE_FUNCS(strtol).
47821
47822 2001-08-26  Jim Meyering  <meyering@lucent.com>
47823
47824         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
47825         of copyright with `%s' so translators don't get an untranslated
47826         message in 2002.
47827         (COPYRIGHT_YEAR): Define.
47828         (version_etc): Use fprintf rather than fputs.
47829         Suggestion from Ulrich Drepper.
47830
47831         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
47832
47833         * lib/strtoll.c: New file, from GNU libc.
47834         * lib/xstrtoimax.c: New file.
47835
47836         * lib/xstrtol.h: Add xstrtoimax.
47837         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
47838         * lib/strtoimax.c: New file.  Likewise, but first define
47839         STRTOUXMAX_SIGNED.
47840
47841         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
47842         ...
47843         * lib/strtoxmax.c: ... then renamed to this.
47844
47845 2001-08-18  Paul Eggert  <eggert@twinsun.com>
47846
47847         * m4/inttypes.m4: Add AC_PREREQ(2.13).
47848         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
47849         (jm_AC_TYPE_INTMAX_T): New macro.
47850         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
47851
47852         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
47853
47854         * m4/longlong.m4: Renamed from ulonglong.m4.
47855         * m4/inttypes.m4: Renamed from inttypes_h.m4.
47856         * m4/uintmax_t.m4: Removed.
47857
47858 2001-08-13  Paul Eggert  <eggert@twinsun.com>
47859
47860         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
47861         Port to Solaris 8, where 'sed' requires a space after the 'r'
47862         command, and where sh dislikes "$/".  Clean up the spacing a bit.
47863         Redirect output to $tmp just once.
47864
47865 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
47866
47867         * lib/addext.c (<errno.h>): Include.
47868         (errno): Declare if not defined.
47869         (addext): Work correctly when pathconf returns -1 and leaves
47870         errno alone because there is no limit.  Also, work even if
47871         pathconf returns a value greater than SIZE_MAX.
47872
47873 2001-08-12  Jim Meyering  <meyering@lucent.com>
47874
47875         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
47876         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
47877         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
47878         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
47879         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
47880         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
47881         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
47882         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
47883         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
47884         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
47885         utime.m4, utimes.m4, xstrtoumax.m4:
47886         Quote the first argument in each use of AC_DEFUN.
47887
47888 2001-08-12  Jim Meyering  <meyering@lucent.com>
47889
47890         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
47891         Simply `return getcwd (NULL, 0);'.
47892         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
47893         Use 1300 as initial value for length, not PATH_MAX.
47894
47895         * lib/pathmax.h: Clean up cpp syntax.
47896
47897 2001-08-12  Jim Meyering  <meyering@lucent.com>
47898
47899         * lib/gettimeofday.c: New file.
47900         * lib/gtod.h: New file.
47901         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
47902
47903 2001-08-05  Jim Meyering  <meyering@lucent.com>
47904
47905         * m4/jm-macros.m4: Require autoconf-2.52.
47906
47907 2001-08-04  Jim Meyering  <meyering@lucent.com>
47908
47909         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
47910         stmt, to get in sync with glibc.
47911
47912 2001-08-03  Paul Eggert  <eggert@twinsun.com>
47913
47914         The following changes are from gettext 0.10.39 as maintained by
47915         Bruno Haible.
47916
47917         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
47918         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
47919         with inverted sense.  All uses changed.
47920
47921         * lib/mbswidth.c: Don't include <limits.h>.
47922         Include <stdlib.h> and <string.h> unconditionally.
47923         (iswcntrl, mbsinit, ISCNTRL): New macros.
47924         (mbsnwidth): Use K&R style function declarations.
47925         Don't bother checking for MB_LEN_MAX == 1, since the compiler
47926         can optimize it when MB_CUR_MAX == 1.
47927         The width of control characters is zero, not 1.
47928
47929 2001-08-03  Paul Eggert  <eggert@twinsun.com>
47930
47931         The following changes are from gettext 0.10.39 as maintained by
47932         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
47933
47934         * m4/codeset.m4: Upgrade to serial AM1.
47935         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
47936         all uses changed.  Quote first arg of AC_DEFUN.
47937         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
47938
47939         * m4/iconv.m4: Upgrade to serial AM2.
47940         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
47941         Add --with-libconv-prefix.
47942         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
47943         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
47944         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
47945         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
47946         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
47947
47948         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
47949         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
47950         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
47951         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
47952         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
47953         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
47954         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
47955         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
47956         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
47957
47958         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
47959         string.h any more.
47960
47961         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
47962         not the default value.
47963
47964         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
47965         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
47966         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
47967         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
47968         Also check for iswcntrl, used for wcwidth fallback.
47969         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
47970         to Autoconf 2.13.
47971
47972 2001-08-03  Jim Meyering  <meyering@lucent.com>
47973
47974         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
47975         as it was in the original.  Reported by Paul Eggert.
47976
47977 2001-07-16  Jim Meyering  <meyering@lucent.com>
47978
47979         * m4/gettimeofday.m4: New file.
47980         Prompted by a report from Bernhard Baehr.
47981
47982 2001-07-15  Jim Meyering  <meyering@lucent.com>
47983
47984         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
47985         stuff. Now it's in ../Makefile.cfg.
47986
47987 2001-07-15  Jim Meyering  <meyering@lucent.com>
47988
47989         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
47990         (BUILT_SOURCES): Add unlocked-io.h.
47991         (io_functions): Define.
47992         (unlocked-io.h): New rule.
47993         (DISTCLEANFILES): Add unlocked-io.h.
47994         (all-local): Depend on unlocked-io.h, to ensure it is created.
47995
47996         * lib/unlocked-io.hin: New file
47997
47998         * lib/regex.c: Update from glibc.
47999
48000 2001-07-05  Jim Meyering  <meyering@lucent.com>
48001
48002         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
48003         recommendation.
48004         (libfetish_a_SOURCES): Put all .h files here instead.
48005         Remove a thus-exposed (better checks in automake) duplicate and
48006         two unnecessary .h files.
48007
48008 2001-07-04  Jim Meyering  <meyering@lucent.com>
48009
48010         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
48011         that generates jm-glibc-io.m4 so that it doesn't trigger any make
48012         distcheck failure.
48013
48014 2001-07-02  Jim Meyering  <meyering@lucent.com>
48015
48016         The following changes were prompted by suggestions from Bruno Haible.
48017
48018         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
48019         is now generated.
48020         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
48021         definition of EXTRA_DIST.
48022         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
48023         ensure that the generated file is created/updated whenever the list
48024         of $(unlocked_functions) is changed.
48025         (jm-glibc-io.m4): New rule.
48026         (unlocked-io.h): New rule -- currently unused.
48027
48028 2001-06-24  Jim Meyering  <meyering@lucent.com>
48029
48030         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
48031         unmatched right bracket, rather than kludging it with an extra,
48032         falsely-matching quote in a comment.  Patch by Akim Demaille.
48033
48034 2001-06-11  Jim Meyering  <meyering@lucent.com>
48035
48036         * lib/regex.c: Update from GNU libc.
48037
48038 2001-05-27  Jim Meyering  <meyering@lucent.com>
48039
48040         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
48041         Check for ut_type in struct utmp.
48042
48043 2001-05-27  Jim Meyering  <meyering@lucent.com>
48044
48045         * lib/readutmp.h (UT_TYPE): Define.
48046
48047 2001-05-24  Jim Meyering  <meyering@lucent.com>
48048
48049         * lib/argmatch.c: Include "quote.h".
48050         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
48051         quote function.  Reported by Göran Uddeborg.
48052
48053 2001-05-22  Jim Meyering  <meyering@lucent.com>
48054
48055         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
48056         now that we use the package-supplied version unconditionally.
48057         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
48058
48059 2001-05-21  Jim Meyering  <meyering@lucent.com>
48060
48061         * m4/regex.m4: Change a couple backticks to single quotes to avoid
48062         shell syntax errors.
48063
48064 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
48065
48066         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
48067
48068 2001-05-20  Paul Eggert  <eggert@twinsun.com>
48069
48070         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
48071         Don't bother to check library strftime, since
48072         we'll be using our own my_strftime function anyway.
48073         Define my_strftime instead of strftime.
48074
48075 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
48076
48077         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
48078         which is not yet declared.
48079
48080 2001-05-15  Jim Meyering  <meyering@lucent.com>
48081
48082         * m4/regex.m4: Use proper quoting so brackets appear in the test
48083         program.
48084         Reported by, and with help from, Bruno Haible.
48085
48086 2001-05-13  Jim Meyering  <meyering@lucent.com>
48087
48088         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
48089         undefined.
48090
48091 2001-05-11  Paul Eggert  <eggert@twinsun.com>
48092
48093         dirname code cleanup.  base_name now behaves more compatibly
48094         with POSIX basename when given file names that have trailing
48095         slashes, and similarly for dir_name.  Add new primitives
48096         base_len and dir_len.  Put the directory-name-related decls
48097         into dirname.h.
48098
48099         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
48100         * lib/backupfile.c (base_name): Likewise.
48101         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
48102         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
48103         * lib/makepath.c (strip_trailing_slashes): Likewise.
48104         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
48105         ISSLASH): Likewise.
48106         * lib/rename.c (strip_trailing_slashes): Likewise.
48107         * lib/same.c (base_name): Likewise.
48108         * lib/stripslash.c (ISSLASH): Likewise.
48109
48110         * lib/addext.c: Include <dirname.h> after size_t is defined.
48111         * lib/backupfile.c: Likewise.
48112
48113         * lib/addext.c (addext): Use base_len to trim redundant
48114         trailing slashes instead of doing it ourselves.
48115         But do not trim the last slash if it is not redundant.
48116
48117         * lib/backupfile.c (find_backup_file_name,
48118         max_backup_version): Use base_len instead of rolling it ourselves.
48119         Handle the case of "" and (on DOS) "C:" correctly.
48120
48121         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
48122         needed. Include <string.h>, <dirname.h>.
48123         (base_name): Allow file names ending in slashes, other than names
48124         that are all slashes.  In this case, return the basename followed
48125         by the slashes.  This is more general, and can be used in places
48126         where the original base_name purposely had an assertion failure.
48127         (base_len): New function.
48128
48129         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
48130         Do not include <assert.h>; no longer needed.
48131         Include xalloc.h.
48132         (memrchr): Remove decl.
48133         (dir_name_r): Remove.
48134         (dir_len): Renamed from dirlen.  All callers changed.
48135         Rewrite in terms of base_name, for simplicity and consistency.
48136         (dir_name): Never return NULL.  All callers changed.
48137         Do not include <stdlib.h> in test program; no longer needed.
48138         return 0; is fine for test program.
48139
48140         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
48141         New macros.
48142         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
48143
48144         * lib/path-concat.c (path_concat): Use base_len to compute
48145         base length, not strlen; this means we cannot rely on memcpy
48146         to null-terminate.
48147
48148         * lib/same.c (STREQ): Remove.
48149         (same_name): Handle the case where the basename ends in trailing '/'.
48150
48151         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
48152         a slash was stripped.  Do not strip the last slash after a
48153         file system prefix.
48154
48155 2001-05-11  Paul Eggert  <eggert@twinsun.com>
48156
48157         * lib/Makefile.am (libfetish_a_SOURCES):
48158         Add strftime.c, since we now compile it on all hosts.
48159
48160         * lib/strftime.c (my_strftime):
48161         Define to nstrftime if emacs, but only if my_strftime is not defined.
48162         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
48163         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
48164         Add one more extra argument: a nanoseconds value.
48165         All uses changed.
48166         (ns): New macro.
48167         (my_strftime function): Add %N format.
48168         (emacs_strftimeu): Renamed from emacs_strftime,
48169         with extra ut argument.
48170
48171 2001-05-09  Paul Eggert  <eggert@twinsun.com>
48172
48173         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
48174
48175 2001-04-21  Jim Meyering  <meyering@lucent.com>
48176
48177         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
48178         doesn't interfere.
48179
48180 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
48181
48182         * m4/ftruncate.m4: Check for chsize.
48183         Link with ftruncate.o unconditionally if ftruncate is missing.
48184         This was required when cross-compiling to i586-mingw32msvc.
48185
48186 2001-04-08  Jim Meyering  <meyering@lucent.com>
48187
48188         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
48189         recomputed; that's necessary when the offset spans a DST transition.
48190         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
48191
48192 2001-04-02  Jim Meyering  <meyering@lucent.com>
48193
48194         * lib/regex.h, regex.c: Update from GNU libc.
48195
48196 2001-03-24  Jim Meyering  <meyering@lucent.com>
48197
48198         * m4/jm-macros.m4: Require autoconf-2.49d.
48199
48200 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
48201
48202         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
48203
48204 2001-03-19  Paul Eggert  <eggert@twinsun.com>
48205
48206         * lib/version-etc.c (version_etc_copyright): Update to 2001.
48207
48208 2001-03-17  Jim Meyering  <meyering@lucent.com>
48209
48210         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
48211         now that the version in autoconf is equivalent.
48212         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
48213
48214         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
48215         Suggestion from Akim Demaille.
48216
48217         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
48218         (jm_PREREQ_TEMPNAME): New function.
48219
48220 2001-03-16  Paul Eggert  <eggert@twinsun.com>
48221
48222         * lib/tempname.c (uint64_t): Define to uintmax_t if
48223         not defined, and if UINT64_MAX is not defined.
48224         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
48225         Reported by John David Anglin.
48226
48227 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
48228
48229         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
48230         resolve alias if codeset is empty.
48231         * lib/config.charset (BeOS): Use wildcard syntax.
48232
48233 2001-03-13  Jim Meyering  <meyering@lucent.com>
48234
48235         * lib/path-concat.c (path_concat)
48236         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
48237         concatenating e.g., `C:' and `foo'.
48238         From Bruno Haible.
48239
48240 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
48241
48242         * lib/localcharset.c (locale_charset): Don't use
48243         setlocale(LC_CTYPE,NULL). Don't return NULL.
48244         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
48245
48246 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
48247
48248         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
48249         support for DOS/DJGPP.
48250
48251 2001-03-01  Paul Eggert  <eggert@twinsun.com>
48252
48253         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
48254         lacks mkstemp.  Compile our own tempname.c if we compile our own
48255         mkstemp.c, as mkstemp relies on tempname.
48256
48257 2001-03-01  Jim Meyering  <meyering@lucent.com>
48258
48259         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
48260         AH_VERBATIM really does output its argument verbatim.
48261
48262 2001-02-28  Paul Eggert  <eggert@twinsun.com>
48263
48264         * lib/Makefile.am (libfetish_a_SOURCES):
48265         Add dup-safer.c, fopen-safer.c.
48266         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
48267
48268         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
48269         * lib/unistd-safer.h: New files.
48270
48271 2001-02-25  Paul Eggert  <eggert@twinsun.com>
48272
48273         The mkstemp replacement is taken from glibc 2.2.2, with some
48274         portability fixes for use outside glibc, as follows:
48275
48276         * lib/tempname.c (struct_stat64): New macro.
48277         (direxists, __gen_tempname): Use it.
48278         This avoids a portability problem with Solaris 8.
48279
48280         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
48281         (<stddef.h>, <stdint.h>, <string.h>):
48282         Include only if STDC_HEADERS || _LIBC.
48283         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
48284         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
48285         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
48286         (__set_errno): Define this macro if <errno.h> doesn't.
48287         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
48288         Define these macros if <stdio.h> doesn't.
48289         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
48290         Define these macros if <sys/stat.h>
48291         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
48292         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
48293         __xstat64): Define if not _LIBC.
48294         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
48295         (__gen_tempname): Invoke gettimeofday only if
48296         HAVE_GETTIMEOFDAY || _LIBC;
48297         otherwise, fall back on plain "time".
48298         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
48299
48300         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
48301
48302         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
48303
48304 2001-02-18  Paul Eggert  <eggert@twinsun.com>
48305
48306         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
48307
48308 2001-02-17  Paul Eggert  <eggert@twinsun.com>
48309
48310         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
48311         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
48312         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
48313         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
48314
48315 2001-02-17  Paul Eggert  <eggert@twinsun.com>
48316
48317         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
48318         Remove workaround macros for hosts that have mbrtowc but not
48319         mbstate_t, as we now insist on proper declarations for both
48320         before using mbrtowc.
48321
48322 2001-02-17  Jim Meyering  <meyering@lucent.com>
48323
48324         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
48325         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
48326         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
48327         UnixWare 7.1.1.
48328
48329         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
48330         rather than AC_CACHE_VAL.
48331
48332 2001-02-17  Jim Meyering  <meyering@lucent.com>
48333
48334         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
48335         around included file name.
48336
48337         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
48338
48339         * lib/strftime.c: Update from GNU libc (the only changes were to
48340         comments).
48341
48342 2001-02-17  Jim Meyering  <meyering@lucent.com>
48343
48344         * lib/regex.c: Update from libc.
48345
48346 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
48347
48348         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
48349         clash.
48350
48351 2001-02-16  Paul Eggert  <eggert@twinsun.com>
48352
48353         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
48354         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
48355         Reported by Mark Hounschell via Paul Eggert.
48356
48357 2001-02-07  Jim Meyering  <meyering@lucent.com>
48358
48359         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
48360
48361 2001-02-05  Jim Meyering  <meyering@lucent.com>
48362
48363         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
48364         it includes the patch required for `large file' support with at least
48365         HP-UX's 10.20 /bin/cc.
48366
48367 2001-02-03  Jim Meyering  <meyering@lucent.com>
48368
48369         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
48370         AS_IF, now that it works once again (mysteriously).
48371         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
48372
48373 2001-01-30  Jim Meyering  <meyering@lucent.com>
48374
48375         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
48376         * m4/chown.m4: Rename conftestchown to conftest.chown.
48377         * m4/rename.m4: s/conftestdir/conftest.d1/ and
48378         s/conftestdir2/conftest.d2/.
48379         * m4/utimes.m4: s/conftestdata/conftest.data/
48380         Inspired by Pavel Roskin's change in autoconf.
48381
48382 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
48383
48384         * lib/config.charset: Update for FreeBSD 4.2.
48385
48386 2001-01-27  Jim Meyering  <meyering@lucent.com>
48387
48388         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
48389         a use of AS_IF.
48390         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
48391
48392 2001-01-26  Jim Meyering  <meyering@lucent.com>
48393
48394         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
48395         quotearg.c includes it.
48396
48397 2001-01-26  Jim Meyering  <meyering@lucent.com>
48398
48399         * lib/quotearg.c: Include stddef.h.
48400         * lib/quote.c: Include stddef.h.
48401         Reported by Axel Kittenberger.
48402
48403         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
48404         line in double quotes so that it evokes a better diagnostic.
48405         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
48406         Reported by Axel Kittenberger.
48407
48408 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
48409
48410         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
48411         as if it was a `charset'.
48412
48413 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
48414
48415         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
48416         has const.
48417
48418 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
48419
48420         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
48421         to avoid a warning.  Add back 'const' to inptr.
48422
48423 2001-01-20  Jim Meyering  <meyering@lucent.com>
48424
48425         Be sure that headers are checked before used in code compiled
48426         for the type checks.
48427         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
48428         In place of that, invoke jm_CHECK_ALL_TYPES.
48429         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
48430         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
48431         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
48432         The check for ssize_t was mistakenly run before the test for unistd.h.
48433
48434         The configure-time check for stdbool.h was missing.
48435         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
48436         (jm_PREREQ_HASH): New function.
48437
48438 2001-01-17  Jim Meyering  <meyering@lucent.com>
48439
48440         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
48441         for autoconf-2.49c.
48442         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
48443
48444 2001-01-16  Jim Meyering  <meyering@lucent.com>
48445
48446         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
48447         From Bruno Haible.
48448
48449 2001-01-14  Jim Meyering  <meyering@lucent.com>
48450
48451         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
48452         foo and bar.  Create conftestdir/ in the script, not in the C code.
48453         Remove directories in the script, not in the C code.
48454         Remove conftestdir{,2} before trying to create the directory.
48455         Make the entire configure script fail if the mkdir fails.
48456
48457 2001-01-14  Jim Meyering  <meyering@lucent.com>
48458
48459         * lib/rename.c: New file.  From Volker Borchert.
48460         Include stdlib.h, string.h or strings.h, and xalloc.h.
48461         Use strip_trailing_slashes rather than open-coding it.
48462
48463 2001-01-03  Paul Eggert  <eggert@twinsun.com>
48464
48465         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
48466
48467 2001-01-03  Jim Meyering  <meyering@lucent.com>
48468
48469         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
48470         of local `inptr' to avoid warning with some system declarations of
48471         iconv.
48472
48473 2001-01-02  Volker Borchert  <bt@teknon.de>
48474
48475         * m4/rename.m4: New file.
48476         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
48477
48478 2001-01-01  Jim Meyering  <meyering@lucent.com>
48479
48480         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
48481         even on systems with utmpx.h.  It's necessary for the declaration of
48482         utmp's ut_user member.  Reported by Andreas Jaeger.
48483
48484         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
48485         available. They are required for the declarations of getgrgid and
48486         getpwuid resp.
48487         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
48488         Reported by Andreas Jaeger.
48489
48490 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
48491
48492         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
48493         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
48494         so `make install' also works in VPATH builds.
48495
48496 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
48497
48498         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
48499         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
48500         can be used in subdirectories.
48501
48502 2000-12-29  Paul Eggert  <eggert@twinsun.com>
48503
48504         * lib/modechange.c: Do not assume that mode_t uses the
48505         traditional octal encoding.  E.g. "chmod 1 FOO" should set
48506         the other-execute bit of FOO even if S_IXOTH != 1.
48507
48508         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
48509         WOTH, XOTH, ALLM): New macros.
48510         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
48511          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
48512         Use them.
48513         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
48514         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
48515         (mode_compile):
48516         No need to use uintmax_t; unsigned long is long enough.
48517         Don't bother to get suffix since we don't use it.
48518
48519 2000-12-26  Jim Meyering  <meyering@lucent.com>
48520
48521         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
48522         better with autoheader.
48523
48524 2000-12-24  Jim Meyering  <meyering@lucent.com>
48525
48526         * lib/hash.c (is_prime): Return explicit boolean values.
48527         (hash_get_first): Return NULL to appease Irix5.6's 89.
48528         Reported by Nelson Beebe.
48529
48530 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
48531
48532         * lib/localcharset.c (locale_charset): Add support for Win32.
48533
48534 2000-12-18  Paul Eggert  <eggert@twinsun.com>
48535
48536         * lib/physmem.h, lib/physmem.c: New files.
48537
48538         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
48539         (noinst_HEADERS): Add physmem.h.
48540
48541         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
48542         't' for compatibility with Solaris 8 sort.
48543
48544 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
48545
48546         * lib/config.charset: Add support for BeOS.
48547
48548 2000-12-17  Jim Meyering  <meyering@lucent.com>
48549
48550         * m4/dos.m4 (jm_AC_DOS): New file and macro.
48551         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
48552
48553 2000-12-16  Jim Meyering  <meyering@lucent.com>
48554
48555         This bug had a serious impact on chown: `chown N:M FILE' (for integer
48556         N and M) would have treated it like `chown N:N FILE'.
48557
48558         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
48559
48560 2000-12-16  Jim Meyering  <meyering@lucent.com>
48561
48562         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
48563         SHELLS_FILE to a file name that's useful on djgpp systems.
48564         Include stdlib.h.
48565         (ADDITIONAL_DEFAULT_SHELLS): Define.
48566         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
48567         Based mostly on a patch from Prashant TR.
48568
48569 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
48570
48571         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
48572         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
48573         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
48574
48575 2000-12-08  Andreas Schwab  <schwab@suse.de>
48576
48577         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
48578         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
48579
48580 2000-12-07  Jim Meyering  <meyering@lucent.com>
48581
48582         * lib/stripslash.c (ISSLASH): Define.
48583         (strip_trailing_slashes): Use ISSLASH rather than comparing against
48584         `/'.
48585         From Prashant TR.
48586
48587         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
48588         (dir_name_r): Declare this function as static.
48589         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
48590         manifest itself on a name containing a mix of slashes and
48591         backslashes.
48592         Make this function work with names starting with a DOS-style
48593         drive letter and colon prefix.
48594         (dir_name): Append `.' if necessary.
48595         Based mostly on patches from Prashant TR and Eli Zaretskii.
48596
48597         * lib/dirname.h (dir_name_r): Remove prototype.
48598
48599 2000-12-06  Paul Eggert  <eggert@twinsun.com>
48600
48601         * m4/off_t-format.m4: Remove this file.
48602         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
48603
48604 2000-12-06  Jim Meyering  <meyering@lucent.com>
48605
48606         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
48607         replacement strtoull, we may well need the replacement strtoul, too.
48608         Check for declarations of strtoul and strtoull.
48609         Check for strtol.  Mainly as a cue to cause automake to include
48610         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
48611         Check for limits.h -- strtol.c needs it.
48612
48613 2000-12-05  Jim Meyering  <meyering@lucent.com>
48614
48615         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
48616
48617 2000-12-04  Jim Meyering  <meyering@lucent.com>
48618
48619         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
48620         Also include memory.h, stdlib.h, unistd.h if appropriate.
48621         Reported by Andreas Jaeger (conflicting declaration of malloc).
48622
48623 2000-12-02  Jim Meyering  <meyering@lucent.com>
48624
48625         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
48626         * m4/jm-macros.m4 (jm_MACROS): require it.
48627
48628 2000-12-02  Jim Meyering  <meyering@lucent.com>
48629
48630         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
48631
48632 2000-12-01  Paul Eggert  <eggert@twinsun.com>
48633
48634         * lib/memrchr.c: Include <config.h> before any system include file.
48635
48636 2000-11-30  Jim Meyering  <meyering@lucent.com>
48637
48638         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
48639
48640 2000-11-30  Jim Meyering  <meyering@lucent.com>
48641
48642         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
48643
48644 2000-11-29  Paul Eggert  <eggert@twinsun.com>
48645
48646         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
48647
48648 2000-11-26  Jim Meyering  <meyering@lucent.com>
48649
48650         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
48651
48652 2000-11-22  Paul Eggert  <eggert@twinsun.com>
48653
48654         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
48655         size of (size_t) -1; it's not portable.
48656
48657 2000-11-17  Jim Meyering  <meyering@lucent.com>
48658
48659         * lib/strstr.c: Update from GNU libc.
48660
48661 2000-11-17  Akim Demaille  <akim@epita.fr>
48662
48663         * lib/obstack.h: Formatting changes.
48664         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
48665         prevent type checking.
48666         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
48667         cast the value to (void *): assigning a `foo *' to a `void *'
48668         variable is valid.
48669         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
48670
48671 2000-11-16  Jim Meyering  <meyering@lucent.com>
48672
48673         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
48674
48675 2000-11-11  Jim Meyering  <meyering@lucent.com>
48676
48677         * lib/error.c: Add a couple #includes, merging from GNU libc version.
48678
48679 2000-11-10  Jim Meyering  <meyering@lucent.com>
48680
48681         * lib/obstack.h: Update from GNU libc.
48682         * lib/obstack.c: Likewise.
48683
48684 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
48685
48686         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
48687
48688 2000-11-06  Paul Eggert  <eggert@twinsun.com>
48689
48690         * lib/getusershell.c (setusershell): Use rewind rather than
48691         fseek/fseeko, to avoid configuration hassles with fseeko.
48692         Don't bother opening SHELLS_FILE if shellstream is NULL;
48693         it's not necessary.
48694
48695 2000-11-05  Jim Meyering  <meyering@lucent.com>
48696
48697         * lib/makepath.h (make_dir): Declare.
48698         * lib/makepath.c (make_dir): Remove `static' attribute.
48699         Tweak a comment.
48700
48701 2000-11-04  Jim Meyering  <meyering@lucent.com>
48702
48703         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
48704
48705 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
48706
48707         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
48708         last one in a bucket, advance to the next bucket.
48709
48710 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
48711
48712         * lib/fnmatch.c: Do not comment out all the code if we are using
48713         the GNU C library, because in some cases we are replacing buggy
48714         code in the GNU C library itself.
48715
48716 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
48717
48718         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
48719         (regex_compile): Catch bogus \(\1\).
48720
48721 2000-10-30  Paul Eggert  <eggert@twinsun.com>
48722
48723         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
48724         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
48725         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
48726
48727 2000-10-30  Paul Eggert  <eggert@twinsun.com>
48728
48729         * lib/error.h, getline.h, modechange.h:
48730         Remove "2000" from Copyright line, as the file hasn't been
48731         changed this year other than in the copyright notice.
48732
48733         * lib/xalloc.h: Add "2000" to Copyright line, as this file
48734         was changed this year.
48735
48736 2000-10-29  Jim Meyering  <meyering@lucent.com>
48737
48738         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
48739         renaming.
48740         * m4/ls-mntd-fs.m4: Likewise
48741
48742 2000-10-29  Jim Meyering  <meyering@lucent.com>
48743
48744         * lib/xstat.in: Fix grammar in comment.
48745
48746 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
48747
48748         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
48749         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
48750         doesn't define __restrict_arr.
48751
48752 2000-10-28  Jim Meyering  <meyering@lucent.com>
48753
48754         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
48755         (jm_PREREQ_MEMCHR): New function.
48756
48757 2000-10-28  Jim Meyering  <meyering@lucent.com>
48758
48759         * lib/memchr.c: Update from libc.
48760         Adjust for portability:
48761         [HAVE_STDLIB_H]: Include stdlib.h.
48762         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
48763         Undef __memchr, too.
48764         [!weak_alias]: Define __memchr to memchr.
48765
48766         * lib/regex.c: Update from libc.
48767         * lib/regex.h: Likewise.
48768         * lib/getopt1.c: Likewise.
48769         * lib/memcmp.c: Likewise.
48770
48771         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
48772         Avoid using fseek, when possible -- it's broken by design.
48773         Patch by Ulrich Drepper.
48774
48775 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
48776
48777         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
48778         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
48779         Giving in to popular pressure to shut up the compiler with casts.
48780
48781 2000-10-26  Jim Meyering  <meyering@lucent.com>
48782
48783         * lib/strftime.c: Update from libc.
48784
48785 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
48786
48787         * regex.c: More `unsigned char' -> `re_char' changes.
48788         Also change several `int' into `re_wchar_t'.
48789         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
48790         (PUSH_FAILURE_POINTER): Don't cast any more.
48791         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
48792         We want GCC to complain, since this piece of code makes
48793         re_match non-reentrant, which *should* be fixed.
48794         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
48795         (EXTEND_BUFFER): Use RETALLOC.
48796         (SET_LIST_BIT): Don't cast.
48797         (re_wchar_t): New type.
48798         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
48799         that those two functions will always properly return.
48800         (IMMEDIATE_QUIT_CHECK): Cast to void.
48801         (analyse_first): Use recursion rather than an explicit stack.
48802         (re_compile_fastmap): Can't fail anymore.
48803         (re_search_2): Don't check re_compile_fastmap for failure.
48804         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
48805         Now also sets the new value (passed in a new argument).
48806         (re_match_2_internal): Use it.
48807         Also, use a new var `reg' of type size_t when looping through regs
48808         rather than reuse the inappropriate `mcnt'.
48809
48810 2000-10-25  Jim Meyering  <meyering@lucent.com>
48811
48812         * lib/obstack.c: Update from libc.
48813
48814 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
48815
48816         * regex.c (regex_compile): Change the way of handling a range from
48817         a char less than 256 to a char not less than 256.
48818
48819 2000-10-24  Andrew Innes  <andrewi@gnu.org>
48820
48821         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
48822         NT-Emacs only.
48823         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
48824         so that re_search functions only quit when callers expect them to.
48825
48826 2000-10-23  Jim Meyering  <meyering@lucent.com>
48827
48828         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
48829         wrong.  That set_locale call must not have any side effects.
48830         From Paul Eggert.
48831
48832 2000-10-22  Jim Meyering  <meyering@lucent.com>
48833
48834         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
48835         [CYCLIC]: Remove now-unused definition.
48836
48837         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
48838         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
48839         Suggestion from Ulrich Drepper.
48840
48841 2000-10-21  Jim Meyering  <meyering@lucent.com>
48842
48843         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
48844         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
48845         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
48846
48847 2000-10-21  Jim Meyering  <meyering@lucent.com>
48848
48849         * lib/dirname.c (memrchr): Declare if necessary.
48850         (dir_name): Remove the restriction that there be no
48851         trailing slashes.  Now, this code skips past them, effectively
48852         ignoring them.
48853         [TEST_DIRNAME] (main): New unit tests.
48854
48855         * lib/memrchr.c: New file from GNU libc.
48856         Undef __memrchr, too.
48857         [!weak_alias]: Define __memrchr to memrchr.
48858         Guard weak_alias use with `#ifdef weak_alias'.
48859
48860 2000-10-21  Jim Meyering  <meyering@lucent.com>
48861
48862         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
48863         (dir_name): Use dir_name_r.
48864         * lib/dirname.h (dir_name_r): Declare it.
48865
48866 2000-10-17  Jim Meyering  <meyering@lucent.com>
48867
48868         * lib/quote.h (PARAMS): Define and use.
48869         Reported by Akim Demaille.
48870
48871         * lib/getopt.c: Update from libc.
48872
48873 2000-10-16  Jim Meyering  <meyering@lucent.com>
48874
48875         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
48876         setlocale.
48877         From Jan Fedak.
48878
48879 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
48880
48881         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
48882
48883 2000-09-25  Jim Meyering  <meyering@lucent.com>
48884
48885         * lib/md5.h (rol): Define (from GnuPG).
48886
48887         * lib/sha.c: Give credit (GnuPG) where due.
48888         (M): Use rol rather than open-coding it.
48889         Add a FIXME comment.
48890
48891 2000-09-21  Jim Meyering  <meyering@lucent.com>
48892
48893         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
48894         Reported by Michael Stone.
48895
48896 2000-09-20  Jim Meyering  <meyering@lucent.com>
48897
48898         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
48899         (noinst_HEADERS): Add sha.h.
48900         Based on code from Scott G. Miller and from GnuPG.
48901
48902 2000-09-18  Jim Meyering  <meyering@lucent.com>
48903
48904         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
48905         LIBS. Otherwise, everyone ends up linking with -lelf for some
48906         configurations.
48907         Reported by Mike Stone.
48908
48909 2000-09-15  Jim Meyering  <meyering@lucent.com>
48910
48911         * lib/regex.c: Update from libc.
48912
48913 2000-09-10  Jim Meyering  <meyering@lucent.com>
48914
48915         * lib/getopt.c (_getopt_internal): Update from glibc.
48916
48917 2000-09-09  Jim Meyering  <meyering@lucent.com>
48918
48919         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
48920         think it should be used as a general replacement for isascii.
48921         * lib/fnmatch.c: Likewise.
48922         * lib/mbswidth.c: Likewise
48923         * lib/regex.c: Likewise.
48924
48925         Don't use atoi.
48926         * lib/userspec.c: Include sys/param.h and limits.h.
48927         Include xstrtol.h.
48928         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
48929         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
48930         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
48931         UID, GID.  Check range.
48932
48933 2000-09-06  Jim Meyering  <meyering@lucent.com>
48934
48935         * lib/getopt.c (_getopt_internal): Update from glibc.
48936
48937 2000-08-30  Jim Meyering  <meyering@lucent.com>
48938
48939         * lib/strftime.c: Merge in changes from GNU libc.
48940
48941 2000-08-26  Jim Meyering  <meyering@lucent.com>
48942
48943         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
48944         * m4/fpending.m4: New file.
48945
48946 2000-08-26  Jim Meyering  <meyering@lucent.com>
48947
48948         * lib/closeout.c: Include "__fpending.h".
48949         (close_stdout_status): Return right away if there's nothing to flush.
48950
48951         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
48952         * lib/__fpending.c: New file.
48953         * lib/__fpending.h: New file.
48954
48955 2000-08-20  Jim Meyering  <meyering@lucent.com>
48956
48957         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
48958         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
48959         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
48960
48961 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
48962
48963         Improve fileutils installation on systems where running
48964         programs (like install) can't be unlinked.
48965         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
48966         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
48967
48968 2000-08-07  Paul Eggert  <eggert@twinsun.com>
48969
48970         Standardize on "memory exhausted" instead of "Memory exhausted"
48971         or "virtual memory exhausted".
48972         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
48973         "virtual memory exhausted".
48974         * lib/same.c (same_name): Invoke xalloc_die instead of printing
48975         our own message.
48976         * lib/userspec.c (parse_user_spec): Likewise.
48977         * lib/bumpalloc.h: comment fix
48978         * lib/same.c, userspec.c: Include xalloc.h.
48979
48980         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
48981         not char *const and pointing to a constant array.
48982         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
48983         (xrealloc): Comment fix.
48984
48985         * lib/userspec.c (parse_user_spec):
48986         Don't translate a message until just before returning,
48987         to avoid unnecessary translation.
48988
48989 2000-08-07  Jim Meyering  <meyering@lucent.com>
48990
48991         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
48992         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
48993         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
48994         getgroups.c, gethostname.c, getopt.h, group-member.c,
48995         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
48996         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
48997         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
48998         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
48999         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
49000         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
49001         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
49002         yesno.c: Back out Copyright date changes for each file with no change
49003         this year.  This eases coordination with other programs using the same
49004         source code modules.  From Paul Eggert.
49005
49006 2000-08-06  Paul Eggert  <eggert@twinsun.com>
49007
49008         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
49009         not char, for compatibility with glibc 2.1.3 strftime.c.
49010
49011 2000-08-03  Greg McGary  <greg@mcgary.org>
49012
49013         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
49014         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
49015         (EXTEND_BUFFER): Use them.
49016
49017 2000-08-01  Jim Meyering  <meyering@lucent.com>
49018
49019         * lib/dirname.c (ISSLASH): Define.
49020         (BACKSLASH_IS_PATH_SEPARATOR): Define.
49021         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
49022         both `\' and `/' may be use as path separators.
49023         Based on a patch from Prashant TR.
49024
49025 2000-07-31  Paul Eggert  <eggert@twinsun.com>
49026
49027         * lib/quotearg.c (quotearg_n_options): Don't make the initial
49028         slot vector a constant, since it might get modified.
49029
49030 2000-07-31  Jim Meyering  <meyering@lucent.com>
49031
49032         * lib/xmalloc.c: Use `virtual memory exhausted', not
49033         `Memory exhausted'.
49034         * lib/obstack.c (print_and_abort): Likewise.
49035
49036 2000-07-30  Paul Eggert  <eggert@twinsun.com>
49037
49038         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
49039         buffer, so that the caller can always quote one small
49040         component of a "memory exhausted" message in slot 0.
49041         From a suggestion by Jim Meyering.
49042
49043 2000-07-30  Jim Meyering  <meyering@lucent.com>
49044
49045         * lib/makepath.c (make_path): Quote the other instance, too.
49046
49047         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
49048         (STATIC_BUF_SIZE): Define.
49049         (quotearg_n_options): Use only statically allocated storage when
49050         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
49051         than STATIC_BUF_SIZE.
49052
49053 2000-07-29  Jim Meyering  <meyering@lucent.com>
49054
49055         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
49056         * lib/dirname.c (dir_name): Likewise.
49057
49058         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
49059         `/'.
49060
49061         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
49062         (dir_name): Assert that there are no trailing slashes.
49063
49064 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
49065
49066         * lib/mbswidth.h (mbswidth): Add a flags argument.
49067         (mbswidth): New declaration.
49068         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
49069         * lib/mbswidth.c (mbswidth): Add a flags argument.
49070         (mbsnwidth): New function.
49071
49072 2000-07-24  Jim Meyering  <meyering@lucent.com>
49073
49074         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
49075
49076 2000-07-23  Paul Eggert  <eggert@twinsun.com>
49077
49078         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
49079
49080 2000-07-23  Paul Eggert  <eggert@twinsun.com>
49081
49082         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
49083         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
49084         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
49085         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
49086         invoke multibyte primitives.
49087
49088 2000-07-23  Paul Eggert  <eggert@twinsun.com>
49089
49090         * lib/quotearg.c:
49091         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
49092         so that mbstate_t is always defined.
49093
49094         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
49095         be 1 in at least one GCC installation, and this configuration
49096         error is likely to be common.  Ignoring MB_LEN_MAX hurts
49097         performance on hosts that have mbrtowc but have only unibyte
49098         locales, but I assume these hosts are rare.
49099
49100 2000-07-23  Paul Eggert  <eggert@twinsun.com>
49101
49102         * lib/mbswidth.c (_XOPEN_SOURCE):
49103         Don't define; this causes problems on Solaris 7.
49104         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
49105
49106 2000-07-23  Jim Meyering  <meyering@lucent.com>
49107
49108         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
49109         too: getgrgid, getpwuid, getuid.
49110
49111 2000-07-23  Jim Meyering  <meyering@lucent.com>
49112
49113         * lib/basename.c (base_name): Add an assertion.
49114
49115 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
49116
49117         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
49118         shadow its mbsinit function.
49119
49120 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
49121
49122         * lib/mbswidth.h: New file.
49123         * lib/mbswidth.c: New file.
49124         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
49125         (noinst_HEADERS): Add mbswidth.h.
49126
49127 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
49128
49129         * lib/config.charset: Add support for FreeBSD. Improve support for
49130         HP-UX and IRIX 6.
49131
49132 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
49133
49134         * m4/mbswidth.m4: New file.
49135         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
49136
49137 2000-07-15  Jim Meyering  <meyering@lucent.com>
49138
49139         * lib/makepath.c: Include quote.h.
49140         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
49141         corresponding argument in a `quote (...)' call.
49142         Give better diagnostics.
49143
49144         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
49145         (noinst_HEADERS): Add quote.h.
49146
49147         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
49148         from tar's src/misc.c.
49149         * lib/quote.h: New file.  Prototypes for same.
49150
49151 2000-07-14  Paul Eggert  <eggert@twinsun.com>
49152
49153         From a suggestion by Bruno Haible.
49154         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
49155         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
49156         to decide whether to define the BeOS workaround macro;
49157         this adjusts to the change to AC_MBSTATE_T.
49158
49159 2000-07-14  Jim Meyering  <meyering@lucent.com>
49160
49161         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
49162         jm_AC_TYPE_UINTMAX_T.
49163
49164 2000-07-13  Paul Eggert  <eggert@twinsun.com>
49165
49166         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
49167
49168         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
49169         quotearg_buffer_restyled): Add support for
49170         clocale_quoting_style.  Undo previous change to
49171         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
49172         and "{RIGHT QUOTATION MARK}" msgids.
49173
49174 2000-07-10  Paul Eggert  <eggert@twinsun.com>
49175
49176         From a suggestion by Bruno Haible.
49177         * m4/mbstate_t.m4 (AC_MBSTATE_T):
49178         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
49179         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
49180         and mbstate_t, to a single-part test that simply defines mbstate_t.
49181         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
49182         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
49183
49184 2000-07-10  Jim Meyering  <meyering@lucent.com>
49185
49186         * m4/strerror_r.m4: Mirror the correction made in autoconf.
49187
49188         * m4/gnu-source.m4: Output to confdefs.h directly.
49189         Suggestion from Akim Demaille.
49190
49191 2000-07-09  Paul Eggert  <eggert@twinsun.com>
49192
49193         The old behavior of quoting `like this' doesn't look good with
49194         newer, ISO-style fonts.  See:
49195         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
49196
49197         Instead, quote "like this" by default.  Let the translator
49198         tailor the locale-specific quoting behavior by providing
49199         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
49200
49201         * lib/quotearg.c (N_): New macro.
49202         (gettext_default): New function.
49203         (quotearg_buffer_restyled): Use
49204         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
49205         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
49206
49207 2000-07-09  Jim Meyering  <meyering@lucent.com>
49208
49209         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
49210         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
49211
49212         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
49213         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
49214
49215 2000-07-09  Jim Meyering  <meyering@lucent.com>
49216
49217         * lib/Most files: Update copyright dates to include 2000.
49218
49219 2000-07-08  Jim Meyering  <meyering@lucent.com>
49220
49221         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
49222         if not defined.
49223         (xgethostname): Remove now-unnecessary #ifdef.
49224         Move declaration of `err' into loop where it's used.
49225
49226 2000-07-05  Paul Eggert  <eggert@twinsun.com>
49227         and Bruno Haible  <haible@clisp.cons.org>
49228
49229         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
49230         only if the test for an object-type mbstate_t fails.  This
49231         prevents us from mistakenly reporting that mbstate_t is a
49232         system object type after we "#define mbstate_t int" to work
49233         around its lack.
49234
49235 2000-07-05  Paul Eggert  <eggert@twinsun.com>
49236         and Bruno Haible  <haible@clisp.cons.org>
49237
49238         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
49239
49240 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
49241
49242         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
49243         to strerror_r.
49244         Include <ctype.h> for use of isalpha.
49245
49246 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
49247
49248         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
49249         by allocating a larger buffer. Test the gethostname return value for
49250         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
49251         returns an error and ENAMETOOLONG isn't defined.
49252
49253 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
49254
49255         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
49256         dimension.
49257
49258 2000-07-04  Jim Meyering  <meyering@lucent.com>
49259
49260         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
49261         of the deprecated AC_CHECKING.
49262
49263 2000-07-04  Jim Meyering  <meyering@lucent.com>
49264
49265         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
49266         Reported by Bruno Haible.
49267
49268 2000-07-04  Jim Meyering  <meyering@lucent.com>
49269
49270         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
49271         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
49272         lacks mbrtowc.
49273
49274 2000-07-03  Paul Eggert  <eggert@twinsun.com>
49275
49276         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
49277         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
49278
49279 2000-07-03  Paul Eggert  <eggert@twinsun.com>
49280         and Bruno Haible  <haible@clisp.cons.org>
49281
49282         * lib/quotearg.c (mbrtowc):
49283         Assign to *pwc, and return 1 only if result is nonzero.
49284         (iswprint): Use ISPRINT when substituting our own mbrtowc.
49285
49286 2000-07-03  Jim Meyering  <meyering@lucent.com>
49287
49288         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
49289
49290 2000-07-03  Jim Meyering  <meyering@lucent.com>
49291
49292         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
49293         This is necessary to get a definition of e.g., UTMP_FILE on
49294         HP-UX 10.20.
49295         From Bob Proulx.
49296
49297 2000-07-02  Jim Meyering  <meyering@lucent.com>
49298
49299         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
49300
49301         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
49302         AC_LIBOBJ(function_name).
49303         * m4/chown.m4: Likewise.
49304         * m4/fnmatch.m4: Likewise.
49305         * m4/ftruncate.m4: Likewise.
49306         * m4/getgroups.m4: Likewise.
49307         * m4/getline.m4: Likewise.
49308         * m4/group-member.m4: Likewise.
49309         * m4/jm-macros.m4: Likewise.
49310         * m4/lstat.m4: Likewise.
49311         * m4/malloc.m4: Likewise.
49312         * m4/memcmp.m4: Likewise.
49313         * m4/nanosleep.m4: Likewise.
49314         * m4/putenv.m4: Likewise.
49315         * m4/realloc.m4: Likewise.
49316         * m4/regex.m4: Likewise.
49317         * m4/stat.m4: Likewise.
49318         * m4/strftime.m4: Likewise.
49319
49320 2000-07-02  Jim Meyering  <meyering@lucent.com>
49321
49322         * lib/quotearg.c (mbstate_t): Don't define here.
49323
49324 2000-07-02  Jim Meyering  <meyering@lucent.com>
49325
49326         * lib/nanosleep.c (SIGCONT): Define if not already defined.
49327
49328 2000-07-01  Jim Meyering  <meyering@lucent.com>
49329
49330         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
49331
49332 2000-07-01  Jim Meyering  <meyering@lucent.com>
49333
49334         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
49335         problem.
49336
49337 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
49338
49339         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
49340         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
49341
49342 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
49343
49344         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
49345         per change in ../m4/ls-mntd-fs.m4.
49346         (read_filesystem_list): Ignore symbolic links.
49347
49348 2000-06-29  Jim Meyering  <meyering@lucent.com>
49349
49350         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
49351         for declaration of strcmp.
49352
49353         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
49354
49355         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
49356         Avoid warning by casting result to `char *' to remove `const'.
49357
49358 2000-06-28  Jim Meyering  <meyering@lucent.com>
49359
49360         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
49361         included by quotearg.c, for which we perform this test.  From
49362         Bruno Haible.
49363
49364 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
49365
49366         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
49367         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
49368         <utmpx.h> exists, put readutmp.o into LIBOBJS.
49369
49370 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
49371
49372         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
49373
49374 2000-06-26  Paul Eggert  <eggert@twinsun.com>
49375
49376         savedir now sets errno on failure and invokes xmalloc to get memory.
49377         Fix a couple of other minor bugs while we're at it.
49378
49379         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
49380         (NAMLEN): Remove macro.
49381         (malloc, realloc): Remove decls.
49382         (stpcpy): Likewise.
49383         ("xalloc.h"): Include.
49384         (NAME_SIZE_DEFAULT): New macro.
49385         (savedir): Use xmalloc / xrealloc to allocate memory.
49386         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
49387         Skip "" directory entries.
49388         Use strlen to calculate directory entry length, since the old method
49389         is rarely used these days and isn't worth supporting.
49390         Don't use a pointer after freeing it.
49391         Check for integer overflow when calculating allocation size.
49392         Use memcpy to copy entries, instead of stpcpy.
49393         Set errno properly when returning NULL.
49394         Check for readdir error.
49395
49396 2000-06-26  Jim Meyering  <meyering@lucent.com>
49397
49398         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
49399
49400 2000-06-25  Jim Meyering  <meyering@lucent.com>
49401
49402         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
49403         Linux header bug when _XOPEN_SOURCE is defined to 500.
49404
49405 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
49406
49407         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
49408         deficiency.
49409
49410 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
49411
49412         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
49413         Include xalloc.h.
49414         Don't include <stdlib.h>.  Don't declare malloc, realloc.
49415
49416 2000-06-24  Jim Meyering  <meyering@lucent.com>
49417
49418         * m4/strerror_r.m4: Revive this file -- to try out an experimental
49419         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
49420         for which strerror does return char*, but which lacks a conveniently
49421         accessible declaration of the function.  If the compile-test says
49422         strerror_r doesn't work, then resort to a `run'-test that works on
49423         BeOS and segfaults on DEC Unix.
49424
49425 2000-06-24  Jim Meyering  <meyering@lucent.com>
49426
49427         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
49428
49429 2000-06-23  Paul Eggert  <eggert@twinsun.com>
49430
49431         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
49432         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
49433
49434 2000-06-23  Paul Eggert  <eggert@twinsun.com>
49435
49436         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
49437         (mbrtowc, mbstate_t): Define substitutes if
49438         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
49439         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
49440         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
49441
49442 2000-06-23  Jim Meyering  <meyering@lucent.com>
49443
49444         * m4/afs.m4: Add missing AC_MSG_RESULT.
49445         Reported by Bruno Haible.
49446
49447         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
49448         Suggestion from Bruno Haible.
49449
49450 2000-06-23  Jim Meyering  <meyering@lucent.com>
49451
49452         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
49453
49454 2000-06-21  Jim Meyering  <meyering@lucent.com>
49455
49456         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
49457
49458 2000-06-21  Jim Meyering  <meyering@lucent.com>
49459
49460         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
49461         (noinst_HEADERS): Add getstr.h.
49462
49463         * lib/getline.c (getstr): Move into a separate file.
49464         * lib/getstr.c (getstr): New file, extracted from getline.c, with
49465         the following changes: new parameter, delim2; both delim[12]
49466         parameters have type `int', not `char'.  The latter would lose
49467         with 8-bit delimiters.
49468         * lib/getstr.h: New file.
49469
49470 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
49471
49472         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
49473         than 1024, return a memory chunk of least possible size, instead
49474         of size PATH_MAX + 2. In the loop, increment the size proportionally.
49475         Use free/xmalloc instead of xrealloc to avoid copying for very long
49476         paths.
49477
49478 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
49479
49480         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
49481         the empty string.
49482
49483 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
49484
49485         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
49486         address, not strdup.  Include <stdlib.h> and don't declare free().
49487
49488 2000-06-19  Jim Meyering  <meyering@lucent.com>
49489
49490         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
49491
49492 2000-06-18  Jim Meyering  <meyering@lucent.com>
49493
49494         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
49495
49496         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
49497         `checking whether...' message to be consistent with that of the
49498         lstat test.
49499
49500 2000-06-18  Jim Meyering  <meyering@lucent.com>
49501
49502         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
49503         Besides, these days every porting target provides a mkdir function.
49504
49505         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
49506         needed. (this snippet comes from src/system.h).
49507
49508 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
49509
49510         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
49511
49512 2000-06-15  Paul Eggert  <eggert@twinsun.com>
49513
49514         * lib/human.c (adjust_value): New function.
49515         (human_readable_inexact): Apply rounding style even when
49516         printing approximate values.
49517
49518 2000-06-14  Paul Eggert  <eggert@twinsun.com>
49519
49520         * lib/human.c (human_readable_inexact): Allow an input block
49521         size that is not a multiple of the output block size, and vice versa.
49522         Reported by Piergiorgio Sartor.
49523
49524 2000-06-14  Paul Eggert  <eggert@twinsun.com>
49525
49526         * lib/getdate.y (get_date): Apply relative times after time
49527         zone indicator, not before.  Reported by Todd A. Jacobs.
49528
49529 2000-06-13  Jim Meyering  <meyering@lucent.com>
49530
49531         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
49532
49533         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
49534
49535 2000-06-12  Paul Eggert  <eggert@twinsun.com>
49536
49537         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
49538
49539 2000-06-12  Jim Meyering  <meyering@lucent.com>
49540
49541         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
49542         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
49543         optional argument.
49544         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
49545         the optional argument, `lib'.
49546
49547 2000-06-08  Jim Meyering  <meyering@lucent.com>
49548
49549         * m4/largefile.m4: Remove file (now that it's part of autoconf).
49550
49551 2000-06-04  Paul Eggert  <eggert@twinsun.com>
49552
49553         Rewrite largefile configuration so that we don't need to run
49554         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
49555         AC_CANONICAL_HOST in configure.in -- jmm]
49556
49557         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
49558         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
49559         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
49560         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
49561         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
49562         All uses changed.
49563         Instead of inspecting the output of getconf, try to compile the
49564         test program without and with the macro definition.
49565         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
49566         for getconf.  Instead, check for the needed flags by compiling
49567         test programs.
49568
49569 2000-06-04  Paul Eggert  <eggert@twinsun.com>
49570
49571         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
49572
49573 2000-06-04  Jim Meyering  <meyering@lucent.com>
49574
49575         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
49576         SunOS 4.1.4 for which gid_t is an unsigned type.
49577
49578 2000-06-03  Jim Meyering  <meyering@lucent.com>
49579
49580         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
49581         now that autoconf requires that.
49582
49583         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
49584         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
49585         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
49586
49587 2000-06-03  Jim Meyering  <meyering@lucent.com>
49588
49589         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
49590
49591 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
49592
49593         * m4/glibc21.m4: New file.
49594         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
49595
49596 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
49597
49598         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
49599         newer, don't install charset.alias.
49600         * lib/config.charset: Change the Linux/glibc rules so they become empty
49601         on glibc-2.1 or newer.
49602
49603 2000-06-02  Jim Meyering  <meyering@lucent.com>
49604
49605         * lib/mountlist.c: Back out last change.  Instead, do this...
49606         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
49607         me_dummy member using the same `ignore'-testing code.
49608         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
49609         fs_type strings.
49610         From Mark D. Roth.
49611
49612 2000-05-29  Jim Meyering  <meyering@lucent.com>
49613
49614         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
49615         mounts with the `ignore' attribute.  Based on a patch from
49616         Mark D. Roth.
49617
49618 2000-05-28  Jim Meyering  <meyering@lucent.com>
49619
49620         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
49621         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
49622         * m4/stat.m4: Likewise.
49623         * m4/lstat.m4: Likewise.
49624         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
49625
49626         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
49627         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
49628
49629 2000-05-26  Jim Meyering  <meyering@lucent.com>
49630
49631         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
49632
49633 2000-05-24  Jim Meyering  <meyering@lucent.com>
49634
49635         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
49636         autoconf requires that.
49637         * m4/lib-check.m4: Likewise.
49638         * m4/jm-macros.m4: Likewise.
49639         * m4/strftime.m4: Likewise.
49640
49641         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
49642         AC_CHECK_DECLS, now that autoconf requires that.
49643
49644 2000-05-22  Jim Meyering  <meyering@lucent.com>
49645
49646         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
49647         * m4/lstat.m4: Likewise.
49648
49649 2000-05-22  Jim Meyering  <meyering@lucent.com>
49650
49651         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
49652
49653 2000-05-20  Jim Meyering  <meyering@lucent.com>
49654
49655         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
49656         (jm_PREREQ): Use it.
49657
49658 2000-05-18  Jim Meyering  <meyering@lucent.com>
49659
49660         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
49661         back, too, since it may have been modified by allocate_entry.
49662         (hash_delete): Rewrite to use neither the assignment operator
49663         nor the comma operator in an if-expression.
49664
49665 2000-05-15  Paul Eggert  <eggert@twinsun.com>
49666
49667         * lib/closeout.c:
49668         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
49669         Remove; no longer needed.
49670         "quotearg.h": Add include.
49671         (file_name): Do not bother to explicitly initialize to NULL; it's less
49672         efficient on some hosts.
49673         (close_stdout_status): Remove test as to whether stdout was already
49674         closed; it breaks for the case "echo x | sort >&-".
49675         Quote file name colons.
49676         Do not assume that _("write error") lacks format strings.
49677
49678 2000-05-15  Jim Meyering  <meyering@lucent.com>
49679
49680         * lib/version-etc.c (version_etc_copyright): Update the copyright
49681         string used in all --version output.
49682
49683 2000-05-14  Jim Meyering  <meyering@lucent.com>
49684
49685         * lib/closeout.c (close_stdout_set_file_name): New function.
49686         (close_stdout_status): Use new file-scoped global.
49687         Return right away if fstat says the stdout file descriptor is invalid.
49688         * lib/closeout.h (close_stdout_set_file_name): Declare.
49689
49690 2000-05-10  Jim Meyering  <meyering@lucent.com>
49691
49692         * lib/closeout.c [default_exit_status]: New file-scoped variable.
49693         (close_stdout_set_status): New function.
49694         * lib/closeout.h (close_stdout_set_status): Declare.
49695
49696 2000-05-09  Jim Meyering  <meyering@lucent.com>
49697
49698         * m4/gettext.m4: Rename this...
49699         * m4/libintl.m4: ...to this.
49700
49701 2000-05-08  Jim Meyering  <meyering@lucent.com>
49702
49703         * lib/long-options.c: Don't include closeout.h.
49704         (parse_long_options): Don't call close_stdout for --version.
49705
49706 2000-05-06  Paul Eggert  <eggert@twinsun.com>
49707
49708         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
49709         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
49710         2.1.3 bug.  This avoids a clash when files like regex.c define
49711         _GNU_SOURCE.
49712
49713 2000-05-06  Jim Meyering  <meyering@lucent.com>
49714
49715         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
49716         (AC_REPLACE_FUNCS): Add strnlen.
49717
49718         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
49719         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
49720
49721         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
49722         AC_SEARCH_LIBS call for nanosleep.
49723         (LIB_NANOSLEEP): Set and AC_SUBST.
49724
49725 2000-05-06  Jim Meyering  <meyering@lucent.com>
49726
49727         * lib/strnlen.c: Undefine __strnlen and strnlen.
49728         [!weak_alias]: Define __strnlen to strnlen.
49729
49730         * lib/atexit.c: New file, from libiberty.
49731
49732 2000-05-06  Jim Meyering  <meyering@lucent.com>
49733
49734         * lib/closeout.c (close_stdout_status): Also check for errors on the
49735         stderr stream.
49736
49737 2000-05-05  Jim Meyering  <meyering@lucent.com>
49738
49739         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
49740         AC_SEARCH_LIBS call for clock_gettime.
49741         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
49742
49743         * m4/search-libs.m4: Update from autoconf.
49744
49745         su doesn't work on Solaris 2.6.
49746         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
49747         <shadow.h>.  Reported by Dragos Harabor.
49748
49749 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
49750
49751         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
49752         memcpy instead of xmalloc, xrealloc, path_concat.
49753         (locale_charset): Treat empty environment variables as absent.
49754         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
49755
49756 2000-05-04  Jim Meyering  <meyering@lucent.com>
49757
49758         * lib/getopt.c: Update from glibc.
49759         * lib/obstack.c: Likewise.
49760         * lib/obstack.h: Likewise.
49761         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
49762         file
49763
49764         * lib/regex.h: Likewise.
49765         * lib/strndup.c: Likewise.
49766         * lib/strnlen.c: New file, from glibc.
49767
49768 2000-05-03  Jim Meyering  <meyering@lucent.com>
49769
49770         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
49771
49772 2000-05-02  Paul Eggert  <eggert@twinsun.com>
49773
49774         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
49775         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
49776         compile-time test, rather than inspecting host and OS, to
49777         decide whether to define _LARGEFILE_SOURCE.
49778
49779 2000-05-01  Jim Meyering  <meyering@lucent.com>
49780
49781         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
49782
49783         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
49784         Based on a patch from Bruno Haible.
49785
49786 2000-05-01  Jim Meyering  <meyering@lucent.com>
49787
49788         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
49789
49790 2000-04-29  Jim Meyering  <meyering@lucent.com>
49791
49792         * lib/path-concat.c: Declare strdup only if it's not defined.
49793         * lib/canon-host.c: Likewise.
49794
49795 2000-04-28  Jim Meyering  <meyering@lucent.com>
49796
49797         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
49798         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
49799         is included first, then limits.h is included by locale.h by libintl.h.
49800         From John David Anglin.
49801
49802 2000-04-25  Jim Meyering  <meyering@lucent.com>
49803
49804         * lib/makepath.c (S_IRWXUGO): Define.
49805         (make_path): Always perform explicit chmod if MODE specifies any
49806         of the `special' permission bits.  Prompted by a bug report against
49807         install from Mate Wierdl and Joost van Baal.
49808
49809 2000-04-18  Jim Meyering  <meyering@lucent.com>
49810
49811         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
49812         (jm_PREREQ): Use it.
49813
49814 2000-04-18  Jim Meyering  <meyering@lucent.com>
49815
49816         * lib/README: New file.
49817
49818         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
49819         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
49820
49821 2000-04-17  Jim Meyering  <meyering@lucent.com>
49822
49823         Get it right :-)
49824         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
49825         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
49826         Suggestion from Akim Demaille.
49827
49828 2000-04-17  Jim Meyering  <meyering@lucent.com>
49829
49830         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
49831         the definition of it to rpl_strftime also defined-away the system's
49832         declaration.
49833
49834 2000-04-15  Jim Meyering  <meyering@lucent.com>
49835
49836         Use `C' to denote so-called `contiguous' files, the same way
49837         that tar does.
49838         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
49839         (ftypelet): Use S_ISCTG.
49840         From Michael Deutschmann.
49841
49842 2000-04-14  Jim Meyering  <meyering@lucent.com>
49843
49844         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
49845         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
49846         clobbered.
49847
49848 2000-04-14  Jim Meyering  <meyering@lucent.com>
49849
49850         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
49851
49852 2000-04-13  Jim Meyering  <meyering@lucent.com>
49853
49854         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
49855         AH_VERBATIM to insert required #ifndef into config.h.in.
49856         Suggestion from Akim Demaille.
49857
49858 2000-04-12  Jim Meyering  <meyering@lucent.com>
49859
49860         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
49861         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
49862         Christian Krackowizer.
49863
49864         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
49865         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
49866         (AC_SYS_LARGEFILE): Require.
49867         (AM_C_PROTOTYPES): Require.
49868
49869 2000-04-08  Jim Meyering  <meyering@lucent.com>
49870
49871         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
49872         names don't conflict.  Reported by Eli Zaretskii.
49873
49874 2000-04-07  Jim Meyering  <meyering@lucent.com>
49875
49876         * lib/putenv.c: Move inclusion of errno.h so it follows that of
49877         sys/types.h, to work around system header problems on AIX 3.2.5.
49878         From Bruno Haible.
49879
49880 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
49881
49882         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
49883         bug.  Deal with the different error behavior of Irix iconv.
49884
49885 2000-04-05  Paul Eggert  <eggert@twinsun.com>
49886
49887         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
49888         IRIX if the installer said otherwise.
49889
49890 2000-04-05  Jim Meyering  <meyering@lucent.com>
49891
49892         Portability tweaks required for ultrix4.3.
49893         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
49894         (jm_CHECK_DECLS): Add getutent to the list of functions.
49895         (_jm_DECL_HEADERS): Add utmpx.h.
49896         From John David Anglin.
49897
49898         * m4/strftime.m4: Back out the 2000-04-02 change.
49899         Instead of that change, simply undefine putenv in the test program.
49900
49901 2000-04-05  Jim Meyering  <meyering@lucent.com>
49902
49903         Portability tweaks required for ultrix4.3.
49904         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
49905         getutent.
49906         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
49907         * lib/canon-host.c: Declare strdup.
49908         * lib/path-concat.c: Likewise.
49909         From John David Anglin.
49910
49911 2000-04-04  Jim Meyering  <meyering@lucent.com>
49912
49913         Be more DOS 8.3-friendly.
49914         * lib/ref-add.sin: Renamed from ref-add.sed.in.
49915         * lib/ref-del.sin: Renamed from ref-del.sed.in.
49916         * lib/Makefile.am: Reflect renaming.
49917         Reported by Eli Zaretskii.
49918
49919         Use a temporary file name that won't clash with `charset.alias'
49920         in the DOS 8.3 name space.
49921         * lib/Makefile.am (charset_tmp): Define.
49922         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
49923         (uninstall-local): Likewise.
49924         Reported by Eli Zaretskii.
49925
49926 2000-04-03  Jim Meyering  <meyering@lucent.com>
49927
49928         * m4/gettext.m4: Fix typo in comment.
49929
49930         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
49931         textutils/configure.in).  Suggestion from Paul Eggert.
49932         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
49933
49934 2000-04-02  Paul Eggert  <eggert@twinsun.com>
49935
49936         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
49937         variable in the shell rather than using putenv, which isn't
49938         portable.  This avoids the configure-time inter-test dependency
49939         on the potentially-renamed putenv function.
49940
49941 2000-03-30  Paul Eggert  <eggert@twinsun.com>
49942
49943         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
49944         before checking struct stat.st_blksize, so that
49945         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
49946
49947 2000-03-29  Paul Eggert  <eggert@twinsun.com>
49948
49949         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
49950         since strftime.c uses HAVE_STRFTIME to decide whether to use
49951         the underlying strftime.
49952
49953 2000-03-29  Paul Eggert  <eggert@twinsun.com>
49954
49955         * lib/time/strftime.c (my_strftime): Make sure we call the system
49956         strftime, not ourselves, when invoking the underlying strftime.
49957
49958 2000-03-24  Jim Meyering  <meyering@lucent.com>
49959
49960         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
49961         (charset_alias): Define.
49962         (install-exec-local): Factor out common code.
49963         (uninstall-local): Split lines longer than 80.
49964         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
49965         (SUFFIXES): Define.
49966         (.sed.in.sed): New rule.  Don't redirect directly to $@.
49967         (CLEANFILES): Add ref-add.sed and ref-del.sed.
49968
49969 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
49970
49971         * lib/config.charset: Output a line containing "Packages using this
49972         file".
49973         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
49974         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
49975         ref-del.sed): New rules.
49976
49977 2000-03-17  Jim Meyering  <meyering@lucent.com>
49978
49979         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
49980         Otherwise, include <strings.h>
49981
49982 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
49983
49984         * lib/unicodeio.c (utf8_wctomb): New function.
49985         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
49986         format instead of in UCS-4 with platform dependent endianness.
49987
49988 2000-03-10  Jim Meyering  <meyering@lucent.com>
49989
49990         * m4/lib-check.m4: Look for getspnam in -lgen, too.
49991         From Marco Franzen.
49992
49993 2000-03-07  Paul Eggert  <eggert@twinsun.com>
49994
49995         * lib/savedir.c (savedir): Work even if directory size is
49996         negative; this can happen with some screwy NFS configurations.
49997
49998 2000-03-06  Jim Meyering  <meyering@lucent.com>
49999
50000         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
50001         if it's NULL (because we ran out of memory).  From Bruno Haible.
50002
50003 2000-03-05  Jim Meyering  <meyering@lucent.com>
50004
50005         * lib/localcharset.c ("path-concat.h"): Include.
50006         (get_charset_aliases): Use path_concat instead of ANSI string
50007         concatenation.
50008
50009         * lib/unicodeio.h (PARAMS): Define.
50010         Use it to guard prototype.
50011
50012 2000-03-04  Jim Meyering  <meyering@lucent.com>
50013
50014         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
50015         for lib/localcharset.c.
50016
50017 2000-03-04  Jim Meyering  <meyering@lucent.com>
50018
50019         * lib/Makefile.am (install-exec-local): Create $(libdir) before
50020         installing into it.
50021         (uninstall-local): Uncomment this rule so `make distcheck' works
50022         once again.
50023
50024         * lib/unicodeio.c (<errno.h>): Include it.
50025         (errno): Declare if not defined.
50026
50027         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
50028
50029         * lib/config.charset: New version, incorporating remarks from a linux
50030         i18n mailing list.  From Bruno Haible.
50031
50032 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
50033
50034         * m4/codeset.m4: New file.
50035         * m4/iconv.m4: New file.
50036         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
50037
50038 2000-03-03  Jim Meyering  <meyering@lucent.com>
50039
50040         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
50041
50042 2000-03-02  Jim Meyering  <meyering@lucent.com>
50043
50044         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
50045         the messages come out on separate lines.
50046
50047         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
50048         rather than jm_CHECK_DECLARATIONS.
50049         * m4/decl.m4: Remove now-unused file.
50050
50051         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
50052         geteuid.
50053
50054 2000-03-02  Jim Meyering  <meyering@lucent.com>
50055
50056         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
50057
50058 2000-03-01  Jim Meyering  <meyering@lucent.com>
50059
50060         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
50061         * lib/unicodeio.c: Likewise.
50062
50063 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
50064
50065         * lib/config.charset: New file.
50066         * lib/localcharset.c: New file.
50067         * lib/unicodeio.h, lib/unicodeio.c: New files.
50068         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
50069         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
50070         (noinst_HEADERS): Add unicodeio.h.
50071         (all-local, install-exec-local, charset.alias): New targets.
50072
50073 2000-02-28  Paul Eggert  <eggert@twinsun.com>
50074
50075         * lib/quotearg.c (ALERT_CHAR): New macro.
50076         (quotearg_buffer_restyled): Use it.
50077
50078 2000-02-27  Jim Meyering  <meyering@lucent.com>
50079
50080         * m4/check-decl.m4: Add getenv to the list.
50081
50082 2000-02-27  Jim Meyering  <meyering@lucent.com>
50083
50084         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
50085         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
50086
50087         * lib/backupfile.c: Guard inclusion of stdlib.h with
50088         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
50089         Declare malloc if needed.
50090
50091         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
50092         `#ifndef HAVE_DECL..'
50093         now that autoconf always defines the HAVE_DECL_ symbols.
50094         * lib/human.c: Likewise.
50095         * lib/same.c: Likewise.
50096         * lib/strtoumax.c: Likewise.
50097
50098         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
50099         declaration check was not run.
50100         * lib/hash.c: Likewise.
50101         * lib/human.c: Likewise.
50102         * lib/same.c: Likewise.
50103         * lib/strtoumax.c: Likewise.
50104
50105         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
50106         `.', then first look up the entire `.'-containing string as a login
50107         name.
50108
50109 2000-02-23  Jim Meyering  <meyering@lucent.com>
50110
50111         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
50112         in place of my hack.
50113
50114 2000-02-18  Paul Eggert  <eggert@twinsun.com>
50115
50116         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
50117         (textint): New typedef.
50118         (parser_control): Member year changed from int to textint.
50119         All uses changed.
50120         (YYSTYPE): Removed; replaced by %union with int and textint members.
50121         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
50122         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
50123         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
50124         (tSNUMBER, tUNUMBER): Now of type <textintval>.
50125         (date, number, to_year): Use width of number in digits, not its value,
50126         to determine whether it's a 2-digit year, or a 2-digit time.
50127         (yylex): Store number of digits of numeric tokens.
50128         Reported by John Kendall.
50129
50130         (parser_control): Changed from struct parser_control to typedef (for
50131         consistency).  All uses changed.
50132
50133         (tID): Removed; not used.
50134         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
50135
50136 2000-02-14  Paul Eggert  <eggert@twinsun.com>
50137
50138         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
50139         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
50140
50141 2000-02-12  Jim Meyering  <meyering@lucent.com>
50142
50143         * lib/userspec.c (ISDIGIT): Define it.
50144         (isdigit): Remove definition.
50145         (is_number): Use ISDIGIT, not isdigit.
50146         <libintl.h>: Include.
50147         (_ and N_): Define.
50148         (parse_user_spec): Mark translatable strings.
50149
50150 2000-02-10  Jim Meyering  <meyering@lucent.com>
50151
50152         With these changes, nanosleep.[ch] are finally enough like the other
50153         lib/* replacement files to compile on a few more losing systems.
50154
50155         * lib/nanosleep.h: Don't include config.h.
50156         Remove prototype from declaration of nanosleep.
50157         (PARAMS): Remove now-unneeded definition.
50158         * lib/nanosleep.c: #undef nanosleep.
50159         (rpl_nanosleep): Rename from nanosleep.
50160
50161 2000-02-10  Jim Meyering  <meyering@lucent.com>
50162
50163         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
50164         gnu_nanosleep to rpl_nanosleep.
50165
50166 2000-02-09  Jim Meyering  <meyering@lucent.com>
50167
50168         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
50169         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
50170
50171 2000-02-08  Akim Demaille  <akim@epita.fr>
50172
50173         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
50174         `[' and `]' and remove uses of `changequote'.
50175         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
50176         (AC_SYS_LARGEFILE): Likewise.
50177         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
50178         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
50179         of changequote.
50180         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
50181         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
50182         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
50183         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
50184
50185 2000-02-05  Jim Meyering  <meyering@lucent.com>
50186
50187         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
50188         Remove explicit use of AC_HEADER_TIME.  It is required by
50189         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
50190         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
50191         in autoconf whereby the expansion of the latter ended up preceding
50192         the expansion of its prerequisite, AC_HEADER_TIME.
50193         Reported by Volker Borchert.
50194
50195 2000-02-03  Jim Meyering  <meyering@lucent.com>
50196
50197         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
50198
50199 2000-02-03  Jim Meyering  <meyering@lucent.com>
50200
50201         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
50202         rather than with `#if HAVE_UTMPNAME'.
50203
50204 2000-02-02  Jim Meyering  <meyering@lucent.com>
50205
50206         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
50207         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
50208         Reported by Eli Zaretskii.
50209
50210 2000-02-01  Jim Meyering  <meyering@lucent.com>
50211
50212         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
50213
50214 2000-01-31  Jim Meyering  <meyering@lucent.com>
50215
50216         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
50217         functions.  Add the time.h and sys/time.h headers along with the
50218         AC_REQUIRE'ment of AC_HEADER_TIME.
50219
50220 2000-01-31  Jim Meyering  <meyering@lucent.com>
50221
50222         * lib/nanosleep.h (nanosleep): Guard declaration with
50223         `#if ! HAVE_DECL_NANOSLEEP'.
50224         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
50225         the declaration in that vendor's sys/timers.h.
50226         Reported by Christian Krackowizer.
50227
50228         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
50229         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
50230         (ISPRINT): Likewise.
50231         Reported by Tom Tromey.
50232
50233 2000-01-30  Jim Meyering  <meyering@lucent.com>
50234
50235         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
50236
50237         * m4/prereq.m4 (utmp_includes): Define.
50238         Check for ut_user and ut_name members in both struct utmpx
50239         and struct utmp.
50240
50241 2000-01-30  Jim Meyering  <meyering@lucent.com>
50242
50243         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
50244         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
50245         header files where only utmpx.ut_user is declared.
50246
50247         * lib/readutmp.h (UT_USER): Define.
50248
50249 2000-01-29  Jim Meyering  <meyering@lucent.com>
50250
50251         * m4/lib-check.m4: New file containing library-related checks from
50252         fileutils and sh-utils (textutils had none).
50253
50254 2000-01-28  Jim Meyering  <meyering@lucent.com>
50255
50256         * m4/perl.m4: Change format of warning message to look more like that
50257         from the missing script.  Suggestion from François Pinard.
50258
50259 2000-01-25  Jim Meyering  <meyering@lucent.com>
50260
50261         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
50262         well as time.h in the compile check.
50263         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
50264         Fix typo in cross-compiling case: s/yes/no/.
50265
50266 2000-01-23  Jim Meyering  <meyering@lucent.com>
50267
50268         * m4/jm-macros.m4: Move df-related tests here from
50269         fileutils/configure.in
50270
50271         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
50272         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
50273
50274         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
50275         s/space/ac_fsusage_space/.
50276         (jm_FILE_SYSTEM_USAGE): Take two parameters.
50277
50278         * m4/ftruncate.m4: New file (derived from part of
50279         fileutils/configure.in).
50280         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
50281         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
50282
50283         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
50284         AC_SUBST these here, rather than just in sh-util/configure.in, so
50285         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
50286         all the same.
50287         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
50288         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
50289         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
50290         (AC_SUBST(POW_LIBM)): Likewise.
50291         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
50292
50293 2000-01-23  Jim Meyering  <meyering@lucent.com>
50294
50295         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
50296         obstack.c.
50297
50298 2000-01-22  Jim Meyering  <meyering@lucent.com>
50299
50300         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
50301
50302         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
50303
50304         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
50305         configure.in
50306         (AC_CHECK_HEADERS): Likewise for sh-utils.
50307         (AC_CHECK_HEADERS): Likewise for textutils.
50308         Merge the three lists of headers.
50309
50310         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
50311         from fileutils' configure.in.
50312
50313         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
50314         code. Moved tests into their own function (_jm_DECL_HEADERS) in
50315         check-decl.m4.
50316
50317         * m4/check-decl.m4: Use #if rather than #ifdef.
50318         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
50319         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
50320         (_jm_DECL_HEADERS): Define new function.
50321         (jm_CHECK_DECLARATIONS): Require it.
50322
50323 2000-01-22  Jim Meyering  <meyering@lucent.com>
50324
50325         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
50326         [! HAVE_DECL_STRTOULL]: Declare strtoull.
50327         Required for some AIX systems.  Reported by Christian Krackowizer.
50328         [TESTING] (main): New function.
50329
50330         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
50331         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
50332         letters.
50333
50334         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
50335         iswprint.
50336
50337         * lib/strverscmp.c (ISDIGIT): Define.
50338         (strverscmp): Use ISDIGIT, not isdigit.
50339
50340 2000-01-19  Jim Meyering  <meyering@lucent.com>
50341
50342         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
50343         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
50344         defines `struct timespec' in <sys/time.h>
50345
50346         * m4/c-bs-a.m4: Remove uses of changequote altogether.
50347         Thanks to Akim for explaining.
50348
50349 2000-01-17  Paul Eggert  <eggert@twinsun.com>
50350
50351         * lib/nanosleep.c (nanosleep):
50352         Don't use SA_INTERRUPT to decide whether to call sigaction, as
50353         POSIX.1 doesn't require SA_INTERRUPT and some systems
50354         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
50355         it's been part of POSIX.1 since day 1 (in 1988).
50356
50357 2000-01-17  Jim Meyering  <meyering@lucent.com>
50358
50359         * lib/interlock: Remove unused file.  Reported by François Pinard.
50360
50361 2000-01-16  Paul Eggert  <eggert@twinsun.com>
50362
50363         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
50364         alert, backslash, formfeed, and vertical tab unnecessarily in
50365         shell quoting style.
50366
50367 2000-01-16  Jim Meyering  <meyering@lucent.com>
50368
50369         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
50370         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
50371         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
50372         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
50373
50374 2000-01-16  Jim Meyering  <meyering@lucent.com>
50375
50376         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
50377         because the latter didn't work.
50378
50379 2000-01-15  Jim Meyering  <meyering@lucent.com>
50380
50381         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
50382         (AC_REPLACE_FUNCS): Add memcpy and memset.
50383         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
50384         Add strpbrk.
50385         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
50386
50387 2000-01-12  Jim Meyering  <meyering@lucent.com>
50388
50389         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
50390         (jm_PREREQ): Use it.
50391         (jm_PREREQ_READUTMP): New macro.
50392         (jm_PREREQ): Use it.
50393
50394 2000-01-11  Paul Eggert  <eggert@twinsun.com>
50395
50396         Quote multibyte characters correctly.
50397         * m4/c-bs-a.m4: New file.
50398         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
50399         (jm_PREREQ): Use it.
50400
50401 2000-01-11  Paul Eggert  <eggert@twinsun.com>
50402
50403         * m4/uintmax_t.m4: Port to autoconf 2.13.
50404
50405 2000-01-08  Jim Meyering  <meyering@ascend.com>
50406
50407         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
50408         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
50409
50410 2000-01-04  Jim Meyering  <meyering@ascend.com>
50411
50412         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
50413         jm_STRUCT_DIRENT_D_TYPE.
50414         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
50415         jm_STRUCT_DIRENT_D_INO.
50416         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
50417         jm_STRUCT_UTIMBUF.
50418         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
50419         renamings.
50420         * m4/utime.m4: Likewise.
50421
50422         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
50423         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
50424
50425 2000-01-03  Paul Eggert  <eggert@twinsun.com>
50426
50427         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
50428         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
50429
50430 2000-01-02  Jim Meyering  <meyering@ascend.com>
50431
50432         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
50433         remember if this is necessary.
50434
50435 1999-12-26  Jim Meyering  <meyering@ascend.com>
50436
50437         * m4/jm-macros.m4: Use it here.
50438         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
50439
50440 1999-12-23  Jim Meyering  <meyering@ascend.com>
50441
50442         * m4/jm-macros.m4: Check for clock_gettime (moved from
50443         fileutils/configure.in)
50444         Check for gettimeofday.
50445
50446 1999-12-20  Jim Meyering  <meyering@ascend.com>
50447
50448         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
50449         autoconf-2.14a-1999-12-20.
50450
50451 1999-12-19  Jim Meyering  <meyering@ascend.com>
50452
50453         * m4/lstat-slash.m4: New file.
50454         * m4/jm-macros.m4: Use the new macro:
50455         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
50456
50457 1999-12-07  Jim Meyering  <meyering@ascend.com>
50458
50459         * m4/perl.m4: Require that File::Compare be available, too.
50460         Too many systems seem to lack it.
50461
50462         * m4/strftime.m4: Add checks for most of the cpp macros tested in
50463         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
50464
50465 1999-11-18  Paul Eggert  <eggert@twinsun.com>
50466
50467         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
50468         problem with the QNX 4.25 shell, which doesn't propagate exit
50469         status of failed commands inside shell assignments.
50470
50471 1999-11-17  Jim Meyering  <meyering@ascend.com>
50472
50473         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
50474
50475 1999-11-07  Jim Meyering  <meyering@ascend.com>
50476
50477         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
50478
50479 1999-11-06  Jim Meyering  <meyering@ascend.com>
50480
50481         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
50482         * m4/jm-macros.m4 (jm_MACROS): Use it here.
50483
50484 1999-11-05  Jim Meyering  <meyering@ascend.com>
50485
50486         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
50487         configure.in of textutils, fileutils, and sh-utils into this one
50488         (shared between those packages) file.
50489         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
50490         AC_STRUCT_ST_BLKSIZE.
50491
50492 1999-11-03  Jim Meyering  <meyering@ascend.com>
50493
50494         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
50495         of AC_CHECK_TYPE checks includes unistd.h.
50496         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
50497         Suggestion from Akim Demaille.
50498
50499 1999-10-30  Jim Meyering  <meyering@ascend.com>
50500
50501         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
50502         m4-quoted string.
50503         * m4/ls-mntd-fs.m4: Likewise.
50504         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
50505         * m4/jm-winsz1.m4: Likewise.
50506
50507         * m4/const.m4: Remove file, since the fix made it into the experimental
50508         version of autoconf.
50509         * m4/mktime.m4: Likewise.
50510
50511         * m4/check-type.m4: Remove file, now that the latest version of
50512         AC_CHECK_TYPE takes a third arg to specify additional #includes.
50513
50514         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
50515         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
50516         AC_CHECK_TYPE.
50517
50518 1999-10-04  Jim Meyering  <meyering@ascend.com>
50519
50520         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
50521
50522 1999-09-22  Paul Eggert  <eggert@twinsun.com>
50523
50524         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
50525         2.95.1 bug with HP-UX 10.20.
50526
50527 1999-09-17  Jim Meyering  <meyering@ascend.com>
50528
50529         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
50530         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
50531         due to missing strdup (against sh-utils-2.0).
50532
50533 1999-08-29  Jim Meyering  <meyering@ascend.com>
50534
50535         * m4/jm-macros.m4: Require jm_BISON.
50536         * m4/bison.m4: New file.
50537
50538 1999-08-17  Paul Eggert  <eggert@twinsun.com>
50539
50540         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
50541         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
50542
50543 1999-08-05  Jim Meyering  <meyering@ascend.com>
50544
50545         * m4/getline.m4: Rename test file from conftestdata to conftest.data
50546         to avoid conflicts with `conftest' on 8+3 filesystems.
50547         Suggestion from Eli Zaretskii.
50548
50549 1999-08-04  Jim Meyering  <meyering@ascend.com>
50550
50551         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
50552         fileutils and sh-utils (textutils's getline test was inadequate).
50553         (AM_FUNC_GETLINE): Run this test.
50554         (AC_CHECK_FUNCS): Check for getdelim.
50555         Reported by Bob Proulx.
50556
50557 1999-08-02  Jim Meyering  <meyering@ascend.com>
50558
50559         * m4/jm-macros.m4: Add a comment.
50560
50561 1999-08-01  Paul Eggert  <eggert@twinsun.com>
50562
50563         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
50564         <inttypes.h> defines strtoumax as a macro (and not as a
50565         function).
50566
50567 1999-08-01  Paul Eggert  <eggert@twinsun.com>
50568
50569         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
50570         that we can shift, multiply and divide unsigned long long
50571         values; Ultrix cc can't do it.
50572
50573 1999-08-01  Paul Eggert  <eggert@twinsun.com>
50574
50575         * m4/mktime.m4: New file, which is a preview of what should appear
50576         in the next public autoconf release.
50577
50578 1999-08-01  Paul Eggert  <eggert@twinsun.com>
50579
50580         * m4/lfs.m4: Remove this file.
50581         * m4/largefile.m4: New file.  It contains the old contents of
50582         lfs.m4, except that all names with prefix AC_LFS have been
50583         changed to use the prefix AC_SYS_LARGEFILE instead, to be
50584         compatible with future autoconf versions.  Also, some minor m4
50585         quoting problems have been fixed.
50586
50587 1999-08-01  Paul Eggert  <eggert@twinsun.com>
50588
50589         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
50590         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
50591         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
50592         and simplify the shell code.
50593
50594 1999-08-01  Jim Meyering  <meyering@ascend.com>
50595
50596         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
50597         m4.
50598
50599 1999-07-20  Jim Meyering  <meyering@ascend.com>
50600
50601         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
50602
50603 1999-07-15  Jim Meyering  <meyering@ascend.com>
50604
50605         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
50606
50607 1999-05-22  Jim Meyering  <meyering@ascend.com>
50608
50609         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
50610
50611 1999-05-20  Jim Meyering  <meyering@ascend.com>
50612
50613         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
50614         Add a colon after each `then' in case $4 is empty.
50615
50616 1999-05-16  Jim Meyering  <meyering@ascend.com>
50617
50618         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
50619
50620 1999-05-10  Jim Meyering  <meyering@ascend.com>
50621
50622         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
50623
50624         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
50625         AC_FUNC_MKTIME.
50626
50627 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
50628
50629         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
50630
50631 1999-05-04  Paul Eggert  <eggert@twinsun.com>
50632
50633         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
50634         not CPPFLAGS, so that linking works correctly in IRIX.
50635
50636 1999-04-30  Paul Eggert  <eggert@twinsun.com>
50637
50638         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
50639
50640 1999-04-20  Paul Eggert  <eggert@twinsun.com>
50641
50642         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
50643         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
50644         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
50645         jm_AC_TYPE_UNSIGNED_LONG_LONG.
50646         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
50647
50648         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
50649
50650 1999-04-20  Jim Meyering  <meyering@ascend.com>
50651
50652         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
50653         AC_REPLACE xstroull if necessary.  From Paul Eggert.
50654         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
50655
50656 1999-04-18  Jim Meyering  <meyering@ascend.com>
50657
50658         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
50659         * m4/jm-macros.m4: Use it.
50660
50661 1999-04-06  Jim Meyering  <meyering@ascend.com>
50662
50663         * m4/strftime.m4: Remove test for %f.
50664
50665 1999-03-29  Jim Meyering  <meyering@ascend.com>
50666
50667         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
50668         superset of the AC_TYPE_* checks in the textutils, fileutils,
50669         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
50670         AC_TYPE_PID_T.
50671
50672 1999-03-28  Jim Meyering  <meyering@ascend.com>
50673
50674         * m4/jm-macros.m4: Define GNU_PACKAGE here.
50675         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
50676         replaced e.g., in the *.sh files of the sh-utils.
50677
50678 1999-03-20  Jim Meyering  <meyering@ascend.com>
50679
50680         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
50681         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
50682         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
50683
50684 1999-03-19  Jim Meyering  <meyering@ascend.com>
50685
50686         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
50687
50688 1999-03-12  Jim Meyering  <meyering@ascend.com>
50689
50690         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
50691
50692 1999-03-07  Jim Meyering  <meyering@ascend.com>
50693
50694         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
50695         declared.
50696
50697 1999-02-17  Jim Meyering  <meyering@ascend.com>
50698
50699         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
50700         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
50701
50702 1999-02-07  Jim Meyering  <meyering@ascend.com>
50703
50704         * m4/group-member.m4: New file -- extracted from sh-utils'
50705         configure.in.
50706
50707         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
50708         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
50709
50710 1999-02-06  Jim Meyering  <meyering@ascend.com>
50711
50712         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
50713         * m4/fnmatch.m4: Likewise.
50714         * m4/getgroups.m4: Likewise.
50715         * m4/lstat.m4: Likewise.
50716         * m4/malloc.m4: Likewise.
50717         * m4/putenv.m4: Likewise.
50718         * m4/realloc.m4: Likewise.
50719         * m4/regex.m4: Likewise.
50720         * m4/stat.m4: Likewise.
50721         * m4/strftime.m4: Likewise.
50722         Suggestion from Alain Magloire.
50723
50724         * m4/chown.m4: Use `.$ac_objext', not `.o'.
50725         * m4/fnmatch.m4: Likewise.
50726         * m4/getgroups.m4: Likewise.
50727         * m4/getline.m4: Likewise.
50728         * m4/lstat.m4: Likewise.
50729         * m4/malloc.m4: Likewise.
50730         * m4/memcmp.m4: Likewise.
50731         * m4/putenv.m4: Likewise.
50732         * m4/realloc.m4: Likewise.
50733         * m4/regex.m4: Likewise.
50734         * m4/stat.m4: Likewise.
50735         * m4/strftime.m4: Likewise.
50736         Suggestion from Alain Magloire.
50737
50738         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
50739         an argument.
50740
50741         * m4/regex.m4: Add a run-time Test for proper operation of
50742         re_compile_pattern.
50743
50744 1999-01-31  Jim Meyering  <meyering@ascend.com>
50745
50746         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
50747
50748 1999-01-30  Jim Meyering  <meyering@ascend.com>
50749
50750         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
50751
50752         * m4/jm-mktime.m4: Make this a wrapper around the official
50753         AM_FUNC_MKTIME rather than my private copy, now that the official one
50754         is up to date.
50755         * m4/mktime.m4: Remove file.
50756
50757         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
50758         * m4/uptime.m4: Likewise.
50759         * m4/uintmax_t.m4: Likewise.
50760
50761 1999-01-28  Jim Meyering  <meyering@ascend.com>
50762
50763         * m4/jm-macros.m4: Use jm_AFS.
50764         * m4/afs.m4: New file (from fileutils' configure.in).
50765
50766         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
50767         * m4/chown.m4: Likewise.
50768         * m4/d-ino.m4: Likewise.
50769         * m4/d-type.m4: Likewise.
50770         * m4/fnmatch.m4: Likewise.
50771         * m4/getgroups.m4: Likewise.
50772         * m4/gettext.m4: Likewise.
50773         * m4/jm-mktime.m4: Likewise.
50774         * m4/jm-winsz2.m4: Likewise.
50775         * m4/lcmessage.m4: Likewise.
50776         * m4/ls-mntd-fs.m4: Likewise.
50777         * m4/malloc.m4: Likewise.
50778         * m4/memcmp.m4: Likewise.
50779         * m4/putenv.m4: Likewise.
50780         * m4/realloc.m4: Likewise.
50781         * m4/st_mtim.m4: Likewise.
50782         * m4/strftime.m4: Likewise.
50783
50784 1999-01-16  Jim Meyering  <meyering@ascend.com>
50785
50786         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
50787         (ARGMATCH_DIE_DECL): Define.
50788
50789 1999-01-12  Jim Meyering  <meyering@ascend.com>
50790
50791         * m4/Makefile.am.in: Rewrite to avoid using fmt.
50792         Reported by Lars Hecking.
50793
50794 1999-01-10  Jim Meyering  <meyering@ascend.com>
50795
50796         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
50797         gross kludge.
50798         * m4/inttypes_h.m4: Likewise.
50799         * m4/lstat.m4: Likewise.
50800         * m4/malloc.m4: Likewise.
50801         * m4/readdir.m4: Likewise.
50802         * m4/realloc.m4: Likewise.
50803         * m4/st_dm_mode.m4: Likewise.
50804         * m4/stat.m4: Likewise.
50805         * m4/utimbuf.m4: Likewise.
50806         * m4/utimes.m4: Likewise.
50807
50808         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
50809         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
50810         comments in config.h.in are meaningful.
50811
50812         * m4/jm-macros.m4: Require autoconf-2.13 here.
50813
50814         * m4/regex.m4: By default, don't use the included regex.c on systems
50815         with glibc 2.  Suggestion from Uli Drepper.
50816
50817 1999-01-02  Jim Meyering  <meyering@ascend.com>
50818
50819         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
50820
50821 1998-12-18  Jim Meyering  <meyering@ascend.com>
50822
50823         * m4/Makefile.am.in (Makefile.am): Simplify rule.
50824         Based on a suggestion from Lars Hecking.
50825
50826 1998-11-16  Paul Eggert  <eggert@twinsun.com>
50827
50828         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
50829
50830 1998-11-16  Jim Meyering  <meyering@ascend.com>
50831
50832         * m4/lfs.m4: Double-quote the `uname...` expression.
50833
50834 1998-11-14  Jim Meyering  <meyering@ascend.com>
50835
50836         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
50837         * m4/stat.m4: Likewise.
50838
50839 1998-11-03  Jim Meyering  <meyering@ascend.com>
50840
50841         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
50842         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
50843
50844 1998-10-18  Jim Meyering  <meyering@ascend.com>
50845
50846         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
50847
50848 1998-10-17  Jim Meyering  <meyering@ascend.com>
50849
50850         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
50851         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
50852         calls for those previously hard-coded headers.  Instead, take a new
50853         parameter.
50854         (jm_CHECK_DECLARATIONS): Reflect interface change.
50855         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
50856         (jm_CHECK_DECL_LOCALTIME_R): New macro.
50857
50858         * m4/mktime.m4: Test for spring-forward gap before long-running test.
50859
50860 1998-10-14  Jim Meyering  <meyering@ascend.com>
50861
50862         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
50863         instead of "TZ=America/Vancouver".  From Paul Eggert.
50864
50865 1998-10-11  Jim Meyering  <meyering@ascend.com>
50866
50867         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
50868         This adds a test for a recently added compatibility fix for mktime.c.
50869         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
50870
50871 1998-09-27  Jim Meyering  <meyering@ascend.com>
50872
50873         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
50874
50875         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
50876         ../configure.in, including a change from Gordon Matzigkeit to allow
50877         cross-compiling for the Hurd.
50878
50879         * m4/glibc.m4: New file/macro to test for the GNU C Library
50880         versions 1 and 2.  From Gordon Matzigkeit.
50881         Indent.
50882
50883 1998-09-21  Jim Meyering  <meyering@ascend.com>
50884
50885         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
50886
50887 1998-08-18  Paul Eggert  <eggert@twinsun.com>
50888
50889         Port nanosecond-resolution times to UnixWare 2.1.2 and
50890         pedantic Solaris 2.6.
50891
50892         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
50893         AC_STRUCT_ST_MTIM.
50894         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
50895         Generate name of ns member, instead of just 1 or undef.
50896         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
50897
50898 1998-08-15  Jim Meyering  <meyering@ascend.com>
50899
50900         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
50901         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
50902         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
50903         instead of jm_TYPE_SSIZE_T.
50904
50905 1998-08-12  Jim Meyering  <meyering@ascend.com>
50906
50907         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
50908
50909 1998-08-02  Jim Meyering  <meyering@ascend.com>
50910
50911         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
50912         in acconfig.h manually.
50913
50914 1998-07-31  Paul Eggert  <eggert@twinsun.com>
50915
50916         * m4/st_mtim.m4: New file.
50917
50918 1998-07-28  Jim Meyering  <meyering@ascend.com>
50919
50920         * m4/utimes.m4: Undef stat.
50921
50922 1998-07-25  Jim Meyering  <meyering@ascend.com>
50923
50924         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
50925         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
50926
50927 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
50928
50929         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
50930         uid and gid actually remain unchanged.
50931
50932 1998-07-07  Jim Meyering  <meyering@ascend.com>
50933
50934         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
50935
50936 1998-07-04  Jim Meyering  <meyering@ascend.com>
50937
50938         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
50939         to prove that this macro can be used in packages without regex.c.
50940
50941 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
50942
50943         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
50944         is to be used.
50945
50946 1998-07-03  Jim Meyering  <meyering@ascend.com>
50947
50948         * m4/gettext.m4: Add -lintl if it's found to be necessary.
50949
50950         * m4/gettext.m4: New file -- from gettext-0.10.35.
50951         * m4/lcmessage.m4: Likewise.
50952         * m4/progtest.m4: Likewise.
50953
50954         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
50955         * m4/jm-macros.m4: Require the new macro.
50956
50957 1998-06-29  Jim Meyering  <meyering@ascend.com>
50958
50959         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
50960         for the definition of NGROUPS (used in a system header included
50961         by sys/mount.h).
50962
50963 1998-06-28  Jim Meyering  <meyering@ascend.com>
50964
50965         * m4/ls-mntd-fs.m4: New file.
50966         * m4/fstypename.m4: New file.
50967
50968         * m4/jm-macros.m4: Require the new macro.
50969         * m4/jm-glibc-io.m4: New file.
50970
50971 1998-05-19  Jim Meyering  <meyering@ascend.com>
50972
50973         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
50974         * m4/lchown.m4: New file.
50975
50976         * m4/Makefile.am.in: New file.
50977         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
50978
50979 1998-05-14  Jim Meyering  <meyering@ascend.com>
50980
50981         * m4/Makefile.am (EXTRA_DIST): Add them.
50982         * m4/jm-macros.m4: New file.
50983         * m4/utimbuf.m4: New file.
50984
50985 1998-05-12  Jim Meyering  <meyering@ascend.com>
50986
50987         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
50988
50989 1998-05-11  Jim Meyering  <meyering@ascend.com>
50990
50991         * m4/isc-posix.m4: New file.
50992
50993 1998-05-10  Jim Meyering  <meyering@ascend.com>
50994
50995         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
50996
50997 1998-05-09  Jim Meyering  <meyering@ascend.com>
50998
50999         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
51000         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
51001         with automake.
51002
51003         * m4/ssize_t.m4: New file.
51004         * m4/mktime.m4: Remove file -- the new automake has this now.
51005
51006 1998-04-26  Jim Meyering  <meyering@ascend.com>
51007
51008         * m4/assert.m4: New file.
51009         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
51010
51011 1998-04-05  Jim Meyering  <meyering@ascend.com>
51012
51013         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
51014         (jm_PREREQ): Use it here.
51015
51016 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
51017
51018         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
51019         in acconfig.h.
51020
51021 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
51022
51023         * m4/prereq.m4: New file.
51024         * m4/error.m4: New file.
51025         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
51026
51027 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
51028
51029         * m4/getline.m4: Don't set am_cv_func_working_getline before the
51030         cache-check for the same variable -- that defeated the purpose of
51031         the test; the test program was never run.  This was a problem only
51032         on systems with losing getline functions -- HP-UX 10.20 is one.
51033         Reported by Bjorn Helgaas.
51034
51035 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
51036
51037         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
51038
51039 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
51040
51041         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
51042
51043         * m4/const.m4: New file.  Use an initializer in this declaration
51044         typedef int charset[2]; const charset x;
51045         Reported by Bob Glickstein.
51046
51047 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
51048
51049         * m4/chown.m4: Fix reversed types on -1 args to chown.
51050         From Kaveh Ghazi.
51051
51052 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
51053
51054         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
51055         Add lseek and memchr.
51056
51057         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
51058         T.E.Dickey <dickey@clark.net> said that some older preprocessors
51059         have a 20-character limit on names.
51060
51061 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
51062
51063         * m4/inttypes_h.m4: New file.
51064         * m4/uintmax_t.m4: New file.
51065         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
51066
51067
51068         -----
51069
51070         Local Variables:
51071         coding: utf-8
51072         End:
51073
51074         Copyright (C) 1997-2009 Free Software Foundation, Inc.
51075
51076         Copying and distribution of this file, with or without
51077         modification, are permitted provided the copyright notice
51078         and this notice are preserved.