fts: avoid false-positive cycle-detection
[pspp] / ChangeLog
1 2009-07-19  Jim Meyering  <meyering@redhat.com>
2
3         fts: avoid false-positive cycle-detection
4         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
5         for each new command line argument.
6
7 2009-07-19  Bruno Haible  <bruno@clisp.org>
8
9         Fix build error on mingw with the modules sys_select and unistd.
10         * modules/acl-tests (Depends-on): Add close.
11         * modules/binary-io-tests (Depends-on): Likewise.
12         * modules/closein-tests (Depends-on): Likewise.
13         * modules/flock-tests (Depends-on): Likewise.
14         * modules/fsync-tests (Depends-on): Likewise.
15         * modules/lseek-tests (Depends-on): Likewise.
16         * modules/pipe-tests (Depends-on): Likewise.
17         * modules/posix_spawn-tests (Depends-on): Likewise.
18         * modules/posix_spawnp-tests (Depends-on): Likewise.
19         * modules/stat-time-tests (Depends-on): Likewise.
20         * modules/yesno-tests (Depends-on): Likewise.
21
22 2009-07-19  Bruno Haible  <bruno@clisp.org>
23
24         Unify conditionals.
25         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
26         macros, not at the compiler macros.
27         * lib/pipe.c: Likewise.
28         * lib/execute.c: Likewise.
29         * lib/spawni.c: Likewise.
30
31 2009-07-19  Bruno Haible  <bruno@clisp.org>
32
33         Fix handling of closed stdin/stdout/stderr on mingw.
34         * lib/w32spawn.h: Include unistd.h.
35         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
36         file descriptor with O_NOINHERIT flag.
37         (fd_safer_noinherit): New function, based on fd-safer.c.
38         (dup_safer_noinherit): New function, based on dup-safer.c.
39         (undup_safer_noinherit): New function.
40         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
41         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
42         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
43         instead of fd_safer.
44         * tests/test-pipe.c: Include <windows.h>.
45         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
46
47         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
48         from main.
49         (test_pipe): Pass an extra argument for disambiguation.
50         (main): Invoke parent_main or child_main.
51
52         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
53         consistently.
54
55 2009-07-18  Eric Blake  <ebb9@byu.net>
56
57         test-pipe: fix mingw build
58         * tests/test-pipe.c (main): Avoid fcntl on mingw.
59
60 2009-07-18  Bruno Haible  <bruno@clisp.org>
61
62         * modules/pipe-tests (Makefile.am): Fix typo.
63
64 2009-07-18  Eric Blake  <ebb9@byu.net>
65
66         error: fix mingw build
67         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
68         Reported by Bruno Haible.
69
70         error: avoid undefined use of stdout
71         * lib/error.c (error, error_at_line): Check that fd 1 is open
72         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
73         is handling faults and the close_stdout module wants to report the
74         detection of closed stdout as an error.
75
76 2009-07-17  Eric Blake  <ebb9@byu.net>
77
78         pipe: be robust in face of closed fds
79         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
80         should cause child to misbehave.
81         * modules/pipe-tests: New module.
82         * tests/test-pipe.c: New file.
83         * tests/test-pipe.sh: New file.
84         Reported by Akim Demaille.
85
86 2009-07-14  Bruno Haible  <bruno@clisp.org>
87
88         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
89         Reported by anonymous kc.
90
91 2009-07-07  Jim Meyering  <meyering@redhat.com>
92
93         maint.mk: don't look for translatable strings in *.m4 or *.mk
94         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
95         when searching for translatable strings.
96
97 2009-07-05  Jim Meyering  <meyering@redhat.com>
98
99         remove superfluous parentheses in STREQ definition
100         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
101         * lib/getugroups.c (STREQ): Likewise.
102         * lib/fnmatch.c (STREQ): Likewise.
103         Spotted by Bruno Haible.
104
105 2009-07-04  Jim Meyering  <meyering@redhat.com>
106
107         argv-iter: new module
108         * MODULES.html.sh: Add argv-iter.
109         * lib/argv-iter.c, lib/argv-iter.h: New files.
110         * modules/argv-iter: New file.
111         * modules/argv-iter-tests: New file.
112         * tests/test-argv-iter.c: Test it.
113
114 2009-07-04  Bruno Haible  <bruno@clisp.org>
115
116         Fix assertion.
117         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
118         contains more exact copies of a given entry than file2, leave the extra
119         copies unpaired rather than aborting.
120         Reported by Eric Blake.
121
122 2009-07-02  Bruno Haible  <bruno@clisp.org>
123
124         Speedup git-merge-changelog for git cherry-pick.
125         * lib/git-merge-changelog.c (struct entries_mapping): New type.
126         (entries_mapping_get): New function, extracted from compute_mapping.
127         (entries_mapping_reverse_get): New function.
128         (compute_mapping): Add a 'full' argument. Return the result in a
129         'struct entries_mapping'.
130         (main): Update. Access the mappings through entries_mapping_get.
131         Reported by Eric Blake.
132
133 2009-07-02  Bruno Haible  <bruno@clisp.org>
134
135         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
136         best_i.
137
138 2009-07-02  Bruno Haible  <bruno@clisp.org>
139
140         Speed up approximate search for matching ChangeLog entries.
141         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
142         argument. Call fstrcmp_bounded instead of fstrcmp.
143         (compute_mapping, try_split_merged_entry, main): Update callers.
144
145 2009-07-02  Bruno Haible  <bruno@clisp.org>
146
147         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
148
149 2009-06-30  Bruno Haible  <bruno@clisp.org>
150
151         Reduce the number of uc_is_cased calls.
152         * lib/unicase.h (casing_suffix_context_t): Add
153         'first_char_except_ignorable' field.
154         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
155         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
156         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
157         Update initializer.
158         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
159         case-ignorable characters.
160         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
161         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
162         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
163         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
164         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
165
166 2009-06-30  Bruno Haible  <bruno@clisp.org>
167
168         Tests for module 'unicase/ignorable'.
169         * modules/unicase/ignorable-tests: New file.
170         * tests/unicase/test-ignorable.c: New file, generated by
171         gen-uni-tables.
172
173         Tests for module 'unicase/cased'.
174         * modules/unicase/cased-tests: New file.
175         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
176         * tests/unicase/test-predicate-part1.h: New file, derived from
177         tests/unictype/test-predicate-part1.h.
178         * tests/unicase/test-predicate-part2.h: New file, same as
179         tests/unictype/test-predicate-part2.h.
180
181         Fix evaluation of "Before C" condition of FINAL_SIGMA.
182         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
183         (output_casing_properties): New function.
184         (main): Call it.
185         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
186         * lib/unicase/cased.c: Include unictype/bitmap.h.
187         (uc_is_cased): Define through a bitmap lookup.
188         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
189         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
190         (uc_is_case_ignorable): Define through a bitmap lookup.
191         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
192         lib/unictype/bitmap.h.
193         (Depends-on): Add inline. Clean up.
194         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
195         lib/unictype/bitmap.h.
196         (Depends-on): Add inline. Clean up.
197         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
198         recognition.
199         * tests/unicase/test-u16-tolower.c (main): Likewise.
200         * tests/unicase/test-u32-tolower.c (main): Likewise.
201
202 2009-06-30  Bruno Haible  <bruno@clisp.org>
203
204         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
205         * lib/unicase/u16-casemap.c: Likewise.
206         * lib/unicase/u32-casemap.c: Likewise.
207
208 2009-06-29  Bruno Haible  <bruno@clisp.org>
209
210         Define u32_casefold as a wrapper around u32_ct_casefold.
211         * lib/unicase/u32-casefold.c: Update.
212         * modules/unicase/u32-casefold (Depends-on): Add
213         unicase/u32-ct-casefold, unicase/empty-prefix-context,
214         unicase/empty-suffix-context. Clean up.
215
216         Define u16_casefold as a wrapper around u16_ct_casefold.
217         * lib/unicase/u16-casefold.c: Update.
218         * modules/unicase/u16-casefold (Depends-on): Add
219         unicase/u16-ct-casefold, unicase/empty-prefix-context,
220         unicase/empty-suffix-context. Clean up.
221
222         Define u8_casefold as a wrapper around u8_ct_casefold.
223         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
224         * lib/unicase/u8-casefold.c: Update.
225         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
226         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
227
228         Define u32_totitle as a wrapper around u32_ct_totitle.
229         * lib/unicase/u32-totitle.c: Update.
230         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
231         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
232
233         Define u16_totitle as a wrapper around u16_ct_totitle.
234         * lib/unicase/u16-totitle.c: Update.
235         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
236         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
237
238         Define u8_totitle as a wrapper around u8_ct_totitle.
239         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
240         functions.
241         (FUNC): Delegate to U_CT_TOTITLE.
242         * lib/unicase/u8-totitle.c: Update.
243         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
244         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
245
246         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
247         invocation.
248         * modules/unicase/u32-tolower (Depends-on): Add
249         unicase/empty-prefix-context, unicase/empty-suffix-context.
250
251         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
252         invocation.
253         * modules/unicase/u16-tolower (Depends-on): Add
254         unicase/empty-prefix-context, unicase/empty-suffix-context.
255
256         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
257         * modules/unicase/u8-tolower (Depends-on): Add
258         unicase/empty-prefix-context, unicase/empty-suffix-context.
259
260         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
261         invocation.
262         * modules/unicase/u32-toupper (Depends-on): Add
263         unicase/empty-prefix-context, unicase/empty-suffix-context.
264
265         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
266         invocation.
267         * modules/unicase/u16-toupper (Depends-on): Add
268         unicase/empty-prefix-context, unicase/empty-suffix-context.
269
270         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
271         * modules/unicase/u8-toupper (Depends-on): Add
272         unicase/empty-prefix-context, unicase/empty-suffix-context.
273
274         New module 'unicase/u32-ct-casefold'.
275         * lib/unicase/u32-ct-casefold.c: New file.
276         * modules/unicase/u32-ct-casefold: New file.
277
278         New module 'unicase/u16-ct-casefold'.
279         * lib/unicase/u16-ct-casefold.c: New file.
280         * modules/unicase/u16-ct-casefold: New file.
281
282         New module 'unicase/u8-ct-casefold'.
283         * lib/unicase/u8-ct-casefold.c: New file.
284         * lib/unicase/u-ct-casefold.h: New file, derived from
285         lib/unicase/u-casefold.h.
286         * modules/unicase/u8-ct-casefold: New file.
287
288         New module 'unicase/u32-ct-totitle'.
289         * lib/unicase/u32-ct-totitle.c: New file.
290         * modules/unicase/u32-ct-totitle: New file.
291
292         New module 'unicase/u16-ct-totitle'.
293         * lib/unicase/u16-ct-totitle.c: New file.
294         * modules/unicase/u16-ct-totitle: New file.
295
296         New module 'unicase/u8-ct-totitle'.
297         * lib/unicase/u8-ct-totitle.c: New file.
298         * lib/unicase/u-ct-totitle.h: New file, derived from
299         lib/unicase/u-totitle.h.
300         * modules/unicase/u8-ct-totitle: New file.
301
302         New module 'unicase/u32-ct-tolower'.
303         * lib/unicase/u32-ct-tolower.c: New file.
304         * modules/unicase/u32-ct-tolower: New file.
305
306         New module 'unicase/u16-ct-tolower'.
307         * lib/unicase/u16-ct-tolower.c: New file.
308         * modules/unicase/u16-ct-tolower: New file.
309
310         New module 'unicase/u8-ct-tolower'.
311         * lib/unicase/u8-ct-tolower.c: New file.
312         * modules/unicase/u8-ct-tolower: New file.
313
314         New module 'unicase/u32-ct-toupper'.
315         * lib/unicase/u32-ct-toupper.c: New file.
316         * modules/unicase/u32-ct-toupper: New file.
317
318         New module 'unicase/u16-ct-toupper'.
319         * lib/unicase/u16-ct-toupper.c: New file.
320         * modules/unicase/u16-ct-toupper: New file.
321
322         New module 'unicase/u8-ct-toupper'.
323         * lib/unicase/u8-ct-toupper.c: New file.
324         * modules/unicase/u8-ct-toupper: New file.
325
326         Add context arguments to u*_casemap functions.
327         * lib/unicase/unicasemap.h: Include unicase.h.
328         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
329         suffix_context arguments.
330         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
331         functions.
332         (FUNC): Add prefix_context and suffix_context arguments. Use
333         uc_is_cased and uc_is_case_ignorable.
334         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
335         * lib/unicase/u16-casemap.c: Likewise.
336         * lib/unicase/u32-casemap.c: Likewise.
337         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
338         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
339         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
340         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
341         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
342         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
343
344         New module 'unicase/u32-suffix-context'.
345         * lib/unicase/u32-suffix-context.c: New file.
346         * modules/unicase/u32-suffix-context: New file.
347
348         New module 'unicase/u16-suffix-context'.
349         * lib/unicase/u16-suffix-context.c: New file.
350         * modules/unicase/u16-suffix-context: New file.
351
352         New module 'unicase/u8-suffix-context'.
353         * lib/unicase/u8-suffix-context.c: New file.
354         * lib/unicase/u-suffix-context.h: New file.
355         * modules/unicase/u8-suffix-context: New file.
356
357         New module 'unicase/empty-suffix-context'.
358         * lib/unicase/empty-suffix-context.c: New file.
359         * modules/unicase/empty-suffix-context: New file.
360
361         New module 'unicase/u32-prefix-context'.
362         * lib/unicase/u32-prefix-context.c: New file.
363         * modules/unicase/u32-prefix-context: New file.
364
365         New module 'unicase/u16-prefix-context'.
366         * lib/unicase/u16-prefix-context.c: New file.
367         * modules/unicase/u16-prefix-context: New file.
368
369         New module 'unicase/u8-prefix-context'.
370         * lib/unicase/u8-prefix-context.c: New file.
371         * lib/unicase/u-prefix-context.h: New file.
372         * lib/unicase/context.h: New file.
373         * modules/unicase/u8-prefix-context: New file.
374
375         New module 'unicase/empty-prefix-context'.
376         * lib/unicase/empty-prefix-context.c: New file.
377         * modules/unicase/empty-prefix-context: New file.
378
379         New module 'unicase/ignorable'.
380         * lib/unicase/ignorable.c: New file.
381         * modules/unicase/ignorable: New file.
382
383         New module 'unicase/cased'.
384         * lib/unicase/caseprop.h: New file.
385         * lib/unicase/cased.c: New file.
386         * modules/unicase/cased: New file.
387
388         New functions for case mapping of substrings.
389         * lib/unicase.h (casing_prefix_context_t): New type.
390         (unicase_empty_prefix_context): New variable.
391         (u8_casing_prefix_context, u16_casing_prefix_context,
392         u32_casing_prefix_context, u8_casing_prefixes_context,
393         u16_casing_prefixes_context, u32_casing_prefixes_context): New
394         declarations.
395         (casing_suffix_context_t): New type.
396         (unicase_empty_suffix_context): New variable.
397         (u8_casing_suffix_context, u16_casing_suffix_context,
398         u32_casing_suffix_context, u8_casing_suffixes_context,
399         u16_casing_suffixes_context, u32_casing_suffixes_context,
400         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
401         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
402         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
403         declarations.
404
405 2009-06-28  Jim Meyering  <meyering@redhat.com>
406
407         boostrap: indent only with spaces
408         * build-aux/bootstrap: Indent only with spaces, never TABs.
409
410         bootstrap: split long lines
411         * build-aux/bootstrap: Keep line length < 80.
412
413         bootstrap: sync from coreutils
414         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
415         just as autoreconf does.  Verify a list of prerequisite
416         package-name,version-number pairs if defined in bootstrap.conf.
417         Refer to README-prereq, if prerequisites are not satisfied.
418
419 2009-06-27  Eric Blake  <ebb9@byu.net>
420
421         tests: add test for bogus NULL definition
422         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
423         * tests/test-stdlib.c: Likewise.
424         * tests/test-string.c: Likewise.
425         * tests/test-locale.c: Likewise.
426         * tests/test-unistd.c: Likewise.
427         * modules/stdio-tests (Depends-on): Add verify.
428         * modules/stdlib-tests (Depends-on): Likewise.
429         * modules/string-tests (Depends-on): Likewise.
430         * modules/locale-tests (Depends-on): Likewise.
431         * modules/unistd-tests (Depends-on): Likewise.
432
433 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
434
435         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
436         self-explaining comment.
437         * m4/selinux-selinux-h: Update serial.
438         (gl_LIBSELINUX): New macro, adding a warning for missing development
439         packages to code extracted from...
440         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
441         Add warning for missing development packages here, too.
442
443 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
444
445         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
446
447 2009-06-25  Eric Blake  <ebb9@byu.net>
448
449         version-etc: fix regression
450         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
451         gcc.
452         (version_etc): Use it, to catch bugs with trailing NULL.
453         * lib/version-etc.c (version_etc_arn): Delete unused argument.
454         (version_etc_va): Fix logic bug.
455         * modules/version-etc-tests: Add test.
456         * tests/test-version-etc.c: New file.
457         * tests/test-version-etc.sh: Likewise.
458
459 2009-06-25  Sam Steingold  <sds@gnu.org>
460
461         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
462         mbtowc declaration.
463
464 2009-06-25  Eric Blake  <ebb9@byu.net>
465
466         fpurge: migrate into <stdio.h>
467         * lib/fpurge.h: Delete...
468         * lib/stdio.in.h (fpurge): ...and declare here, instead.
469         * lib/fpurge.c (fpurge): Change declaring header.
470         * modules/fpurge (Files): Drop deleted file.
471         (Depends-on): Add stdio.
472         (configure.ac): Set witness.
473         * modules/stdio (Makefile.am): Support fpurge macros.
474         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
475         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
476         * lib/fflush.c: Update client.
477         * tests/test-fpurge.c: Likewise.
478         * NEWS: Mention the change.
479
480 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
481
482        * lib/argp-version-etc.c (program_authors): Add const
483        qualifier.
484        * lib/version-etc.c: Fix typos in the comments.
485        * modules/argp-version-etc: Depends on version-etc.
486
487 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
488
489         argp-version-etc: new module.
490
491         * lib/argp-version-etc.c: New file.
492         * lib/argp-version-etc.h: New file.
493         * modules/argp-version-etc: New file.
494         * modules/argp-version-etc-tests: New file.
495         * tests/test-argp-version-etc.c: New test.
496         * tests/test-argp-version-etc-1.sh: New test.
497
498 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
499
500         Provide additional interfaces and documentation for version-etc
501         module.
502
503         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
504         interfaces.
505         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
506         prototypes.
507
508 2009-06-24  Bruno Haible  <bruno@clisp.org>
509
510         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
511         HAVE_LIB${NAME} macro.
512         Reported by Sam Steingold <sds@gnu.org>.
513
514 2009-06-23  Simon Josefsson  <simon@josefsson.org>
515
516         * modules/hash-tests (test_hash_LDADD): Link to libintl when
517         needed.
518
519 2009-06-21  Bruno Haible  <bruno@clisp.org>
520
521         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
522         work.
523         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
524         together with LIB${NAME}, LTLIB${NAME}.
525         Reported by Sam Steingold <sds@gnu.org>.
526
527 2009-06-20  Jim Meyering  <meyering@redhat.com>
528
529         tests: make sc_require_test_exit_idiom more generic
530         * top/maint.mk (Exit_witness_file): New overridable variable.
531         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
532         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
533
534 2009-06-19  Jim Meyering  <meyering@redhat.com>
535
536         hash: reverse order of src/dst parameters in an internal interface
537         * lib/hash.c (transfer_entries): Reverse order of parameters to
538         put DST before SRC.  Adjust callers.
539
540         tests: test-hash: avoid wholesale duplication
541         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
542         Instead, use a loop and add a single conditional.
543
544         tests: test-hash: allow seed selection via a command line argument
545         * tests/test-hash.c (get_seed): New function.
546         (main): Use it.
547
548 2009-06-19  Eric Blake  <ebb9@byu.net>
549
550         hash: avoid memory leak on allocation failure
551         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
552         failure.  Factor repeated algorithm...
553         (transfer_entries): ...into new helper routine.
554         (hash_delete): React to hash_rehash return value.
555
556         hash: reduce memory pressure in hash_rehash no-op case
557         * lib/hash.c (next_prime): Avoid overflow.
558         (hash_initialize): Factor bucket size computation...
559         (compute_bucket_size): ...into new helper function.
560         (hash_rehash): Use new function and open coding to reduce memory
561         pressure, and avoid a memory leak in USE_OBSTACK code.
562         Reported by Jim Meyering.
563
564 2009-06-18  Eric Blake  <ebb9@byu.net>
565
566         hash: make rotation more obvious
567         * modules/hash (Depends-on): Add bitrotate and stdint.
568         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
569         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
570         (SIZE_MAX): Rely on headers for definition.
571         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
572         (raw_hasher): Use rotr_sz.
573         Suggested by Jim Meyering.
574
575         hash: fix memory leak in last patch
576         * lib/hash.c (hash_rehash): Avoid memory leak.
577
578         hash: avoid no-op rehashing
579         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
580
581         hash: provide default callback functions
582         * lib/hash.c (raw_hasher, raw_comparator): New functions.
583         (hash_initialize): Use them as defaults.
584         * tests/test-hash.c (main): Test this.
585
586         hash: minor optimization
587         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
588         when possible.
589         (hash_initialize): Document this promise.
590         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
591         * tests/test-hash.c (hash_compare_strings): Test this.
592
593 2009-06-18  Bruno Haible  <bruno@clisp.org>
594
595         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
596         going to be replaced anyway.
597
598 2009-06-18  Bruno Haible  <bruno@clisp.org>
599
600         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
601         in one place.
602         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
603         be replaced anyway.
604
605 2009-06-18  Eric Blake  <ebb9@byu.net>
606
607         hash: check for resize before insertion
608         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
609         threshold before insertion, so that a pathological hash_rehash
610         that fills every bucket can still trigger another rehash.
611
612 2009-06-18  Jim Meyering  <meyering@redhat.com>
613
614         hash-tests: add a loop around the small tests
615         * tests/test-hash.c (main): Repeat small tests with selected
616         small initial table sizes.
617
618 2009-06-17  Eric Blake  <ebb9@byu.net>
619
620         hash: minor cleanups
621         * lib/hash.h (hash_entry): Make opaque, by moving...
622         * lib/hash.c (hash_entry): ...here.
623         (hash_insert): Clarify restrictions on what can be inserted.
624         (hash_get_next): Clarify when it is safe to remove an element
625         during traversal.
626         (check_tuning): Skip verification when tuning is known safe.
627         (hash_initialize): Clarify restrictions on tuning.
628
629 2009-06-17  Jim Meyering  <jim@meyering.net>
630         and Eric Blake  <ebb9@byu.net>
631
632         hash-tests: new module
633         * modules/hash-tests: New file.
634         * tests/test-hash.c: New file.
635
636 2009-06-17  Eric Blake  <ebb9@byu.net>
637
638         strstr-simple: document new module
639         * MODULES.html.sh: Document new module.
640
641         strstr, strcasestr: replace on platforms with broken memchr
642         * modules/strstr: Split into...
643         * modules/strstr-simple: ...new module that does not care about
644         performance, but does care about glibc bug.
645         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
646         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
647         if platform memchr is broken, per Debian bug 521737.
648         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
649         memchr.
650         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
651         * doc/posix-functions/strstr.texi (strstr): Document the fix.
652         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
653         * modules/mountlist (Depends-on): Add strstr-simple.
654         * modules/gen-uni-tables (Depends-on): Likewise.
655         * modules/argz (Depends-on): Add strstr.
656
657 2009-06-17  Bruno Haible  <bruno@clisp.org>
658
659         * modules/posix_spawn-internal (Depends-on): Add errno.
660
661 2009-06-17  Bruno Haible  <bruno@clisp.org>
662
663         Define missing ESTALE on Interix 3.5.
664         * lib/errno.in.h (ESTALE): Assign a value if missing.
665         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
666         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
667         missing.
668         * doc/posix-headers/errno.texi: Mention the Interix bug.
669         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
670
671 2009-06-15  Eric Blake  <ebb9@byu.net>
672
673         memchr, memchr2: add valgrind exception
674         * lib/memchr.valgrind: New file.
675         * lib/memchr2.valgrind: New file.
676         * modules/memchr (Files): Distribute valgrind file.
677         * modules/memchr2 (Files): Likewise.
678
679         docs: memchr is no longer obsolete
680         * MODULES.html.sh: Move memchr from obsolete to string.h section.
681         * lib/string.in.h (memchr): Simplify logic.
682
683 2009-06-14  Jim Meyering  <meyering@redhat.com>
684
685         link-follow: fix the "checking..." message to not mention trailing slash
686         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
687         never considered trailing slashes.
688
689 2009-06-14  Bruno Haible  <bruno@clisp.org>
690
691         * m4/memchr.m4: Mention also the bug on IA-64.
692         * doc/posix-functions/memchr.texi: Likewise.
693
694 2009-06-12  Eric Blake  <ebb9@byu.net>
695
696         memchr: detect broken x86_64 and alpha implementations
697         * modules/memchr-tests (Depends-on): Move mmap detection...
698         * modules/memchr (Depends-on): ...here.
699         (configure.ac): Set indicator.
700         * lib/string.in.h (memchr): Declare replacement.
701         * modules/string (Makefile.am): Trigger replacement.
702         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
703         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
704         bugs.
705         * doc/posix-functions/memchr.texi (memchr): Document the bug.
706         * modules/getpagesize (License): Relax license.
707
708 2009-06-11  Bruno Haible  <bruno@clisp.org>
709
710         * lib/idpriv.h: Add more references.
711
712 2009-06-08  Bruno Haible  <bruno@clisp.org>
713
714         Tests for module 'idpriv-droptemp'.
715         * modules/idpriv-droptemp-tests: New file.
716         * tests/test-idpriv-droptemp.sh: New file.
717         * tests/test-idpriv-droptemp.su.sh: New file.
718         * tests/test-idpriv-droptemp.c: New file.
719
720         New module 'idpriv-droptemp'.
721         * lib/idpriv-droptemp.c: New file.
722         * modules/idpriv-droptemp: New file.
723
724 2009-06-08  Bruno Haible  <bruno@clisp.org>
725
726         Tests for module 'idpriv-drop'.
727         * modules/idpriv-drop-tests: New file.
728         * tests/test-idpriv-drop.sh: New file.
729         * tests/test-idpriv-drop.su.sh: New file.
730         * tests/test-idpriv-drop.c: New file.
731
732         New module 'idpriv-drop'.
733         * lib/idpriv.h: New file.
734         * lib-idpriv-drop.c: New file.
735         * m4/idpriv.m4: New file.
736         * modules/idpriv-drop: New file.
737
738 2009-06-08  Bruno Haible  <bruno@clisp.org>
739
740         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
741         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
742         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
743         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
744         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
745         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
746         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
747
748 2009-06-08  Eric Blake  <ebb9@byu.net>
749
750         test-strstr: use memory fence, when possible
751         * tests/test-strstr.c (main): Use memory fence, in order to be
752         more likely to trigger Debian bug 521737.
753         * modules/strstr-tests (Files): Pull in additional files.
754
755         memchr: no longer obsolete, for wider field testing
756         * modules/memchr (Status, Notice): Delete, this module is no
757         longer obsolete.
758         * modules/vasnprintf (Depends-on): Add memchr.
759
760 2009-06-07  Jim Meyering  <meyering@redhat.com>
761
762         hash: declare some functions with the warn_unused_result attribute
763         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
764
765 2009-06-07  Bruno Haible  <bruno@clisp.org>
766
767         * tests/test-alignof.c: Don't test int64_t if it does not exist.
768         Reported by Eric Blake.
769
770 2009-06-06  Eric Blake  <ebb9@byu.net>
771
772         test-alignof: fix typo with long double
773         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
774         compiler error.
775
776 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
777
778         Escape non-texinfo { and }s.
779         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
780         markup error.
781
782 2009-06-04  Jim Meyering  <meyering@redhat.com>
783
784         gitlog-to-changelog: don't infloop on an empty commit log
785         * build-aux/gitlog-to-changelog: Warn about an empty log message.
786         Reported by Boris Petersen <transacid@centerim.org>.
787
788 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
789
790         version-etc: extend for packagers
791         Add three new configure options, intended for packagers:
792           --with-packager="packager name"
793           --with-packager-version="packager-specific version"
794           --with-packager-bug-reports="packager bug reporting"
795         An example with coreutils:
796           $ ./configure \
797             --with-packager=Gentoo \
798             --with-packager-bug-report=http://bugs.gentoo.org/ \
799             --with-packager-version="patchset 1.6"
800           $ ./src/ls --version | head -n3
801           ls (GNU coreutils) 7.1-dirty
802           Packaged by Gentoo (patchset 1.6)
803           Copyright (C) 2009 Free Software Foundation, Inc.
804         Note that the bug reporting info via --help doesn't show up because
805         coreutils uses its own custom emit_bug_reporting_address() implementation
806         in src/system.h.  If it didn't, it'd look like:
807           $ ./src/ls --help | tail -n4
808           Report bugs to <bug-coreutils@gnu.org>.
809           Report Gentoo bugs to <http://bugs.gentoo.org/>.
810           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
811           General help using GNU software: <http://www.gnu.org/gethelp/>.
812         * lib/version-etc.c: Print new information, if provided.
813         * m4/version-etc.m4: New file.
814         * modules/version-etc (Files): Add m4/version-etc.m4.
815         (configure.ac): Add gl_VERSION_ETC.
816
817 2009-05-31  Bruno Haible  <bruno@clisp.org>
818
819         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
820         and 'int64_t'.
821         * modules/alignof-tests (Dependencies): Add stdint.
822         Reported by Eric Blake.
823
824 2009-05-31  Bruno Haible  <bruno@clisp.org>
825
826         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
827         restriction due to compiler bugs.
828         Reported by Eric Blake.
829
830 2009-05-31  Simon Josefsson  <simon@josefsson.org>
831             Bruno Haible  <bruno@clisp.org>
832
833         Fix test-alignof failure.
834         * lib/alignof.h (alignof_slot): New macro.
835         (alignof_type): New macro, with the same semantics as the previous
836         'alignof'.
837         (alignof): Alias to alignof_slot.
838         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
839         check that the results are usable as constant expressions.
840
841 2009-05-31  Bruno Haible  <bruno@clisp.org>
842
843         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
844         * tests/test-memchr.c (main): Check that memchr does not read past the
845         first occurrence of the byte.
846         * tests/test-strstr.c (main): Update comment.
847         Suggested by Eric Blake.
848
849 2009-05-30  Bruno Haible  <bruno@clisp.org>
850
851         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
852         detail how to use dumpbin.
853         Reported by David Byron <dbyron@dbyron.com>.
854
855 2009-06-02  Simon Josefsson  <simon@josefsson.org>
856
857         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
858
859 2009-06-02  Simon Josefsson  <simon@josefsson.org>
860
861         * m4/manywarnings.m4: Add GCC 4.4 warnings.
862
863 2009-05-28  Bruno Haible  <bruno@clisp.org>
864
865         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
866         build-aux/ files.
867
868 2009-05-28  Simon Josefsson  <simon@josefsson.org>
869
870         * gnulib-tool (func_import): Transform license on build-aux/ files too.
871
872 2009-05-27  Simon Josefsson  <simon@josefsson.org>
873
874         * gnulib-tool (sed_transform_main_lib_file)
875         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
876         regexps.
877
878 2009-05-26  Simon Josefsson  <simon@josefsson.org>
879
880         * tests/test-strstr.c: Add another self-test.
881         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
882         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
883
884 2009-05-23  Bruno Haible  <bruno@clisp.org>
885
886         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
887         change.
888
889 2009-05-21  Bruno Haible  <bruno@clisp.org>
890
891         Simplify use of mode_t varargs.
892         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
893         uses 'mode_t' or 'int'.
894         * lib/openat.c (openat): Likewise.
895         * lib/open-safer.c (open_safer): Likewise.
896         * m4/mode_t.m4: New file.
897         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
898         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
899         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
900         * modules/open (Files): Add m4/mode_t.m4.
901         * modules/openat (Files): Likewise.
902         * modules/fcntl-safer (Files): Likewise.
903         Suggested by Eric Blake.
904
905 2009-05-21  Pádraig Brady  <P@draigbrady.com>
906
907         * doc/glibc-functions/fallocate.texi: New file.
908         * doc/gnulib.texi: Include it.
909
910 2009-05-21  Eric Blake  <ebb9@byu.net>
911             Bruno Haible  <bruno@clisp.org>
912
913         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
914         invocations.
915         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
916
917 2009-05-21  Eric Blake  <ebb9@byu.net>
918             Bruno Haible  <bruno@clisp.org>
919
920         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
921         include_next. Fix of 2008-11-20 commit.
922         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
923         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
924         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
925         NEXT_MATH_H.
926         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
927         instead of NEXT_MATH_H.
928
929 2009-05-21  Bruno Haible  <bruno@clisp.org>
930
931         Avoid redefinition warnings for SIZE_MAX.
932         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
933         Reported by Simon Josefsson.
934
935 2009-05-21  Bruno Haible  <bruno@clisp.org>
936
937         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
938         AC_CACHE_VAL.
939
940 2009-05-20  Bruno Haible  <bruno@clisp.org>
941
942         Make zeroptr.h work on mingw.
943         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
944         mprotect.
945         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
946         * modules/memchr2-tests (configure.ac): Likewise.
947         * modules/memcmp-tests (configure.ac): Likewise.
948         * modules/memmem-tests (configure.ac): Likewise.
949         * modules/memrchr-tests (configure.ac): Likewise.
950         Reported by Simon Josefsson.
951
952 2009-05-20  Simon Josefsson  <simon@josefsson.org>
953
954         * tests/test-glob.c: Include string.h for strcmp prototype.
955
956 2009-05-20  Simon Josefsson  <simon@josefsson.org>
957
958         * modules/getdelim (Depends-on): Add explicit stdint, although it
959         was implicitly already pulled in via realloc-posix.
960         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
961
962 2009-05-20  Simon Josefsson  <simon@josefsson.org>
963
964         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
965         G. Christensen" <tgc@jupiterrise.com>.
966         * m4/sys_socket_h.m4: Check for sa_family_t.
967         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
968         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
969         * tests/test-sys_socket.c: Check that sa_family_t works.
970
971 2009-05-18  Eric Blake  <ebb9@byu.net>
972
973         maint.mk: allow gnulib_dir in VPATH build
974         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
975
976 2009-05-15  Jim Meyering  <meyering@redhat.com>
977
978         maint.mk: Give gnulib_dir a default definition.
979         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
980         Thus, most packages no longer need to specify this variable in cfg.mk
981
982 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
983
984         rename.m4: fix typos that would make non-mingw cross-configure fail
985         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
986
987 2009-05-13  Eric Blake  <ebb9@byu.net>
988
989         mmap-anon: avoid out-of-order autoconf expansion
990         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
991         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
992         * modules/memchr-tests (Depends-on): Add extensions.
993         * modules/memchr2-tests (Depends-on): Add extensions.
994         * modules/memcmp-tests (Depends-on): Add extensions.
995         * modules/memmem-tests (Depends-on): Add extensions.
996         * modules/memrchr-tests (Depends-on): Add extensions.
997
998 2009-05-13  Bruno Haible  <bruno@clisp.org>
999
1000         Make some tests ISO C 99 compliant.
1001         * tests/zerosize-ptr.h: New file.
1002         * tests/test-memchr.c: Include zerosize-ptr.h.
1003         (main): Use a zero-size object pointer instead of NULL.
1004         * tests/test-memchr2.c: Include zerosize-ptr.h.
1005         (main): Use a zero-size object pointer instead of NULL.
1006         * tests/test-memcmp.c: Include zerosize-ptr.h.
1007         (main): Use a zero-size object pointer instead of NULL.
1008         * tests/test-memmem.c: Include zerosize-ptr.h.
1009         (main): Use a zero-size object pointer instead of NULL.
1010         * tests/test-memrchr.c: Include zerosize-ptr.h.
1011         (main): Use a zero-size object pointer instead of NULL.
1012         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
1013         m4/mmap-anon.m4.
1014         (Depends-on): Add getpagesize.
1015         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1016         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
1017         m4/mmap-anon.m4.
1018         (Depends-on): Add getpagesize.
1019         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1020         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
1021         m4/mmap-anon.m4.
1022         (Depends-on): Add getpagesize.
1023         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1024         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
1025         m4/mmap-anon.m4.
1026         (Depends-on): Add getpagesize.
1027         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1028         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
1029         m4/mmap-anon.m4.
1030         (Depends-on): Add getpagesize.
1031         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
1032
1033 2009-05-12  Bruno Haible  <bruno@clisp.org>
1034
1035         Tests for module 'alignof'.
1036         * modules/alignof-tests: New file.
1037         * tests/test-alignof.c: New file.
1038
1039 2009-05-12  Bruno Haible  <bruno@clisp.org>
1040
1041         Fix alignof macro.
1042         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
1043         vendor compilers that are always correct.
1044
1045 2009-05-12  Bruno Haible  <bruno@clisp.org>
1046
1047         Make the MAP_ANONYMOUS detection work on HP-UX 11.
1048         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
1049         not whether its fully works.
1050
1051 2009-05-12  Bruno Haible  <bruno@clisp.org>
1052
1053         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
1054
1055 2009-05-12  Jim Meyering  <meyering@redhat.com>
1056
1057         * top/maint.mk: Adjust backslash alignment.
1058
1059 2009-05-11  Simon Josefsson  <simon@josefsson.org>
1060
1061         * top/maint.mk: Make $(srcdir)/build-aux configurable.
1062
1063 2009-05-11  Eric Blake  <ebb9@byu.net>
1064
1065         argp: avoid undefined behavior
1066         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
1067         macros.
1068
1069 2009-05-08  Simon Josefsson  <simon@josefsson.org>
1070
1071         * tests/test-vc-list-files-git.sh: Do git config of user.email and
1072         user.name to prevent git commit from complaining.
1073
1074 2009-05-10  Bruno Haible  <bruno@clisp.org>
1075
1076         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
1077         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
1078         it rewrites every file name only once.
1079         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
1080
1081 2009-05-08  Bruno Haible  <bruno@clisp.org>
1082
1083         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
1084         instead of 'max'.
1085
1086 2009-05-08  Simon Josefsson  <simon@josefsson.org>
1087
1088         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
1089         sockaddr_storage test.
1090
1091 2009-05-07  Simon Josefsson  <simon@josefsson.org>
1092
1093         * modules/sys_socket (Makefile.am): Substitute
1094         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
1095         * m4/sys_socket_h.m4: Check for sockaddr_storage.
1096         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
1097         * tests/test-sys_socket.c: Check sockaddr_storage.
1098
1099 2009-05-08  Bruno Haible  <bruno@clisp.org>
1100
1101         New module 'alignof'.
1102         * lib/alignof.h: New file.
1103         * modules/alignof: New file.
1104
1105 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1106             Bruno Haible  <bruno@clisp.org>
1107
1108         Fix test-file-has-acl on FreeBSD.
1109         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
1110         mask is implicitly added.
1111         * tests/test-file-has-acl.c: Include <signal.h>.
1112         (main): Terminate the test after 5 seconds.
1113         * modules/acl-tests (configure.ac): Check for alarm function.
1114
1115 2009-05-04  Bruno Haible  <bruno@clisp.org>
1116
1117         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
1118         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
1119         * modules/errno (configure.ac): Drop AC_REQUIRE.
1120         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
1121         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
1122
1123 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1124
1125         * modules/glob-tests: New module.
1126         * tests/test-glob.c: Add.
1127
1128 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1129
1130         * modules/fnmatch-tests: New module.
1131         * tests/test-fnmatch.c: Add.
1132
1133 2009-05-04  Eric Blake  <ebb9@byu.net>
1134
1135         maint: make the new no-submodule-changes rule VPATH-safe
1136         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
1137
1138 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1139             Bruno Haible  <bruno@clisp.org>
1140
1141         acl: Fix infinite loop on FreeBSD.
1142         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
1143         of return value from acl_get_entry.
1144         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
1145         Likewise.
1146
1147 2009-05-03  Bruno Haible  <bruno@clisp.org>
1148
1149         * lib/acl-internal.h (acl_entries): Clarify return value.
1150         * lib/acl_entries.c (acl_entries): Likewise.
1151
1152 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1153
1154         Bug fix in acl module.
1155         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
1156
1157 2009-05-03  Bruno Haible  <bruno@clisp.org>
1158
1159         Create gperf-generated file in the source dir, not in the build dir.
1160         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
1161         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
1162         * modules/unicase/locale-language (unicase/locale-languages.h):
1163         Likewise.
1164         * modules/unicase/special-casing (unicase/special-casing-table.h):
1165         Likewise.
1166         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
1167         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
1168         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
1169         Reported by Ralf Wildenhues.
1170
1171 2009-05-03  Bruno Haible  <bruno@clisp.org>
1172
1173         * modules/fnmatch (Description, configure.ac): Taken from
1174         fnmatch-posix.
1175         * modules/fnmatch-posix: Turn into a symbolic reference to the
1176         'fnmatch' module, and deprecate.
1177         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
1178
1179 2009-05-03  Bruno Haible  <bruno@clisp.org>
1180
1181         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
1182         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
1183         Reported by Ralf Wildenhues.
1184
1185 2009-05-04  Simon Josefsson  <simon@josefsson.org>
1186
1187         * m4/fnmatch.m4: Fix fnmatch re-define.
1188
1189 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
1190
1191         priv-set: new module and tests; adapt write-any-file
1192         * lib/priv-set.c: New file.
1193         * lib/priv-set.h: New file.
1194         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
1195         * lib/write-any-file.c: Simplify by using priv-set module.
1196         * m4/priv-set.m4: New file.
1197         * modules/priv-set: New file.
1198         * modules/unlinkdir: Add dependency on priv-set module.
1199         * modules/write-any-file: Likewise.
1200
1201         Tests for module 'priv-set'.
1202         * modules/priv-set-tests: New file.
1203         * tests/test-priv-set.c: New file.
1204
1205 2009-05-03  Jim Meyering  <meyering@redhat.com>
1206             Bruno Haible  <bruno@clisp.org>
1207
1208         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
1209         use the converted UTF-8 variant of the name instead.
1210
1211 2009-05-03  Jim Meyering  <meyering@redhat.com>
1212
1213         tests: tighten some getdate tests
1214         * tests/test-getdate.c (main): Tighten tests: require equality,
1215         not just greater than.  Set TZ envvar to UTC0.
1216
1217 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
1218
1219         getdate: correctly interpret "next monday" when run on a Monday
1220         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
1221         that e.g., "next tues" (when run on a tuesday) results in a date
1222         that is one week in the future, and not today's date.
1223         I.e., add a week when the wday is the same as the current one.
1224         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
1225         and earlier by Martin Bernreuther and Jan Minář.
1226         * tests/test-getdate.c (main): Check that "next DAY" is always in
1227         the future and that "last DAY" is always in the past.
1228
1229 2009-05-02  Jim Meyering  <meyering@redhat.com>
1230
1231         build: ensure that a release build fails when a submodule is unclean
1232         * top/maint.mk (no-submodule-changes): New rule.
1233         (alpha beta major): Depend on it.
1234
1235 2009-05-02  Bruno Haible  <bruno@clisp.org>
1236
1237         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
1238         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
1239         shell variable gl_fnmatch_required to detect which variant is
1240         requested.
1241         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
1242         gl_FUNC_FNMATCH_POSIX.
1243         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
1244         exclude fnmatch-posix.
1245
1246 2009-05-02  Bruno Haible  <bruno@clisp.org>
1247
1248         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
1249         * modules/mbsrtowcs (License): Change to LGPLv2+.
1250         * modules/strnlen1 (License): Likewise.
1251         Reported by Simon Josefsson.
1252
1253 2009-05-02  Bruno Haible  <bruno@clisp.org>
1254
1255         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
1256         "cross".
1257         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
1258         gnulib-tool was called with option --source-base=lib.
1259
1260 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1261
1262         Use automake *-local hooks without commands, for extensibility.
1263         * modules/localcharset (Makefile.am): Rename install-exec-local
1264         rule to install-exec-localcharset, and make it a prerequisite of
1265         install-exec-local.  Likewise, rename the uninstall-local rule to
1266         uninstall-localcharset, and make it a prerequisite of the former.
1267
1268 2009-05-01  Bruno Haible  <bruno@clisp.org>
1269
1270         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
1271         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
1272         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
1273         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
1274         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
1275         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
1276         m4/locale-zh.m4, m4/codeset.m4.
1277
1278         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
1279         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
1280         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
1281         m4/locale-zh.m4.
1282
1283         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
1284         REPLACE_WCRTOMB if mbstate_t must be replaced.
1285         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
1286         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
1287
1288 2009-05-01  Bruno Haible  <bruno@clisp.org>
1289
1290         Avoid compiler warnings when redefining macros defined by <libintl.h>.
1291         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
1292         dngettext, dcngettext, textdomain, bindtextdomain,
1293         bind_textdomain_codeset): Undefine before redefining.
1294
1295 2009-04-30  Bruno Haible  <bruno@clisp.org>
1296
1297         Fix bug introduced on 2009-04-25.
1298         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
1299         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
1300         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
1301         is defined.
1302         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
1303         is defined.
1304         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
1305         is defined.
1306         Reported by Elbert_Pol <elbert.pol@gmail.com>.
1307
1308 2009-04-28  Bruno Haible  <bruno@clisp.org>
1309
1310         Comment tweaks.
1311         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
1312         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
1313         * lib/unicase.h (u*_casexfrm): Likewise.
1314         Reported by Paolo Bonzini.
1315
1316 2009-04-28  Bruno Haible  <bruno@clisp.org>
1317
1318         Fix a compilation error.
1319         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
1320         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
1321         Reported by Jim Meyering.
1322
1323 2009-04-27  Bruno Haible  <bruno@clisp.org>
1324
1325         New module 'libunistring'.
1326         * modules/libunistring: New file.
1327         * m4/libunistring.m4: New file.
1328         * MODULES.html.sh (Unicode string functions): Add it.
1329
1330 2009-04-27  Eric Blake  <ebb9@byu.net>
1331
1332         maint.mk: allow package-specific header to provide <config.h>
1333         * top/maint.mk (sc_require_config_h): New variable.
1334         (sc_require_config_h, sc_require_config_h_first): Use it.
1335
1336 2009-04-27  Simon Josefsson  <simon@josefsson.org>
1337
1338         * top/maint.mk (sc_avoid_if_before_free): Except
1339         useless-if-before-free script.
1340
1341 2009-04-27  Eric Blake  <ebb9@byu.net>
1342
1343         maintainer-makefile: depend on all required helper scripts
1344         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
1345         useless-if-before-free.
1346         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
1347         version, rather than assuming gnulib checkout is available.
1348         Reported by Simen Josefsson.
1349
1350 2009-04-26  Bruno Haible  <bruno@clisp.org>
1351
1352         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
1353         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
1354         "../" or "..".
1355
1356 2009-04-26  Bruno Haible  <bruno@clisp.org>
1357
1358         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
1359         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
1360         AC_LIB_HAVE_LINKFLAGS.
1361
1362 2009-04-26  Bruno Haible  <bruno@clisp.org>
1363
1364         Simplify calling convention of u*_conv_from_encoding.
1365         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
1366         u32_conv_from_encoding): Expect a resultbuf argument and return the
1367         result directly as a pointer.
1368         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
1369         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
1370         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
1371         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
1372         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
1373         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
1374         Update.
1375         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
1376         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
1377         * lib/vasnprintf.c (VASNPRINTF): Update.
1378         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
1379         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
1380         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
1381         * NEWS: Mention the change.
1382
1383 2009-04-26  Bruno Haible  <bruno@clisp.org>
1384
1385         Simplify calling convention of u*_conv_to_encoding.
1386         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
1387         u32_conv_to_encoding): Expect a resultbuf argument and return the
1388         result directly as a pointer.
1389         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
1390         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
1391         freeing scaled_offsets if mem_iconveha failed.
1392         * lib/unicase/u-casexfrm.h (FUNC): Update.
1393         * lib/uninorm/u-normxfrm.h (FUNC): Update.
1394         * lib/vasnprintf.c (VASNPRINTF): Update.
1395         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
1396         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
1397         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
1398         * NEWS: Mention the change.
1399
1400 2009-04-26  Bruno Haible  <bruno@clisp.org>
1401
1402         Avoid test failures on AIX and OSF/1.
1403         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
1404         malloc(0).
1405         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
1406         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
1407         Likewise.
1408         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
1409         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
1410         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
1411         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
1412         * doc/posix-functions/malloc.texi: Document the portability problem
1413         related to malloc(0).
1414
1415 2009-04-26  Bruno Haible  <bruno@clisp.org>
1416
1417         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
1418         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
1419         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
1420
1421 2009-04-25  Bruno Haible  <bruno@clisp.org>
1422
1423         Avoid link error when creating a namespace clean library.
1424         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
1425         as macro with arguments if already defined as an alias.
1426         * lib/signbitf.c (gl_signbitf): Don't undefine.
1427         * lib/signbitd.c (gl_signbitd): Don't undefine.
1428         * lib/signbitl.c (gl_signbitl): Don't undefine.
1429
1430 2009-04-25  Jim Meyering  <meyering@redhat.com>
1431
1432         vc-list-files: fix another quoting bug
1433         * build-aux/vc-list-files: Avoid sed backslash expansion
1434         of pathological directory names.
1435
1436 2009-04-25  Eric Blake  <ebb9@byu.net>
1437
1438         vc-list-files: fix shell quoting error
1439         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
1440         timestamp.
1441
1442 2009-04-25  Jim Meyering  <meyering@redhat.com>
1443
1444         vc-list-files: restore lost functionality with subdir argument
1445         * build-aux/vc-list-files: When given a non-"." sub-directory
1446         argument, substitute the $dir/ prefix back onto each resulting name.
1447         Otherwise, coreutils' root_tests check would fail.
1448
1449 2009-04-24  Eric Blake  <ebb9@byu.net>
1450
1451         vc-list-files: ignore git symlinks
1452         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
1453         than ls-files, to ignore git symlinks.
1454
1455         maint.mk: import improvements from m4
1456         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
1457         (move_if_change): Delete unused macro.
1458         (news-date-check, vc-diff-check): Support VPATH builds.
1459         (announcement): Likewise.  Split --bootstrap-tools list...
1460         (boostrap-tools): ...into separate list, which can be overridden
1461         in cfg.mk.
1462         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
1463         requiring dependency on useless-if-before-free module.
1464         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
1465         Support VPATH builds.
1466
1467 2009-04-24  Jim Meyering  <meyering@redhat.com>
1468
1469         maint.mk: remove coreutils-specific rules and variables
1470         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
1471         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
1472         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
1473
1474         maint.mk: remove obsolete rule
1475         * top/maint.mk (rel-check): Remove rule.
1476         (WGET, WGETFLAGS): Remove now-unused variables.
1477
1478 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1479
1480         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
1481         consistency.
1482
1483         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
1484         '$(PATH_SEPARATOR)' instead of ':'.
1485
1486 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1487
1488         * lib/getopt1.c (main): Use 'const' for static array.
1489
1490 2009-04-24  Simon Josefsson  <simon@josefsson.org>
1491
1492         * top/maint.mk: Sync with coreutils.
1493         * NEWS: Explain incompatibilities.
1494
1495 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1496             Bruno Haible  <bruno@clisp.org>
1497
1498         Fix cross-compilation results.
1499         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
1500         statement, as third argument of AC_TRY_RUN.
1501         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
1502         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
1503         Likewise.
1504         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
1505         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
1506         Likewise.
1507         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
1508         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
1509         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
1510
1511 2009-04-20  Bruno Haible  <bruno@clisp.org>
1512
1513         Avoid test failure on mingw.
1514         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
1515
1516 2009-04-20  Bruno Haible  <bruno@clisp.org>
1517
1518         Avoid compilation error on mingw.
1519         * modules/localename-tests (Depends-on): Add locale.
1520
1521 2009-04-19  Bruno Haible  <bruno@clisp.org>
1522
1523         Support for building a shared library on Windows platforms.
1524         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
1525         (main): Test the presence of UNINORM_NFC here.
1526         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
1527         (main): Test the presence of UNINORM_NFD here.
1528         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
1529         (main): Test the presence of UNINORM_NFKC here.
1530         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
1531         (main): Test the presence of UNINORM_NFKD here.
1532
1533 2009-04-19  Bruno Haible  <bruno@clisp.org>
1534
1535         Avoid a compiler warning.
1536         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
1537         Change type of variable 'sequence'.
1538
1539 2009-04-19  Bruno Haible  <bruno@clisp.org>
1540
1541         * modules/configmake (Makefile.am): When the contents of configmake.h
1542         does not change, arrange to preserve its modification time.
1543
1544 2009-04-17  Simon Josefsson  <simon@josefsson.org>
1545
1546         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
1547         gettext domain.
1548
1549 2009-04-16  Jim Meyering  <meyering@redhat.com>
1550
1551         useless-if-before-free: improve conversion code
1552         * build-aux/useless-if-before-free: Adjust code-in-comment to match
1553         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
1554
1555 2009-04-14  Bruno Haible  <bruno@clisp.org>
1556
1557         * modules/fcntl (Depends-on): Add extensions.
1558         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
1559
1560 2009-04-12  Ben Pfaff  <blp@gnu.org>
1561
1562         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
1563         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
1564
1565 2009-03-20  Ben Pfaff  <blp@gnu.org>
1566
1567         Make rename replace existing destinations on Windows.
1568         * m4/rename.m4: Add test for Mingw.
1569         * lib/rename.c: Add rename replacement that uses MoveFileEx with
1570         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
1571         * doc/posix-functions/rename.texi: Document.
1572
1573 2009-04-10  Bruno Haible  <bruno@clisp.org>
1574
1575         New include file "iconveh.h".
1576         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
1577         * lib/striconveh.h: Include it.
1578         (enum iconv_ilseq_handler): Remove definition.
1579         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
1580         striconveh.h.
1581         * lib/striconveha.c: Include striconveh.h.
1582         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
1583         * modules/striconveh (Files): Add lib/iconveh.h.
1584         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
1585         lib/striconveh.h.
1586
1587 2009-04-10  Bruno Haible  <bruno@clisp.org>
1588
1589         * lib/uniconv.h: Update comment.
1590
1591 2009-04-10  Bruno Haible  <bruno@clisp.org>
1592
1593         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
1594         always.
1595         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
1596         * lib/unistr/u16-mbtouc-aux.c: Likewise.
1597         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
1598         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
1599         "unistring-notinline.h", so that the function gets defined always.
1600         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
1601         * lib/unistr/u8-uctomb.c: Likewise.
1602         * lib/unistr/u16-mbtouc.c: Likewise.
1603         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
1604         * lib/unistr/u16-uctomb.c: Likewise.
1605         * lib/unistr/u32-mbtouc.c: Likewise.
1606         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
1607         * lib/unistr/u32-uctomb.c: Likewise.
1608
1609 2009-04-10  Bruno Haible  <bruno@clisp.org>
1610
1611         Mark 'utime' obsolete.
1612         * modules/utime (Status, Notice): New sections.
1613         Suggested by Jim Meyering.
1614
1615         Fix cross-compile guess for utime test.
1616         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
1617         autoconf.
1618         * doc/posix-functions/utime.texi: Give more precisions.
1619         Reported by Jan <ipif@ymail.com>.
1620
1621 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
1622
1623         filevercmp: correct today's change
1624         * lib/filevercmp.c: Also handle coreutils' test inputs.
1625         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
1626
1627         Fix regression in 'filevercmp' module. Thanks Sven Joachim
1628         for reporting it.
1629         * lib/filevercmp.c: Special handle for "", "." and "..".
1630         * tests/test-filevercmp.c: Enlarge the set suite.
1631
1632 2009-04-07  Jim Meyering  <meyering@redhat.com>
1633
1634         useless-if-before-free: show how to remove braced useless free, too
1635         * build-aux/useless-if-before-free: still only in a comment, though.
1636
1637 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
1638
1639         maint.mk: import changes to syntax-check macros from coreutils
1640         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
1641         Use them in the relevant macros.
1642
1643 2009-04-06  Bruno Haible  <bruno@clisp.org>
1644
1645         Fix unportable use of bit-fields.
1646         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
1647         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
1648         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
1649
1650 2009-04-06  Bruno Haible  <bruno@clisp.org>
1651
1652         Avoid test failures on AIX and OSF/1.
1653         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
1654         that malloc(0) = NULL.
1655         * tests/unicase/test-u8-tolower.c (check): Likewise.
1656         * tests/unicase/test-u8-totitle.c (check): Likewise.
1657         * tests/unicase/test-u8-toupper.c (check): Likewise.
1658         * tests/unicase/test-u16-casefold.c (check): Likewise.
1659         * tests/unicase/test-u16-tolower.c (check): Likewise.
1660         * tests/unicase/test-u16-totitle.c (check): Likewise.
1661         * tests/unicase/test-u16-toupper.c (check): Likewise.
1662         * tests/unicase/test-u32-casefold.c (check): Likewise.
1663         * tests/unicase/test-u32-tolower.c (check): Likewise.
1664         * tests/unicase/test-u32-totitle.c (check): Likewise.
1665         * tests/unicase/test-u32-toupper.c (check): Likewise.
1666         * tests/uninorm/test-u8-nfc.c (check): Likewise.
1667         * tests/uninorm/test-u8-nfd.c (check): Likewise.
1668         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
1669         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
1670         * tests/uninorm/test-u16-nfc.c (check): Likewise.
1671         * tests/uninorm/test-u16-nfd.c (check): Likewise.
1672         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
1673         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
1674         * tests/uninorm/test-u32-nfc.c (check): Likewise.
1675         * tests/uninorm/test-u32-nfd.c (check): Likewise.
1676         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
1677         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
1678
1679 2009-04-05  Bruno Haible  <bruno@clisp.org>
1680
1681         Work around an autoconf limitation.
1682         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
1683         comment line if it would be longer than 3 KB.
1684
1685 2009-04-05  Bruno Haible  <bruno@clisp.org>
1686
1687         Avoid test failure with libiconv-1.13.
1688         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
1689         of the expected test results.
1690
1691 2009-04-05  Bruno Haible  <bruno@clisp.org>
1692
1693         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
1694         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
1695         that it should be installed.
1696
1697 2009-04-05  Bruno Haible  <bruno@clisp.org>
1698
1699         * gnulib-tool: New option --copy-file.
1700         (func_usage): Document it.
1701         (func_dest_tmpfilename): Moved out of func_import.
1702         (func_add_file, func_update_file): New functions, extracted from
1703         func_import.
1704         (func_import): Update.
1705
1706 2009-04-05  Karl Berry  <karl@gnu.org>
1707
1708         * README: prominently mention gnulib-tool.
1709         Rearrange sections so getting the code is near the top.
1710
1711 2009-04-05  Bruno Haible  <bruno@clisp.org>
1712
1713         * lib/unicase.h: Mention u*_cmp2.
1714         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
1715         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
1716         * lib/unicase/ulc-casecmp.c: Likewise.
1717         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
1718         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
1719         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
1720         unistr/u8-cmp.
1721         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
1722         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
1723         unistr/u16-cmp.
1724         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
1725         unistr/u32-cmp.
1726
1727         * lib/uninorm.h: Mention u*_cmp2.
1728         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
1729         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
1730         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
1731         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
1732         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
1733         unistr/u8-cmp.
1734         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
1735         unistr/u16-cmp.
1736         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
1737         unistr/u32-cmp.
1738
1739         New module 'unistr/u32-cmp2'.
1740         * lib/unistr/u32-cmp2.c: New file.
1741         * modules/unistr/u32-cmp2: New file.
1742
1743         New module 'unistr/u16-cmp2'.
1744         * lib/unistr/u16-cmp2.c: New file.
1745         * modules/unistr/u16-cmp2: New file.
1746
1747         New module 'unistr/u8-cmp2'.
1748         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
1749         * lib/unistr/u8-cmp2.c: New file.
1750         * lib/unistr/u-cmp2.h: New file.
1751         * modules/unistr/u8-cmp2: New file.
1752
1753 2009-04-05  Bruno Haible  <bruno@clisp.org>
1754
1755         * lib/unictype.h (uc_property_is_valid): New macro.
1756         * tests/unictype/test-pr_byname.c (main): Use it.
1757
1758         * lib/unistr.h: Doc fixes.
1759         * lib/uniconv.h: Doc fixes.
1760         * lib/unictype.h: Doc fixes.
1761
1762 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
1763
1764         Port coreutils 7.2 to Solaris 8.
1765
1766         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
1767         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
1768         for Solaris 8.  This is a bit of a hack, as it means it's the
1769         caller's responsibility to add -lnsl if needed, but most likely it
1770         won't be needed since only getaddrinfo uses this and getaddrinfo
1771         isn't needed on Solaris 8.
1772
1773         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
1774         problem to Solaris 8 encountered with coreutils 7.2, which
1775         resulted in a message "fnmatch.c:292: warning: passing argument 4
1776         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
1777         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
1778
1779 2009-04-03  Simon Josefsson  <simon@josefsson.org>
1780
1781         * m4/ld-version-script.m4: Add FIXME comment.
1782
1783 2009-04-02  Simon Josefsson  <simon@josefsson.org>
1784
1785         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
1786         SOVERSION variable.
1787
1788 2009-04-02  Bruno Haible  <bruno@clisp.org>
1789
1790         * Makefile (info, html, dvi, pdf): Combine the rules.
1791         Suggested by Jim Meyering.
1792
1793 2009-04-01  Bruno Haible  <bruno@clisp.org>
1794
1795         * Makefile (info, html, dvi, pdf): New targets.
1796         Reported by Reuben Thomas <rrt@sc3d.org>.
1797
1798 2009-04-01  Bruno Haible  <bruno@clisp.org>
1799
1800         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
1801         can be put into PATH.
1802         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
1803
1804 2009-04-01  Bruno Haible  <bruno@clisp.org>
1805
1806         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
1807
1808 2009-04-01  Bruno Haible  <bruno@clisp.org>
1809
1810         Rename module 'visibility'.
1811         * modules/lib-symbol-visibility: Renamed from modules/visibility.
1812         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
1813         * doc/gnulib.texi: Update.
1814         * MODULES.html.sh (Misc): Update.
1815         * NEWS: Mention the change.
1816
1817 2009-04-01  Simon Josefsson  <simon@josefsson.org>
1818
1819         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
1820         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
1821         Eric Blake <ebb9@byu.net> for review.
1822         * MODULES.html.sh: Add lib-msvc-compat.
1823         * doc/gnulib.texi: Link to new section.
1824         * m4/ld-output-def.m4: New file.
1825         * doc/ld-output-def.texi: New file.
1826
1827 2009-04-01  Simon Josefsson  <simon@josefsson.org>
1828
1829         Rename ld-version-script to lib-symbol-versions.  Suggested by
1830         Bruno Haible <bruno@clisp.org>.
1831         * modules/ld-version-script: Renamed to lib-symbol-versions.
1832         * doc/ld-version-script.texi: Fix module name.
1833         * MODULES.html.sh: Add lib-symbol-versions.
1834
1835 2009-03-31  Simon Josefsson  <simon@josefsson.org>
1836
1837         * modules/u64-tests: New file.
1838         * tests/test-u64.c: New file.
1839
1840 2009-03-04  Simon Josefsson  <simon@josefsson.org>
1841
1842         * MODULES.html.sh: Mention u64.
1843         * modules/u64: New module.
1844         * modules/crypto/sha512: Depend on u64 module instead of providing
1845         u64.h.
1846
1847 2009-03-27  Eric Blake  <ebb9@byu.net>
1848
1849         test-strerror: make debugging EAI_SYSTEM easier
1850         * modules/getaddrinfo-tests (Depends-on): Add strerror.
1851         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
1852         failure was EAI_SYSTEM.
1853
1854 2009-03-25  Bruno Haible  <bruno@clisp.org>
1855
1856         Fix a problem with --enable-relocatable on Solaris 7.
1857         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
1858         since 2008-02-24.
1859
1860 2009-03-25  Eric Blake  <ebb9@byu.net>
1861
1862         test-sockets: avoid gcc warning
1863         * tests/test-sockets.c (main): Silence compiler warning.
1864
1865 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
1866
1867         New modules nproc, pthread, contributed by Glen Lenker.
1868
1869         * MODULES.html.sh: Add pthread, nproc.
1870         * lib/nproc.c: New file.
1871         * lib/nproc.h: New file.
1872         * lib/pthread.in.h: New file.
1873         * m4/pthread.m4: New file.
1874         * modules/nproc: New file.
1875         * modules/pthread: New file.
1876
1877 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1878
1879         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
1880         New variable.
1881
1882 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
1883
1884         filevercmp: handle simple~ and numbered.~3~ backup suffixes
1885         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
1886         * tests/test-filevercmp.c: Add tests for backup suffixes.
1887
1888 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1889
1890         * modules/stdlib (Depends-on): Add stdint, needed when defining
1891         struct random_data on, for example, HP-UX 10.20.  Reported by
1892         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
1893
1894 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1895
1896         * lib/readline.c (readline): Call fflush on stdout after printing
1897         prompt.
1898
1899 2009-03-20  Bruno Haible  <bruno@clisp.org>
1900
1901         Remove dependency from 'close' module to -lws2_32 on native Windows.
1902         * lib/close-hook.h: New file.
1903         * lib/close-hook.c: New file.
1904         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
1905         w32sock.h.
1906         (_gl_close_fd_maybe_socket): Remove function.
1907         (rpl_close): Invoke execute_all_close_hooks instead of
1908         _gl_close_fd_maybe_socket.
1909         * lib/sockets.c: Include close-hook.h, w32sock.h.
1910         (close_fd_maybe_socket): New function, essentially from lib/close.c.
1911         (close_sockets_hook): New variable.
1912         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
1913         (gl_sockets_cleanup): Unregister it.
1914         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
1915         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
1916         * modules/close-hook: New file.
1917         * modules/close (Files): Remove lib/w32sock.h.
1918         (Depends-on): Add close-hook.
1919         (Link): Remove section.
1920         * modules/sockets (Files): Add lib/w32sock.h.
1921         (Depends-on): Add close-hook.
1922         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
1923         invocation.
1924         * NEWS: Mention that LIB_CLOSE is gone.
1925
1926 2009-03-23  Eric Blake  <ebb9@byu.net>
1927
1928         signal-tests: test previous patch
1929         * tests/test-signal.c: New file.
1930         * modules/signal-tests: Likewise.
1931
1932         signal.h: always support 'volatile sig_atomic_t'
1933         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
1934         (gl_SIGNAL_H_DEFAULTS): Add a default.
1935         * modules/signal (Makefile.am): Substitute if needed.
1936         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
1937         users can blindly add volatile.
1938         * doc/posix-headers/signal.texi (signal.h): Document it.
1939         Reported by Matthew Woehlke.
1940
1941 2009-03-23  Jim Meyering  <meyering@redhat.com>
1942
1943         pathmax: PATH_MAX: use pathconf only when available
1944         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
1945         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
1946         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
1947         This avoids a link failure in a PSP cross-compilation environment
1948         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
1949
1950         * lib/vasnprintf.c (divide): Fix typo in comment.
1951
1952 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1953
1954         * gnulib-tool (func_filter_filelist): Fix comment.
1955
1956 2009-03-20  Bruno Haible  <bruno@clisp.org>
1957
1958         Make sockets.h self-contained.
1959         * lib/sockets.c: Include sockets.h first.
1960         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
1961
1962 2009-03-19  Eric Blake  <ebb9@byu.net>
1963
1964         doc: mention more functions added in cygwin 1.7.0
1965         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
1966         addition.
1967         * doc/posix-functions/log2f.texi: Likewise.
1968
1969 2009-03-19  Jim Meyering  <meyering@redhat.com>
1970
1971         fsusage: avoid syntax error due to statement-before-declaration
1972         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
1973         after all declarations.  Reported by Matthew Woehlke in
1974         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
1975
1976 2009-03-18  Eric Blake  <ebb9@byu.net>
1977
1978         build-aux/compile: sync from automake
1979         * build-aux/compile: New file, from automake.
1980         * config/srclist.txt: Mention build-aux/compile.
1981
1982 2009-03-17  Bruno Haible  <bruno@clisp.org>
1983
1984         * lib/git-merge-changelog.c: Fix typo in comment.
1985         Reported by Reuben Thomas <rrt@sc3d.org>.
1986
1987 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
1988
1989         * m4/regex.m4: update and improve help for
1990         --without-included-regex.
1991
1992 2009-03-17  Simon Josefsson  <simon@josefsson.org>
1993
1994         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
1995         failure on missing include files.
1996
1997 2009-03-17  Eric Blake  <ebb9@byu.net>
1998
1999         doc: mention more functions added in cygwin 1.7.0
2000         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
2001         addition.
2002         * doc/posix-functions/fwscanf.texi: Likewise.
2003         * doc/posix-functions/swprintf.texi: Likewise.
2004         * doc/posix-functions/swscanf.texi: Likewise.
2005         * doc/posix-functions/vfwprintf.texi: Likewise.
2006         * doc/posix-functions/vfwscanf.texi: Likewise.
2007         * doc/posix-functions/vswprintf.texi: Likewise.
2008         * doc/posix-functions/vswscanf.texi: Likewise.
2009         * doc/posix-functions/vwprintf.texi: Likewise.
2010         * doc/posix-functions/vwscanf.texi: Likewise.
2011         * doc/posix-functions/wcscasecmp.texi: Likewise.
2012         * doc/posix-functions/wcsdup.texi: Likewise.
2013         * doc/posix-functions/wcsftime.texi: Likewise.
2014         * doc/posix-functions/wcsncasecmp.texi: Likewise.
2015         * doc/posix-functions/wprintf.texi: Likewise.
2016         * doc/posix-functions/wscanf.texi: Likewise.
2017         * doc/glibc-functions/gethostbyname2.texi: Likewise.
2018
2019 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2020
2021         maint.mk: really add $(AM_MAKEFLAGS)
2022         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
2023         was inadvertently omitted in the last commit.
2024         Spotted by Bruno Haible.
2025
2026         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
2027         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
2028         $(AM_MAKEFLAGS)' rather than plain `make'.
2029
2030         gnulib-tool: execute $MAKE not make
2031         * gnulib-tool: Default $MAKE to 'make'.
2032         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
2033         than make.  Initialize $MAKE in the do-autobuild script.
2034
2035         gnulib-tool: use $MAKE not make in generated files
2036         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
2037         make, in generated files.  Initialize $MAKE in the do-autobuild
2038         script.
2039
2040         * top/GNUmakefile (_have-git-version-gen): Fix typo.
2041
2042         GNUmakefile: disable parallelism only for multiple, recursive targets
2043         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
2044         additions in the Makefile.
2045         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
2046         by Automake.
2047         (.NOTPARALLEL): Only disable parallel builds if multiple targets
2048         are listed on the command line and at least one of them is
2049         listed in $(ALL_RECURSIVE_TARGETS).
2050
2051 2009-03-14  Bruno Haible  <bruno@clisp.org>
2052
2053         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
2054         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
2055         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
2056         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
2057         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
2058         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
2059         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
2060         unistr/u8-uctomb.
2061         * modules/unistr/u8-strchr (Depends-on): Likewise.
2062         * modules/unistr/u8-strrchr (Depends-on): Likewise.
2063         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
2064         unistr/u16-uctomb.
2065         * modules/unistr/u16-strchr (Depends-on): Likewise.
2066         * modules/unistr/u16-strrchr (Depends-on): Likewise.
2067
2068 2009-03-12  Bruno Haible  <bruno@clisp.org>
2069
2070         Work around select() bug on Interix 3.5.
2071         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
2072         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
2073         * m4/select.m4: New file.
2074         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
2075         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
2076         * modules/select (Files): Add m4/select.m4.
2077         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
2078         * modules/nanosleep (Depends-on): Add select.
2079         * modules/poll (Depends-on): Likewise.
2080         * doc/posix-functions/select.texi: Mention the Interix bug.
2081         Reported by Markus Duft <mduft@gentoo.org>.
2082
2083         * lib/select.c: Renamed from lib/winsock-select.c.
2084         * modules/select (Files): Add lib/select.c, remove
2085         lib/winsock-select.c.
2086         (configure.ac): Update.
2087
2088 2009-03-12  Jim Meyering  <meyering@redhat.com>
2089
2090         avoid gcc warnings about unused macro definitions
2091         * lib/readtokens.c (STREQ): Remove unused definition.
2092         * lib/xmalloc.c (SIZE_MAX): Likewise.
2093         * lib/openat-die.c (N_): Likewise.
2094         * lib/mountlist.c (SIZE_MAX): Remove definition.
2095         Instead, include <stdint.h>.
2096         * lib/readutmp.c: Likewise.
2097         * modules/readutmp (Depends-on): Add stdint.
2098         * modules/mountlist (Depends-on): Add stdint.
2099         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
2100
2101 2009-03-10  Bruno Haible  <bruno@clisp.org>
2102
2103         Tests for module 'mbmemcasecoll'.
2104         * modules/mbmemcasecoll-tests: New file.
2105         * tests/test-mbmemcasecoll1.sh: New file.
2106         * tests/test-mbmemcasecoll2.sh: New file.
2107         * tests/test-mbmemcasecoll3.sh: New file.
2108         * tests/test-mbmemcasecoll.c: New file.
2109
2110         New module 'mbmemcasecoll'.
2111         * lib/mbmemcasecoll.h: New file.
2112         * lib/mbmemcasecoll.c: New file.
2113         * modules/mbmemcasecoll: New file.
2114
2115         * tests/test-mbmemcasecmp.h: New file, extracted from
2116         tests/test-mbmemcasecmp.c.
2117         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
2118         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
2119         (main): Update.
2120         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
2121
2122 2009-03-09  Bruno Haible  <bruno@clisp.org>
2123
2124         Tests for module 'mbmemcasecmp'.
2125         * modules/mbmemcasecmp-tests: New file.
2126         * tests/test-mbmemcasecmp1.sh: New file.
2127         * tests/test-mbmemcasecmp2.sh: New file.
2128         * tests/test-mbmemcasecmp3.sh: New file.
2129         * tests/test-mbmemcasecmp.c: New file.
2130
2131         New module 'mbmemcasecmp'.
2132         * lib/mbmemcasecmp.h: New file.
2133         * lib/mbmemcasecmp.c: New file.
2134         * modules/mbmemcasecmp: New file.
2135
2136 2009-03-09  Bruno Haible  <bruno@clisp.org>
2137
2138         Tests for module 'unicase/ulc-casecoll'.
2139         * modules/unicase/ulc-casecoll-tests: New file.
2140         * tests/unicase/test-ulc-casecoll1.sh: New file.
2141         * tests/unicase/test-ulc-casecoll2.sh: New file.
2142         * tests/unicase/test-ulc-casecoll.c: New file.
2143
2144         New module 'unicase/ulc-casecoll'.
2145         * lib/unicase.h (ulc_casecoll): New declaration.
2146         * lib/unicase/ulc-casecoll.c: New file.
2147         * modules/unicase/ulc-casecoll: New file.
2148
2149         New module 'unicase/ulc-casexfrm'.
2150         * lib/unicase.h (ulc_casexfrm): New declaration.
2151         * lib/unicase/ulc-casexfrm.c: New file.
2152         * modules/unicase/ulc-casexfrm: New file.
2153
2154 2009-03-09  Bruno Haible  <bruno@clisp.org>
2155
2156         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
2157         invocations.
2158
2159         * m4/mbscasecmp.m4: Remove file.
2160         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
2161         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
2162
2163         * m4/mbscasestr.m4: Remove file.
2164         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
2165         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
2166
2167         * m4/mbschr.m4: Remove file.
2168         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
2169         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
2170
2171         * m4/mbscspn.m4: Remove file.
2172         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
2173         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
2174
2175         * m4/mbslen.m4: Remove file.
2176         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
2177         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
2178
2179         * m4/mbsncasecmp.m4: Remove file.
2180         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
2181         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
2182
2183         * m4/mbsnlen.m4: Remove file.
2184         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
2185         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
2186
2187         * m4/mbspbrk.m4: Remove file.
2188         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
2189         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
2190
2191         * m4/mbspcasecmp.m4: Remove file.
2192         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
2193         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
2194
2195         * m4/mbsrchr.m4: Remove file.
2196         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
2197         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
2198
2199         * m4/mbssep.m4: Remove file.
2200         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
2201         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
2202
2203         * m4/mbsspn.m4: Remove file.
2204         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
2205         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
2206
2207         * m4/mbsstr.m4: Remove file.
2208         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
2209         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
2210
2211         * m4/mbstok_r.m4: Remove file.
2212         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
2213         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
2214
2215         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
2216
2217         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
2218         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
2219
2220         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
2221
2222 2009-03-08  Bruno Haible  <bruno@clisp.org>
2223
2224         Tests for module 'unicase/ulc-casecmp'.
2225         * modules/unicase/ulc-casecmp-tests: New file.
2226         * tests/unicase/test-ulc-casecmp1.sh: New file.
2227         * tests/unicase/test-ulc-casecmp2.sh: New file.
2228         * tests/unicase/test-ulc-casecmp.c: New file.
2229
2230         New module 'unicase/ulc-casecmp'.
2231         * lib/unicase.h (ulc_casecmp): New declaration.
2232         * lib/unicase/ulc-casecmp.c: New file.
2233         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
2234         'const SRC_UNIT *'.
2235         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
2236         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
2237         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
2238         * modules/unicase/ulc-casecmp: New file.
2239
2240         Tests for module 'unicase/u32-is-cased'.
2241         * modules/unicase/u32-is-cased-tests: New file.
2242         * tests/unicase/test-u32-is-cased.c: New file.
2243
2244         Tests for module 'unicase/u16-is-cased'.
2245         * modules/unicase/u16-is-cased-tests: New file.
2246         * tests/unicase/test-u16-is-cased.c: New file.
2247
2248         Tests for module 'unicase/u8-is-cased'.
2249         * modules/unicase/u8-is-cased-tests: New file.
2250         * tests/unicase/test-u8-is-cased.c: New file.
2251         * tests/unicase/test-is-cased.h: New file.
2252
2253         New module 'unicase/u32-is-cased'.
2254         * lib/unicase/u32-is-cased.c: New file.
2255         * modules/unicase/u32-is-cased: New file.
2256
2257         New module 'unicase/u16-is-cased'.
2258         * lib/unicase/u16-is-cased.c: New file.
2259         * modules/unicase/u16-is-cased: New file.
2260
2261         New module 'unicase/u8-is-cased'.
2262         * lib/unicase/u8-is-cased.c: New file.
2263         * lib/unicase/u-is-cased.h: New file.
2264         * modules/unicase/u8-is-cased: New file.
2265
2266         Tests for module 'unicase/u32-is-casefolded'.
2267         * modules/unicase/u32-is-casefolded-tests: New file.
2268         * tests/unicase/test-u32-is-casefolded.c: New file.
2269
2270         Tests for module 'unicase/u16-is-casefolded'.
2271         * modules/unicase/u16-is-casefolded-tests: New file.
2272         * tests/unicase/test-u16-is-casefolded.c: New file.
2273
2274         Tests for module 'unicase/u8-is-casefolded'.
2275         * modules/unicase/u8-is-casefolded-tests: New file.
2276         * tests/unicase/test-u8-is-casefolded.c: New file.
2277         * tests/unicase/test-is-casefolded.h: New file.
2278
2279         New module 'unicase/u32-is-casefolded'.
2280         * lib/unicase/u32-is-casefolded.c: New file.
2281         * modules/unicase/u32-is-casefolded: New file.
2282
2283         New module 'unicase/u16-is-casefolded'.
2284         * lib/unicase/u16-is-casefolded.c: New file.
2285         * modules/unicase/u16-is-casefolded: New file.
2286
2287         New module 'unicase/u8-is-casefolded'.
2288         * lib/unicase/u8-is-casefolded.c: New file.
2289         * modules/unicase/u8-is-casefolded: New file.
2290
2291         Tests for module 'unicase/u32-is-titlecase'.
2292         * modules/unicase/u32-is-titlecase-tests: New file.
2293         * tests/unicase/test-u32-is-titlecase.c: New file.
2294
2295         Tests for module 'unicase/u16-is-titlecase'.
2296         * modules/unicase/u16-is-titlecase-tests: New file.
2297         * tests/unicase/test-u16-is-titlecase.c: New file.
2298
2299         Tests for module 'unicase/u8-is-titlecase'.
2300         * modules/unicase/u8-is-titlecase-tests: New file.
2301         * tests/unicase/test-u8-is-titlecase.c: New file.
2302         * tests/unicase/test-is-titlecase.h: New file.
2303
2304         New module 'unicase/u32-is-titlecase'.
2305         * lib/unicase/u32-is-titlecase.c: New file.
2306         * modules/unicase/u32-is-titlecase: New file.
2307
2308         New module 'unicase/u16-is-titlecase'.
2309         * lib/unicase/u16-is-titlecase.c: New file.
2310         * modules/unicase/u16-is-titlecase: New file.
2311
2312         New module 'unicase/u8-is-titlecase'.
2313         * lib/unicase/u8-is-titlecase.c: New file.
2314         * modules/unicase/u8-is-titlecase: New file.
2315
2316         Tests for module 'unicase/u32-is-lowercase'.
2317         * modules/unicase/u32-is-lowercase-tests: New file.
2318         * tests/unicase/test-u32-is-lowercase.c: New file.
2319
2320         Tests for module 'unicase/u16-is-lowercase'.
2321         * modules/unicase/u16-is-lowercase-tests: New file.
2322         * tests/unicase/test-u16-is-lowercase.c: New file.
2323
2324         Tests for module 'unicase/u8-is-lowercase'.
2325         * modules/unicase/u8-is-lowercase-tests: New file.
2326         * tests/unicase/test-u8-is-lowercase.c: New file.
2327         * tests/unicase/test-is-lowercase.h: New file.
2328
2329         New module 'unicase/u32-is-lowercase'.
2330         * lib/unicase/u32-is-lowercase.c: New file.
2331         * modules/unicase/u32-is-lowercase: New file.
2332
2333         New module 'unicase/u16-is-lowercase'.
2334         * lib/unicase/u16-is-lowercase.c: New file.
2335         * modules/unicase/u16-is-lowercase: New file.
2336
2337         New module 'unicase/u8-is-lowercase'.
2338         * lib/unicase/u8-is-lowercase.c: New file.
2339         * modules/unicase/u8-is-lowercase: New file.
2340
2341         Tests for module 'unicase/u32-is-uppercase'.
2342         * modules/unicase/u32-is-uppercase-tests: New file.
2343         * tests/unicase/test-u32-is-uppercase.c: New file.
2344
2345         Tests for module 'unicase/u16-is-uppercase'.
2346         * modules/unicase/u16-is-uppercase-tests: New file.
2347         * tests/unicase/test-u16-is-uppercase.c: New file.
2348
2349         Tests for module 'unicase/u8-is-uppercase'.
2350         * modules/unicase/u8-is-uppercase-tests: New file.
2351         * tests/unicase/test-u8-is-uppercase.c: New file.
2352         * tests/unicase/test-is-uppercase.h: New file.
2353
2354         New module 'unicase/u32-is-uppercase'.
2355         * lib/unicase/u32-is-uppercase.c: New file.
2356         * modules/unicase/u32-is-uppercase: New file.
2357
2358         New module 'unicase/u16-is-uppercase'.
2359         * lib/unicase/u16-is-uppercase.c: New file.
2360         * modules/unicase/u16-is-uppercase: New file.
2361
2362         New module 'unicase/u8-is-uppercase'.
2363         * lib/unicase/u8-is-uppercase.c: New file.
2364         * modules/unicase/u8-is-uppercase: New file.
2365
2366         New module 'unicase/u32-is-invariant'.
2367         * lib/unicase/u32-is-invariant.c: New file.
2368         * modules/unicase/u32-is-invariant: New file.
2369
2370         New module 'unicase/u16-is-invariant'.
2371         * lib/unicase/u16-is-invariant.c: New file.
2372         * modules/unicase/u16-is-invariant: New file.
2373
2374         New module 'unicase/u8-is-invariant'.
2375         * lib/unicase/u8-is-invariant.c: New file.
2376         * lib/unicase/invariant.h: New file.
2377         * lib/unicase/u-is-invariant.h: New file.
2378         * modules/unicase/u8-is-invariant: New file.
2379
2380         Tests for module 'unicase/u32-casecoll'.
2381         * modules/unicase/u32-casecoll-tests: New file.
2382         * tests/unicase/test-u32-casecoll.c: New file.
2383
2384         Tests for module 'unicase/u16-casecoll'.
2385         * modules/unicase/u16-casecoll-tests: New file.
2386         * tests/unicase/test-u16-casecoll.c: New file.
2387
2388         Tests for module 'unicase/u8-casecoll'.
2389         * modules/unicase/u8-casecoll-tests: New file.
2390         * tests/unicase/test-u8-casecoll.c: New file.
2391
2392         New module 'unicase/u32-casecoll'.
2393         * lib/unicase/u32-casecoll.c: New file.
2394         * modules/unicase/u32-casecoll: New file.
2395
2396         New module 'unicase/u16-casecoll'.
2397         * lib/unicase/u16-casecoll.c: New file.
2398         * modules/unicase/u16-casecoll: New file.
2399
2400         New module 'unicase/u8-casecoll'.
2401         * lib/unicase/u8-casecoll.c: New file.
2402         * lib/unicase/u-casecoll.h: New file.
2403         * modules/unicase/u8-casecoll: New file.
2404
2405         New module 'unicase/u32-casexfrm'.
2406         * lib/unicase/u32-casexfrm.c: New file.
2407         * modules/unicase/u32-casexfrm: New file.
2408
2409         New module 'unicase/u16-casexfrm'.
2410         * lib/unicase/u16-casexfrm.c: New file.
2411         * modules/unicase/u16-casexfrm: New file.
2412
2413         New module 'unicase/u8-casexfrm'.
2414         * lib/unicase/u8-casexfrm.c: New file.
2415         * lib/unicase/u-casexfrm.h: New file.
2416         * modules/unicase/u8-casexfrm: New file.
2417
2418         Tests for module 'unicase/u32-casecmp'.
2419         * modules/unicase/u32-casecmp-tests: New file.
2420         * tests/unicase/test-u32-casecmp.c: New file.
2421
2422         Tests for module 'unicase/u16-casecmp'.
2423         * modules/unicase/u16-casecmp-tests: New file.
2424         * tests/unicase/test-u16-casecmp.c: New file.
2425
2426         Tests for module 'unicase/u8-casecmp'.
2427         * modules/unicase/u8-casecmp-tests: New file.
2428         * tests/unicase/test-u8-casecmp.c: New file.
2429         * tests/unicase/test-casecmp.h: New file.
2430
2431         New module 'unicase/u32-casecmp'.
2432         * lib/unicase/u32-casecmp.c: New file.
2433         * modules/unicase/u32-casecmp: New file.
2434
2435         New module 'unicase/u16-casecmp'.
2436         * lib/unicase/u16-casecmp.c: New file.
2437         * modules/unicase/u16-casecmp: New file.
2438
2439         New module 'unicase/u8-casecmp'.
2440         * lib/unicase/u8-casecmp.c: New file.
2441         * lib/unicase/u-casecmp.h: New file.
2442         * modules/unicase/u8-casecmp: New file.
2443
2444         Tests for module 'unicase/u32-casefold'.
2445         * modules/unicase/u32-casefold-tests: New file.
2446         * tests/unicase/test-u32-casefold.c: New file.
2447
2448         Tests for module 'unicase/u16-casefold'.
2449         * modules/unicase/u16-casefold-tests: New file.
2450         * tests/unicase/test-u16-casefold.c: New file.
2451
2452         Tests for module 'unicase/u8-casefold'.
2453         * modules/unicase/u8-casefold-tests: New file.
2454         * tests/unicase/test-u8-casefold.c: New file.
2455
2456         New module 'unicase/u32-casefold'.
2457         * lib/unicase/u32-casefold.c: New file.
2458         * modules/unicase/u32-casefold: New file.
2459
2460         New module 'unicase/u16-casefold'.
2461         * lib/unicase/u16-casefold.c: New file.
2462         * modules/unicase/u16-casefold: New file.
2463
2464         New module 'unicase/u8-casefold'.
2465         * lib/unicase/u8-casefold.c: New file.
2466         * lib/unicase/u-casefold.h: New file.
2467         * modules/unicase/u8-casefold: New file.
2468
2469         New module 'unicase/tocasefold'.
2470         * lib/unicase/casefold.h: New file.
2471         * lib/unicase/tocasefold.c: New file.
2472         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
2473         * modules/unicase/tocasefold: New file.
2474
2475         Tests for module 'unicase/u32-totitle'.
2476         * modules/unicase/u32-totitle-tests: New file.
2477         * tests/unicase/test-u32-totitle.c: New file.
2478
2479         Tests for module 'unicase/u16-totitle'.
2480         * modules/unicase/u16-totitle-tests: New file.
2481         * tests/unicase/test-u16-totitle.c: New file.
2482
2483         Tests for module 'unicase/u8-totitle'.
2484         * modules/unicase/u8-totitle-tests: New file.
2485         * tests/unicase/test-u8-totitle.c: New file.
2486
2487         New module 'unicase/u32-totitle'.
2488         * lib/unicase/u32-totitle.c: New file.
2489         * modules/unicase/u32-totitle: New file.
2490
2491         New module 'unicase/u16-totitle'.
2492         * lib/unicase/u16-totitle.c: New file.
2493         * modules/unicase/u16-totitle: New file.
2494
2495         New module 'unicase/u8-totitle'.
2496         * lib/unicase/u8-totitle.c: New file.
2497         * lib/unicase/u-totitle.h: New file.
2498         * modules/unicase/u8-totitle: New file.
2499
2500         Tests for module 'unicase/u32-tolower'.
2501         * modules/unicase/u32-tolower-tests: New file.
2502         * tests/unicase/test-u32-tolower.c: New file.
2503
2504         Tests for module 'unicase/u16-tolower'.
2505         * modules/unicase/u16-tolower-tests: New file.
2506         * tests/unicase/test-u16-tolower.c: New file.
2507
2508         Tests for module 'unicase/u8-tolower'.
2509         * modules/unicase/u8-tolower-tests: New file.
2510         * tests/unicase/test-u8-tolower.c: New file.
2511
2512         New module 'unicase/u32-tolower'.
2513         * lib/unicase/u32-tolower.c: New file.
2514         * modules/unicase/u32-tolower: New file.
2515
2516         New module 'unicase/u16-tolower'.
2517         * lib/unicase/u16-tolower.c: New file.
2518         * modules/unicase/u16-tolower: New file.
2519
2520         New module 'unicase/u8-tolower'.
2521         * lib/unicase/u8-tolower.c: New file.
2522         * modules/unicase/u8-tolower: New file.
2523
2524         Tests for module 'unicase/u32-toupper'.
2525         * modules/unicase/u32-toupper-tests: New file.
2526         * tests/unicase/test-u32-toupper.c: New file.
2527
2528         Tests for module 'unicase/u16-toupper'.
2529         * modules/unicase/u16-toupper-tests: New file.
2530         * tests/unicase/test-u16-toupper.c: New file.
2531
2532         Tests for module 'unicase/u8-toupper'.
2533         * modules/unicase/u8-toupper-tests: New file.
2534         * tests/unicase/test-u8-toupper.c: New file.
2535
2536         New module 'unicase/u32-toupper'.
2537         * lib/unicase/u32-toupper.c: New file.
2538         * modules/unicase/u32-toupper: New file.
2539
2540         New module 'unicase/u16-toupper'.
2541         * lib/unicase/u16-toupper.c: New file.
2542         * modules/unicase/u16-toupper: New file.
2543
2544         New module 'unicase/u8-toupper'.
2545         * lib/unicase/u8-toupper.c: New file.
2546         * modules/unicase/u8-toupper: New file.
2547
2548         New module 'unicase/u32-casemap'.
2549         * lib/unicase/u32-casemap.c: New file.
2550         * modules/unicase/u32-casemap: New file.
2551
2552         New module 'unicase/u16-casemap'.
2553         * lib/unicase/u16-casemap.c: New file.
2554         * modules/unicase/u16-casemap: New file.
2555
2556         New module 'unicase/u8-casemap'.
2557         * lib/unicase/unicasemap.h: New file.
2558         * lib/unicase/u8-casemap.c: New file.
2559         * lib/unicase/u-casemap.h: New file.
2560         * modules/unicase/u8-casemap: New file.
2561
2562         New module 'unicase/special-casing'.
2563         * lib/unicase/special-casing.h: New file.
2564         * lib/unicase/special-casing.c: New file.
2565         * lib/unicase/special-casing-table.gperf: New file, generated by
2566         gen-uni-tables.c.
2567         * modules/unicase/special-casing: New file.
2568
2569         Tests for module 'unicase/locale-language'.
2570         * modules/unicase/locale-language-tests: New file.
2571         * tests/unicase/test-locale-language.sh: New file.
2572         * tests/unicase/test-locale-language.c: New file.
2573
2574         New module 'unicase/locale-language'.
2575         * lib/unicase/locale-language.c: New file.
2576         * lib/unicase/locale-languages.gperf: New file.
2577         * modules/unicase/locale-language: New file.
2578
2579         Generate more tables for case conversion and case folding.
2580         * lib/gen-uni-tables.c (SCC_*): New enum items.
2581         (struct special_casing_rule): New type.
2582         (casing_rules, num_casing_rules, allocated_casing_rules): New
2583         variables.
2584         (add_casing_rule, fill_casing_rules): New functions.
2585         (struct casefold_rule): New type.
2586         (casefolding_rules, num_casefolding_rules,
2587         allocated_casefolding_rules): New variables.
2588         (fill_casefolding_rules): New function.
2589         (unicode_casefold): New variable.
2590         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
2591         sort_casing_rules, output_casing_rules): New functions.
2592         (main): Accept to more arguments: SpecialCasing.txt and
2593         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
2594         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
2595         Output mapping for casefolding.
2596
2597         * lib/unicase.h: Include stdbool.h, uninorm.h.
2598         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
2599         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
2600         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
2601         arguments.
2602         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
2603         resultp arguments.
2604         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
2605         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
2606         resultp arguments.
2607         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
2608         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
2609         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
2610         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
2611         declarations.
2612         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
2613
2614 2009-03-08  Bruno Haible  <bruno@clisp.org>
2615
2616         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
2617         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
2618         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
2619         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
2620
2621 2009-03-07  Bruno Haible  <bruno@clisp.org>
2622
2623         Adjust u*_normcmp, u*_normcoll API.
2624         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
2625         u16_normcoll, u32_normcoll): Change failure conventions.
2626         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
2627         errno and return -1.
2628         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
2629
2630 2009-03-07  Bruno Haible  <bruno@clisp.org>
2631
2632         Tests for module 'uninorm/u32-normcoll'.
2633         * modules/uninorm/u32-normcoll-tests: New file.
2634         * tests/uninorm/test-u32-normcoll.c: New file.
2635
2636         Tests for module 'uninorm/u16-normcoll'.
2637         * modules/uninorm/u16-normcoll-tests: New file.
2638         * tests/uninorm/test-u16-normcoll.c: New file.
2639
2640         Tests for module 'uninorm/u8-normcoll'.
2641         * modules/uninorm/u8-normcoll-tests: New file.
2642         * tests/uninorm/test-u8-normcoll.c: New file.
2643
2644 2009-03-07  Bruno Haible  <bruno@clisp.org>
2645
2646         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
2647         tests/uninorm/test-u32-normcmp.c.
2648         * tests/uninorm/test-u32-normcmp.c: Include it.
2649         (test_nonascii): New function, extracted from main. Add some more
2650         tests.
2651         (main): Invoke test_ascii and test_nonascii.
2652         * modules/uninorm/u32-normcmp-tests (Files): Add
2653         tests/uninorm/test-u32-normcmp.h.
2654         (Depends-on): Remove uninorm/u32-normcmp.
2655
2656         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
2657         tests/uninorm/test-u16-normcmp.c.
2658         * tests/uninorm/test-u16-normcmp.c: Include it.
2659         (test_nonascii): New function, extracted from main. Add some more
2660         tests.
2661         (main): Invoke test_ascii and test_nonascii.
2662         * modules/uninorm/u16-normcmp-tests (Files): Add
2663         tests/uninorm/test-u16-normcmp.h.
2664         (Depends-on): Remove uninorm/u16-normcmp.
2665
2666         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
2667         tests/uninorm/test-u8-normcmp.c.
2668         * tests/uninorm/test-u8-normcmp.c: Include it.
2669         (test_nonascii): New function, extracted from main. Add some more
2670         tests.
2671         (main): Invoke test_ascii and test_nonascii.
2672         * modules/uninorm/u8-normcmp-tests (Files): Add
2673         tests/uninorm/test-u8-normcmp.h.
2674         (Depends-on): Remove uninorm/u8-normcmp.
2675
2676 2009-03-07  Bruno Haible  <bruno@clisp.org>
2677
2678         New module 'uninorm/u32-normcoll'.
2679         * lib/uninorm/u32-normcoll.c: New file.
2680         * modules/uninorm/u32-normcoll: New file.
2681
2682         New module 'uninorm/u16-normcoll'.
2683         * lib/uninorm/u16-normcoll.c: New file.
2684         * modules/uninorm/u16-normcoll: New file.
2685
2686         New module 'uninorm/u8-normcoll'.
2687         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
2688         declarations.
2689         * lib/uninorm/u8-normcoll.c: New file.
2690         * lib/uninorm/u-normcoll.h: New file.
2691         * modules/uninorm/u8-normcoll: New file.
2692
2693         New module 'uninorm/u32-normxfrm'.
2694         * lib/uninorm/u32-normxfrm.c: New file.
2695         * modules/uninorm/u32-normxfrm: New file.
2696
2697         New module 'uninorm/u16-normxfrm'.
2698         * lib/uninorm/u16-normxfrm.c: New file.
2699         * modules/uninorm/u16-normxfrm: New file.
2700
2701         New module 'uninorm/u8-normxfrm'.
2702         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
2703         declarations.
2704         * lib/uninorm/u8-normxfrm.c: New file.
2705         * lib/uninorm/u-normxfrm.h: New file.
2706         * modules/uninorm/u8-normxfrm: New file.
2707
2708 2009-03-07  Bruno Haible  <bruno@clisp.org>
2709
2710         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
2711         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
2712         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
2713
2714 2009-03-07  Bruno Haible  <bruno@clisp.org>
2715
2716         New module 'memxfrm'.
2717         * lib/memxfrm.h: New file.
2718         * lib/memxfrm.c: New file.
2719         * modules/memxfrm: New file.
2720
2721 2009-03-07  Bruno Haible  <bruno@clisp.org>
2722
2723         New module 'memcmp2'.
2724         * lib/memcmp2.h: New file.
2725         * lib/memcmp2.c: New file.
2726         * modules/memcmp2: New file.
2727
2728 2009-03-07  Bruno Haible  <bruno@clisp.org>
2729
2730         Tests for module 'uninorm/decomposing-form'.
2731         * modules/uninorm/decomposing-form-tests: New file.
2732         * tests/uninorm/test-decomposing-form.c: New file.
2733
2734         New module 'uninorm/decomposing-form'.
2735         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
2736         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
2737         Add 'decomposing_variant' field.
2738         * lib/uninorm/decomposing-form.c: New file.
2739         * lib/uninorm/nfc.c (uninorm_nfc): Update.
2740         * lib/uninorm/nfd.c (uninorm_nfd): Update.
2741         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
2742         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
2743         * modules/uninorm/decomposing-form: New file.
2744         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
2745         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
2746
2747 2009-03-07  Bruno Haible  <bruno@clisp.org>
2748
2749         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
2750         strings.
2751
2752 2009-03-06  Bruno Haible  <bruno@clisp.org>
2753
2754         Tests for module 'uninorm/u32-normcmp'.
2755         * tests/uninorm/test-u32-normcmp.c: New file.
2756         * modules/uninorm/u32-normcmp-tests: New file.
2757
2758         Tests for module 'uninorm/u16-normcmp'.
2759         * tests/uninorm/test-u16-normcmp.c: New file.
2760         * modules/uninorm/u16-normcmp-tests: New file.
2761
2762         Tests for module 'uninorm/u8-normcmp'.
2763         * tests/uninorm/test-u8-normcmp.c: New file.
2764         * modules/uninorm/u8-normcmp-tests: New file.
2765
2766         New module 'uninorm/u32-normcmp'.
2767         * lib/uninorm/u32-normcmp.c: New file.
2768         * modules/uninorm/u32-normcmp: New file.
2769
2770         New module 'uninorm/u16-normcmp'.
2771         * lib/uninorm/u16-normcmp.c: New file.
2772         * modules/uninorm/u16-normcmp: New file.
2773
2774         New module 'uninorm/u8-normcmp'.
2775         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
2776         declarations.
2777         * lib/uninorm/u8-normcmp.c: New file.
2778         * lib/uninorm/u-normcmp.h: New file.
2779         * modules/uninorm/u8-normcmp: New file.
2780
2781 2009-03-06  Bruno Haible  <bruno@clisp.org>
2782
2783         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
2784         Reported by Eric Blake.
2785
2786 2009-03-06  Eric Blake  <ebb9@byu.net>
2787             Bruno Haible  <bruno@clisp.org>
2788
2789         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
2790         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
2791         condition.
2792         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
2793         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
2794         condition.
2795         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
2796
2797 2009-03-06  Eric Blake  <ebb9@byu.net>
2798
2799         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
2800         to avoid compiler warnings.
2801         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
2802
2803 2009-03-05  Bruno Haible  <bruno@clisp.org>
2804
2805         * tests/test-ftell.c (main): Disable test beyond end of file on
2806         FreeMiNT.
2807         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
2808
2809 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
2810
2811         * lib/filevercmp.c: Move hidden files up in ordering.
2812         * tests/test-filevercmp.c: Add tests for hidden files.
2813
2814 2009-03-04  Bruno Haible  <bruno@clisp.org>
2815
2816         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
2817         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
2818         AM_CFLAGS.
2819         Reported by Simon Josefsson.
2820
2821 2009-03-03  Bruno Haible  <bruno@clisp.org>
2822
2823         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
2824         Reported by Simon Josefsson.
2825
2826         * doc/ld-version-script.texi: Update node reference.
2827
2828 2009-03-03  Bruno Haible  <bruno@clisp.org>
2829
2830         * modules/visibility (License): Change to 'unlimited'.
2831         Suggested by Simon Josefsson.
2832
2833 2009-03-03  Jim Meyering  <meyering@redhat.com>
2834
2835         unlinkdir: cannot_unlink_dir may modify process state
2836         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
2837         it's neither thread-safe nor appropriate for use in a library.
2838
2839 2009-03-03  Eric Blake  <ebb9@byu.net>
2840
2841         test-closein: silence test under Darwin
2842         * tests/test-closein.sh: Ignore stderr from cat, since we don't
2843         care if it dies from EPIPE or EBADF.
2844
2845 2009-03-03  Bruno Haible  <bruno@clisp.org>
2846
2847         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
2848         earlier.
2849         * doc/visibility.texi: Fix @node and @section.
2850
2851 2009-03-03  Simon Josefsson  <simon@josefsson.org>
2852
2853         * doc/gnulib.texi: Link to sections for ld version script and
2854         visibility.
2855         * doc/visibility.texi: Add @node and @section.
2856         * modules/ld-version-script: New module.
2857         * m4/ld-version-script.m4: New file.
2858         * doc/ld-version-script.texi: New file.
2859
2860 2009-03-02  David Lutterkort  <lutter@redhat.com>
2861
2862         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
2863         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
2864
2865 2009-03-02  Bruno Haible  <bruno@clisp.org>
2866
2867         * doc/visibility.texi: Mention libtool's -export-symbols option.
2868
2869 2009-03-02  Jim Meyering  <meyering@redhat.com>
2870
2871         announce-gen: new option: --no-print-checksums
2872         * build-aux/announce-gen (usage): Describe it.
2873         (print_checksums): Print a newline here, not in the [*] footnote.
2874         (main): Honor it.
2875
2876 2009-03-01  Bruno Haible  <bruno@clisp.org>
2877
2878         Use socklen_t in the native Windows replacements prototypes.
2879         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
2880         instead of 'int'.
2881         * lib/getsockopt.c (rpl_getsockopt): Likewise.
2882         * lib/setsockopt.c (rpl_setsockopt): Likewise.
2883         * modules/getsockopt (Depends-on): Add socklen.
2884         * modules/setsockopt (Depends-on): Add socklen.
2885
2886 2009-03-01  Bruno Haible  <bruno@clisp.org>
2887
2888         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
2889         least 4.2.
2890
2891 2009-03-01  Eric Blake  <ebb9@byu.net>
2892             Bruno Haible  <bruno@clisp.org>
2893
2894         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
2895         error messages.
2896         * lib/wait-process.c (wait_subprocess): Omit error message about
2897         deadly signal sent to the child of termsigp != NULL.
2898
2899 2009-03-01  Eric Blake  <ebb9@byu.net>
2900
2901         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
2902
2903 2009-03-01  Bruno Haible  <bruno@clisp.org>
2904
2905         Avoid a gcc warning.
2906         * tests/test-sched.c (b): Make global.
2907         Reported by Eric Blake.
2908
2909 2009-01-19  Martin Lambers  <marlam@marlam.de>
2910
2911         Provide POSIX semantics for socket timeout options on W32.
2912         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
2913         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
2914         * modules/setsockopt: Depend on sys_time module for struct timeval.
2915         * modules/getsockopt: Depend on sys_time module for struct timeval.
2916
2917 2009-03-01  Simon Josefsson  <simon@josefsson.org>
2918
2919         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
2920         __USE_GNU, for consistency with netdb.in.h.
2921         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
2922
2923 2009-03-01  Bruno Haible  <bruno@clisp.org>
2924
2925         More support for FreeMiNT.
2926         * lib/fseeko.c (rpl_fseeko): Complete last commit.
2927         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
2928
2929 2009-03-01  Bruno Haible  <bruno@clisp.org>
2930
2931         More support for FreeMiNT.
2932         * lib/fpurge.c (fpurge): Correct last commit.
2933         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
2934
2935 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2936
2937         Fix unportable awk script in vc-list-files.
2938         * build-aux/vc-list-files: In the replacement awk script, use
2939         substr with a second argument of 1, not zero.
2940         Report by Simon Josefsson.
2941
2942 2009-02-28  Bruno Haible  <bruno@clisp.org>
2943
2944         More support for FreeMiNT.
2945         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
2946         to FreeMiNT today.
2947         * lib/fwriting.c (fwriting): Likewise.
2948         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
2949
2950 2009-02-28  Bruno Haible  <bruno@clisp.org>
2951
2952         * tests/test-freadseek.c (main): Disable test beyond end of file on
2953         FreeMiNT.
2954         * tests/test-ftello.c (main): Likewise.
2955         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
2956
2957 2009-02-28  Bruno Haible  <bruno@clisp.org>
2958
2959         Add tentative support for FreeMiNT.
2960         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
2961         * lib/fpurge.c (fpurge): Likewise.
2962         * lib/freadable.c (freadable): Likewise.
2963         * lib/freading.c (freading): Likewise.
2964         * lib/freadptr.c (freadptr): Likewise.
2965         * lib/freadseek.c (freadptrinc): Likewise.
2966         * lib/fseeko.c (rpl_fseeko): Likewise.
2967         * lib/fseterr.c (fseterr): Likewise.
2968         * lib/fwritable.c (fwritable): Likewise.
2969         * lib/fwriting.c (fwriting): Likewise.
2970         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
2971         Hourihane.
2972         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
2973
2974 2009-02-28  Bruno Haible  <bruno@clisp.org>
2975
2976         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
2977         SIGCHLD.
2978         Reported by Jim Meyering.
2979
2980 2009-02-28  Bruno Haible  <bruno@clisp.org>
2981
2982         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
2983         Mention the results of these tests on various platforms.
2984         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
2985         order.
2986         * doc/posix-functions/printf.texi: Likewise.
2987         * doc/posix-functions/snprintf.texi: Likewise.
2988         * doc/posix-functions/sprintf.texi: Likewise.
2989         * doc/posix-functions/vfprintf.texi: Likewise.
2990         * doc/posix-functions/vprintf.texi: Likewise.
2991         * doc/posix-functions/vsnprintf.texi: Likewise.
2992         * doc/posix-functions/vsprintf.texi: Likewise.
2993         * doc/glibc-functions/obstack_printf.texi: Likewise.
2994         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
2995
2996 2009-02-28  Bruno Haible  <bruno@clisp.org>
2997
2998         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
2999         Reported by Loïc Minier <lool@dooz.org>.
3000
3001 2009-02-27  Bruno Haible  <bruno@clisp.org>
3002
3003         * gnulib-tool (func_import): Make the sed expression used to create the
3004         sed script for updating the .gitignore file POSIX compliant.
3005         Reported by Eric Blake.
3006
3007 2009-02-27  Bruno Haible  <bruno@clisp.org>
3008
3009         * gnulib-tool (sed): Don't alias as "sed --posix".
3010         Reported by Eric Blake.
3011
3012 2009-02-27  Bruno Haible  <bruno@clisp.org>
3013
3014         Avoid test link errors.
3015         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
3016         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
3017         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
3018         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
3019         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3020
3021 2009-02-27  Bruno Haible  <bruno@clisp.org>
3022
3023         Avoid spurious "(cached)" in configure output.
3024         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
3025         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
3026         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
3027         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
3028         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
3029         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
3030         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
3031         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
3032         Reported by Eric Blake.
3033
3034 2009-02-27  Eric Blake  <ebb9@byu.net>
3035
3036         printf: fix regression in previous patch
3037         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
3038
3039 2009-02-27  Bruno Haible  <bruno@clisp.org>
3040
3041         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
3042         value.
3043         * lib/stdint.in.h: Likewise.
3044         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
3045
3046 2009-02-27  Eric Blake  <ebb9@byu.net>
3047
3048         doc: mention more functions added in cygwin 1.7.0
3049         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
3050         addition.
3051         * doc/posix-functions/open_wmemstream.texi: Likewise.
3052         * doc/posix-functions/wcsnlen.texi: Likewise.
3053         * doc/posix-functions/wcsnrtombs.texi: Likewise.
3054         * doc/posix-functions/wcstod.texi: Likewise.
3055         * doc/posix-functions/wcstof.texi: Likewise.
3056         * doc/posix-functions/wcstoimax.texi: Likewise.
3057         * doc/posix-functions/wcstok.texi: Likewise.
3058         * doc/posix-functions/wcstoumax.texi: Likewise.
3059
3060         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
3061         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
3062         * doc/posix-functions/fprintf.texi: Update.
3063         * doc/posix-functions/printf.texi: Update.
3064         * doc/posix-functions/snprintf.texi: Update.
3065         * doc/posix-functions/sprintf.texi: Update.
3066         * doc/posix-functions/vfprintf.texi: Update.
3067         * doc/posix-functions/vprintf.texi: Update.
3068         * doc/posix-functions/vsnprintf.texi: Update.
3069         * doc/posix-functions/vsprintf.texi: Update.
3070         * doc/glibc-functions/obstack_printf.texi: Update.
3071         * doc/glibc-functions/obstack_vprintf.texi: Update.
3072
3073 2009-02-26  Eric Blake  <ebb9@byu.net>
3074
3075         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
3076         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
3077         compilation bug by using runtime conversion.
3078         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
3079         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
3080         * modules/ceill-tests (Files): Use nan.h.
3081         * modules/floorl-tests (Files): Likewise.
3082         * modules/frexpl-tests (Files): Likewise.
3083         * modules/isnanl-tests (Files): Likewise.
3084         * modules/ldexpl-tests (Files): Likewise.
3085         * modules/roundl-tests (Files): Likewise.
3086         * modules/truncl-tests (Files): Likewise.
3087         * tests/test-ceill.c (main): Use a working NaN.
3088         * tests/test-floorl.c (main): Likewise.
3089         * tests/test-frexpl.c (main): Likewise.
3090         * tests/test-isnan.c (test_long_double): Likewise.
3091         * tests/test-isnanl.h (main): Likewise.
3092         * tests/test-ldexpl.h (main): Likewise.
3093         * tests/test-roundl.h (main): Likewise.
3094         * tests/test-truncl.h (main): Likewise.
3095         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
3096
3097 2009-02-26  Eric Blake  <ebb9@byu.net>
3098             Bruno Haible  <bruno@clisp.org>
3099
3100         Work around a *printf bug with %ls on Solaris.
3101         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
3102         precision is specified, sprintf stops converting the wide string
3103         argument when the number of bytes that have been produced by this
3104         conversion equals or exceeds the precision.
3105         * doc/posix-functions/fprintf.texi: Update.
3106         * doc/posix-functions/printf.texi: Update.
3107         * doc/posix-functions/snprintf.texi: Update.
3108         * doc/posix-functions/sprintf.texi: Update.
3109         * doc/posix-functions/vfprintf.texi: Update.
3110         * doc/posix-functions/vprintf.texi: Update.
3111         * doc/posix-functions/vsnprintf.texi: Update.
3112         * doc/posix-functions/vsprintf.texi: Update.
3113         * doc/glibc-functions/obstack_printf.texi: Update.
3114         * doc/glibc-functions/obstack_vprintf.texi: Update.
3115
3116 2009-02-26  Eric Blake  <ebb9@byu.net>
3117
3118         stdlib: favor compiler check of random.h
3119         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
3120         to avoid an ObjC random.h installed by Swarm.
3121
3122 2009-02-26  Bruno Haible  <bruno@clisp.org>
3123
3124         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
3125         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
3126         Reported by Gary V. Vaughan <gary@gnu.org>.
3127
3128 2009-02-26  Bruno Haible  <bruno@clisp.org>
3129
3130         Fix *printf behaviour regarding the %ls directive.
3131         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
3132         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
3133         NEED_PRINTF_DIRECTIVE_LS.
3134         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
3135         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
3136         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
3137         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
3138         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
3139         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
3140         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
3141         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
3142         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
3143         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
3144         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
3145         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
3146         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
3147         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
3148         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
3149         * doc/posix-functions/fprintf.texi: Update.
3150         * doc/posix-functions/printf.texi: Update.
3151         * doc/posix-functions/snprintf.texi: Update.
3152         * doc/posix-functions/sprintf.texi: Update.
3153         * doc/posix-functions/vfprintf.texi: Update.
3154         * doc/posix-functions/vprintf.texi: Update.
3155         * doc/posix-functions/vsnprintf.texi: Update.
3156         * doc/posix-functions/vsprintf.texi: Update.
3157         * doc/glibc-functions/obstack_printf.texi: Update.
3158         * doc/glibc-functions/obstack_vprintf.texi: Update.
3159         Reported by Eric Blake.
3160
3161 2009-02-25  Bruno Haible  <bruno@clisp.org>
3162
3163         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
3164         with known value.
3165         Reported by Gary V. Vaughan <gary@gnu.org>.
3166
3167 2009-02-25  Bruno Haible  <bruno@clisp.org>
3168
3169         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
3170         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
3171         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
3172         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
3173         Reported by Gary V. Vaughan <gary@gnu.org>.
3174
3175 2009-02-25  Bruno Haible  <bruno@clisp.org>
3176
3177         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
3178         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
3179         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
3180         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
3181         Reported by Gary V. Vaughan <gary@gnu.org>.
3182
3183 2009-02-25  Eric Blake  <ebb9@byu.net>
3184
3185         tests: skip fseek/ftell tests if ungetc is broken
3186         * m4/ungetc.m4: New file.
3187         * modules/fseek-tests: Split test, so ungetc dependency is
3188         separate from rest of test.
3189         * modules/fseeko-tests: Likewise.
3190         * modules/ftell-tests: Likewise.
3191         * modules/ftello-tests: Likewise.
3192         * tests/test-fseek.c (main): Isolate ungetc dependency.
3193         * tests/test-fseeko.c (main): Likewise.
3194         * tests/test-ftell.c (main): Likewise.
3195         * tests/test-ftello.c (main): Likewise.
3196         * tests/test-fseek2.sh: New file.
3197         * tests/test-fseeko2.sh: Likewise.
3198         * tests/test-ftell2.sh: Likewise.
3199         * tests/test-ftello2.sh: Likewise.
3200
3201 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
3202
3203         test-getaddrinfo: fix usage of skip return code 77
3204         * tests/test-gettaddrinfo.c: Return skip code 77 only
3205         for first occurance of skip (4x77 is not 77)
3206
3207 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
3208
3209         strtod: avoid C99 decl-after-statement
3210         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
3211
3212 2009-02-24  Eric Blake  <ebb9@byu.net>
3213
3214         strtod: detect HP-UX 11.31 bug
3215         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
3216         Reported by Gary V. Vaughan.
3217
3218 2009-02-23  Bruno Haible  <bruno@clisp.org>
3219
3220         Fix invalid read past end of memory block.
3221         * lib/vasnprintf.c (DCHAR_SET): Define.
3222         (local_wcslen): Define only when needed.
3223         (local_strnlen, local_wcsnlen): New functions.
3224         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
3225         directives that involve a conversion ourselves.
3226         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
3227         wcsnlen, mbrtowc, wcrtomb.
3228         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
3229         * tests/test-vasprintf-posix.c (test_function): Likewise.
3230         * tests/test-snprintf-posix.h (test_function): Likewise.
3231         * tests/test-sprintf-posix.h (test_function): Likewise.
3232         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3233
3234 2009-02-22  Bruno Haible  <bruno@clisp.org>
3235
3236         Implement new clarified decomposition of Hangul syllables.
3237         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
3238         of type LTV, return only a pairwise decomposition.
3239         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
3240         Likewise.
3241         * tests/uninorm/test-decomposition.c (main): Updated expected result.
3242         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
3243         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
3244
3245 2009-02-22  Bruno Haible  <bruno@clisp.org>
3246
3247         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
3248         zero-length results and shrink excess allocated memory.
3249         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
3250         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
3251         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
3252         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
3253         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
3254         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
3255         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
3256         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
3257         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
3258         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
3259         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
3260         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
3261
3262 2009-02-21  Bruno Haible  <bruno@clisp.org>
3263
3264         * doc/gnulib.texi: Include safe-alloc.texi earlier.
3265         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
3266         spaces after a period. Put a space between a macro name and its
3267         argument list. Trivial rewordings.
3268         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
3269         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
3270         (main): Return 0 explicitly.
3271
3272 2009-02-21  Bruno Haible  <bruno@clisp.org>
3273
3274         Tests for module 'uninorm/filter'.
3275         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
3276         * modules/uninorm/filter-tests: New file.
3277
3278         New module 'uninorm/filter'.
3279         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
3280         uninorm_filter_flush, uninorm_filter_free): New declarations.
3281         * lib/uninorm/uninorm-filter.c: New file.
3282         * modules/uninorm/filter: New file.
3283
3284 2009-02-21  Bruno Haible  <bruno@clisp.org>
3285
3286         Tests for module 'uninorm/nfkc'.
3287         * tests/uninorm/test-nfkc.c: New file.
3288         * tests/uninorm/test-u8-nfkc.c: New file.
3289         * tests/uninorm/test-u16-nfkc.c: New file.
3290         * tests/uninorm/test-u32-nfkc.c: New file.
3291         * tests/uninorm/test-u32-nfkc-big.sh: New file.
3292         * tests/uninorm/test-u32-nfkc-big.c: New file.
3293         * modules/uninorm/nfkc-tests: New file.
3294
3295         New module 'uninorm/nfkc'.
3296         * lib/uninorm/nfkc.c: New file.
3297         * modules/uninorm/nfkc: New file.
3298
3299         Tests for module 'uninorm/nfkd'.
3300         * tests/uninorm/test-nfkd.c: New file.
3301         * tests/uninorm/test-u8-nfkd.c: New file.
3302         * tests/uninorm/test-u16-nfkd.c: New file.
3303         * tests/uninorm/test-u32-nfkd.c: New file.
3304         * tests/uninorm/test-u32-nfkd-big.sh: New file.
3305         * tests/uninorm/test-u32-nfkd-big.c: New file.
3306         * modules/uninorm/nfkd-tests: New file.
3307
3308         New module 'uninorm/nfkd'.
3309         * lib/uninorm/nfkd.c: New file.
3310         * modules/uninorm/nfkd: New file.
3311
3312         Tests for module 'uninorm/nfc'.
3313         * tests/uninorm/test-nfc.c: New file.
3314         * tests/uninorm/test-u8-nfc.c: New file.
3315         * tests/uninorm/test-u16-nfc.c: New file.
3316         * tests/uninorm/test-u32-nfc.c: New file.
3317         * tests/uninorm/test-u32-nfc-big.sh: New file.
3318         * tests/uninorm/test-u32-nfc-big.c: New file.
3319         * modules/uninorm/nfc-tests: New file.
3320
3321         New module 'uninorm/nfc'.
3322         * lib/uninorm/nfc.c: New file.
3323         * modules/uninorm/nfc: New file.
3324
3325         Tests for module 'uninorm/nfd'.
3326         * tests/uninorm/test-nfd.c: New file.
3327         * tests/uninorm/test-u8-nfd.c: New file.
3328         * tests/uninorm/test-u16-nfd.c: New file.
3329         * tests/uninorm/test-u32-nfd.c: New file.
3330         * tests/uninorm/test-u32-nfd-big.sh: New file.
3331         * tests/uninorm/test-u32-nfd-big.c: New file.
3332         * tests/uninorm/test-u32-normalize-big.h: New file.
3333         * tests/uninorm/test-u32-normalize-big.c: New file.
3334         * tests/uninorm/NormalizationTest.txt: New file, created from
3335         Unicode 5.1.0 NormalizationTest.txt.
3336         * modules/uninorm/nfd-tests: New file.
3337
3338         New module 'uninorm/nfd'.
3339         * lib/uninorm/nfd.c: New file.
3340         * modules/uninorm/nfd: New file.
3341
3342         New module 'uninorm/u32-normalize'.
3343         * lib/uninorm/u32-normalize.c: New file.
3344         * modules/uninorm/u32-normalize: New file.
3345
3346         New module 'uninorm/u16-normalize'.
3347         * lib/uninorm/u16-normalize.c: New file.
3348         * modules/uninorm/u16-normalize: New file.
3349
3350         New module 'uninorm/u8-normalize'.
3351         * lib/uninorm/u8-normalize.c: New file.
3352         * lib/uninorm/normalize-internal.h: New file.
3353         * lib/uninorm/u-normalize-internal.h: New file.
3354         * modules/uninorm/u8-normalize: New file.
3355
3356         New module 'uninorm/decompose-internal'.
3357         * lib/uninorm/decompose-internal.c: New file.
3358         * modules/uninorm/decompose-internal: New file.
3359
3360         Tests for module 'uninorm/composition'.
3361         * tests/uninorm/test-composition.c: New file.
3362         * modules/uninorm/composition-tests: New file.
3363
3364         New module 'uninorm/composition'.
3365         * lib/uninorm/composition.c: New file.
3366         * lib/uninorm/composition-table.gperf: New file, generated by
3367         gen-uni-tables.
3368         * modules/uninorm/composition: New file.
3369
3370         Tests for module 'uninorm/compat-decomposition'.
3371         * tests/uninorm/test-compat-decomposition.c: New file.
3372         * modules/uninorm/compat-decomposition-tests: New file.
3373
3374         New module 'uninorm/compat-decomposition'.
3375         * lib/uninorm/decompose-internal.h: New file.
3376         * lib/uninorm/compat-decomposition.c: New file.
3377         * modules/uninorm/compat-decomposition: New file.
3378
3379         Tests for module 'uninorm/canonical-decomposition'.
3380         * tests/uninorm/test-canonical-decomposition.c: New file.
3381         * modules/uninorm/canonical-decomposition-tests: New file.
3382
3383         New module 'uninorm/canonical-decomposition'.
3384         * lib/uninorm/canonical-decomposition.c: New file.
3385         * modules/uninorm/canonical-decomposition: New file.
3386
3387         Tests for module 'uninorm/decomposition'.
3388         * tests/uninorm/test-decomposition.c: New file.
3389         * modules/uninorm/decomposition-tests: New file.
3390
3391         New module 'uninorm/decomposition'.
3392         * lib/uninorm/decomposition.c: New file.
3393         * modules/uninorm/decomposition: New file.
3394
3395         New module 'uninorm/decomposition-table'.
3396         * lib/uninorm/decomposition-table.h: New file.
3397         * lib/uninorm/decomposition-table.c: New file.
3398         * lib/uninorm/decomposition-table1.h: New file, generated by
3399         gen-uni-tables.
3400         * lib/uninorm/decomposition-table2.h: New file, generated by
3401         gen-uni-tables.
3402         * modules/uninorm/decomposition-table: New file.
3403
3404         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
3405         (UC_DECOMP_*): New enumeration items.
3406         (get_decomposition): New function.
3407         (struct decomp_table): New type.
3408         (output_decomposition, output_decomposition_tables): New functions.
3409         (unicode_composition_exclusions): New variable.
3410         (fill_composition_exclusions, debug_output_composition_tables): New
3411         functions.
3412         (main): Accept one more argument. Invoke fill_composition_exclusions.
3413         Output decomposition and composition tables.
3414
3415         New module 'uninorm/base'.
3416         * lib/uninorm.h: New file.
3417         * lib/unictype.h: Update comment.
3418         * modules/uninorm/base: New file.
3419
3420 2009-02-21  David Lutterkort  <lutter@redhat.com>
3421
3422         Tests for module 'safe-alloc'.
3423         * tests/test-safe-alloc.c: New file.
3424         * modules/safe-alloc-tests: New file.
3425
3426         New module 'safe-alloc'.
3427         * lib/safe-alloc.h: New file.
3428         * lib/safe-alloc.c: New file.
3429         * m4/safe-alloc.m4: New file.
3430         * modules/safe-alloc: New file.
3431         * doc/safe-alloc.texi: New file.
3432         * doc/gnulib.texi: Include it.
3433         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
3434         safe-alloc.
3435
3436 2009-02-18  Bruno Haible  <bruno@clisp.org>
3437
3438         Fix link error on non-glibc systems.
3439         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
3440         variable.
3441         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
3442
3443 2009-02-18  Jim Meyering  <meyering@redhat.com>
3444
3445         fts: avoid used-uninitialized error due to recent change
3446         * lib/fts.c (fts_read): Guard uses of the new member,
3447         parent->fts_n_dirs_remaining, since it's not relevant for
3448         the parent of a directory specified on the command-line.
3449
3450 2009-02-17  James Youngman  <jay@gnu.org>
3451             Bruno Haible  <bruno@clisp.org>
3452
3453         * m4/include_next.m4: Reformulate comment.
3454
3455 2009-02-16  Jim Meyering  <meyering@redhat.com>
3456
3457         fts: add #if guards so that the fts_lgpl module still builds
3458         * lib/fts.c: Guard just-added hash-table-using parts with
3459         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
3460         Reported by Simon Josefsson.
3461
3462 2009-02-15  Bruno Haible  <bruno@clisp.org>
3463
3464         * modules/array-mergesort-tests: New file.
3465         * tests/test-array-mergesort.c: New file.
3466
3467         New module 'array-mergesort'.
3468         * modules/array-mergesort: New file.
3469         * lib/array-mergesort.h: New file.
3470
3471 2009-02-15  Bruno Haible  <bruno@clisp.org>
3472
3473         Fix 2009-02-07 commit.
3474         * lib/gen-uni-tables.c (output_predicate, output_category,
3475         output_combclass, output_bidi_category, output_decimal_digit,
3476         output_digit, output_numeric, output_mirror, output_scripts,
3477         output_ident_category, output_simple_mapping): Fix format directives.
3478         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
3479
3480 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
3481
3482         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
3483         fixes are available from IBM.
3484
3485 2009-02-13  Jim Meyering  <meyering@redhat.com>
3486
3487         fts: arrange not to stat non-directories in more cases
3488         This makes GNU find (when it doesn't need to stat each file)
3489         *much* more efficient at traversing reiserfs file systems.
3490         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
3491         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
3492         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
3493         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
3494         (leaf_optimization_applies): New function.
3495         (LCO_hash, LCO_compare): New helper functions.
3496         (link_count_optimize_ok): New function.
3497         (fts_stat): Initialize new member (if dir).
3498         (fts_read): Decrement parent's fts_n_dirs_remaining count if
3499         we've just stat'ed a directory.  Skip the stat call when possible.
3500         ---
3501         Note this AFS-related exchange:
3502         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
3503         and note find's pioctl call in find/fstype.c.
3504         But that is necessary only if you want to enable the
3505         optimization for AFS, and for now, I don't.
3506
3507         fts: move a function definition "up" (no semantic change)
3508         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
3509         "up" to precede upcoming use of a related function.
3510
3511 2009-02-11  Jim Meyering  <meyering@redhat.com>
3512
3513         fts: correct internal computation of nlinks (optimization-related)
3514         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
3515         whether the current entry is a directory, so don't test it.
3516
3517 2009-02-10  Bruno Haible  <bruno@clisp.org>
3518
3519         Tests for module 'uniwbrk/ulc-wordbreaks'.
3520         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
3521         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
3522         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
3523
3524         Tests for module 'uniwbrk/u32-wordbreaks'.
3525         * modules/uniwbrk/u32-wordbreaks-tests: New file.
3526         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
3527
3528         Tests for module 'uniwbrk/u16-wordbreaks'.
3529         * modules/uniwbrk/u16-wordbreaks-tests: New file.
3530         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
3531
3532         Tests for module 'uniwbrk/u8-wordbreaks'.
3533         * modules/uniwbrk/u8-wordbreaks-tests: New file.
3534         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
3535
3536 2009-02-10  Bruno Haible  <bruno@clisp.org>
3537
3538         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
3539         property.
3540         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
3541         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
3542         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
3543
3544 2009-02-10  Simon Josefsson  <simon@josefsson.org>
3545
3546         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
3547         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
3548
3549 2009-02-10  Bruno Haible  <bruno@clisp.org>
3550
3551         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
3552         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
3553         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
3554         * lib/unilbrk/u8-possible-linebreaks.c: Update.
3555         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
3556         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
3557
3558 2009-02-09  Simon Josefsson  <simon@josefsson.org>
3559
3560         * lib/sockets.h (gl_fd_to_handle): New function.
3561
3562         * tests/test-sockets.c: Call gl_fd_to_handle.
3563
3564 2009-02-09  Bruno Haible  <bruno@clisp.org>
3565
3566         * doc/havelib.texi: Document the conventions on bi-arch systems.
3567
3568 2009-02-08  Bruno Haible  <bruno@clisp.org>
3569
3570         Document the AC_LIB_LINKFLAGS macro.
3571         * doc/havelib.texi: New file, mostly written on 2005-05-24.
3572         * doc/gnulib.texi: Include it.
3573
3574 2009-02-08  Bruno Haible  <bruno@clisp.org>
3575
3576         Fix wrong order of sections, compared to TOC.
3577         * doc/gnulib.texi: Include relocatable-maint.texi after the
3578         "Regular expressions" node, not before.
3579
3580 2009-02-08  Bruno Haible  <bruno@clisp.org>
3581
3582         Tests for module 'unicase/totitle'.
3583         * modules/unicase/totitle-tests: New file.
3584
3585         Tests for module 'unicase/tolower'.
3586         * modules/unicase/tolower-tests: New file.
3587
3588         Tests for module 'unicase/toupper'.
3589         * modules/unicase/toupper-tests: New file.
3590         * tests/unicase/test-mapping-part1.h: New file.
3591         * tests/unicase/test-mapping-part2.h: New file.
3592
3593         New module 'unicase/totitle'.
3594         * modules/unicase/totitle: New file.
3595         * lib/unicase/totitle.c: New file.
3596
3597         New module 'unicase/tolower'.
3598         * modules/unicase/tolower: New file.
3599         * lib/unicase/tolower.c: New file.
3600
3601         New module 'unicase/toupper'.
3602         * modules/unicase/toupper: New file.
3603         * lib/unicase/toupper.c: New file.
3604         * lib/unicase/simple-mapping.h: New file.
3605
3606         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
3607         (mapping_table): New structure.
3608         (output_simple_mapping): New function.
3609         (main): Invoke output_simple_mapping_test and output_simple_mapping.
3610         * modules/gen-uni-tables (Description): Update.
3611         * lib/unicase/toupper.h: New file, automatically generated by
3612         gen-uni-tables.
3613         * lib/unicase/tolower.h: New file, automatically generated by
3614         gen-uni-tables.
3615         * lib/unicase/totitle.h: New file, automatically generated by
3616         gen-uni-tables.
3617         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
3618         gen-uni-tables.
3619         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
3620         gen-uni-tables.
3621         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
3622         gen-uni-tables.
3623
3624         New module 'unicase/base'.
3625         * modules/unicase/base: New file.
3626         * lib/unicase.h: New file.
3627
3628 2009-02-08  Bruno Haible  <bruno@clisp.org>
3629
3630         New module 'uniwbrk/ulc-wordbreaks'.
3631         * modules/uniwbrk/ulc-wordbreaks: New file.
3632         * lib/uniwbrk/ulc-wordbreaks.c: New file.
3633
3634         New module 'uniwbrk/u32-wordbreaks'.
3635         * modules/uniwbrk/u32-wordbreaks: New file.
3636         * lib/uniwbrk/u32-wordbreaks.c: New file.
3637
3638         New module 'uniwbrk/u16-wordbreaks'.
3639         * modules/uniwbrk/u16-wordbreaks: New file.
3640         * lib/uniwbrk/u16-wordbreaks.c: New file.
3641
3642         New module 'uniwbrk/u8-wordbreaks'.
3643         * modules/uniwbrk/u8-wordbreaks: New file.
3644         * lib/uniwbrk/u8-wordbreaks.c: New file.
3645         * lib/uniwbrk/u-wordbreaks.h: New file.
3646
3647         New module 'uniwbrk/table'.
3648         * modules/uniwbrk/table: New file.
3649         * lib/uniwbrk/wbrktable.h: New file.
3650         * lib/uniwbrk/wbrktable.c: New file.
3651
3652         New module 'uniwbrk/wordbreak-property'.
3653         * modules/uniwbrk/wordbreak-property: New file.
3654         * lib/uniwbrk/wordbreak-property.c: New file.
3655
3656         * lib/gen-uni-tables.c (WBP_*): New enum items.
3657         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
3658         (unicode_org_wbp): New variable.
3659         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
3660         New functions.
3661         (wbp_table): New structure.
3662         (output_wbp, output_wbrk_tables): New functions.
3663         (main): Accept additional argument. Invoke fill_org_wbp,
3664         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
3665         output_wbrk_tables.
3666         * modules/gen-uni-tables (Description): Update.
3667         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
3668         gen-uni-tables.
3669
3670         New module 'uniwbrk/base'.
3671         * modules/uniwbrk/base: New file.
3672         * lib/uniwbrk.h: New file.
3673
3674 2009-02-08  Bruno Haible  <bruno@clisp.org>
3675
3676         Update to Unicode 5.1.0.
3677         * lib/gen-uni-tables.c (is_property_alphabetic): Include
3678         U+2185..U+2188.
3679         (is_property_default_ignorable_code_point): Don't include characters
3680         of category Cc or Cs and not-a-characters.
3681         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
3682         U+0D79, U+109E, U+109F, U+A60C.
3683         * lib/unictype/bidi_of.h: Regenerated.
3684         * lib/unictype/blocks.h: Regenerated.
3685         * lib/unictype/categ_C.h: Regenerated.
3686         * lib/unictype/categ_Cf.h: Regenerated.
3687         * lib/unictype/categ_Cn.h: Regenerated.
3688         * lib/unictype/categ_L.h: Regenerated.
3689         * lib/unictype/categ_Ll.h: Regenerated.
3690         * lib/unictype/categ_Lm.h: Regenerated.
3691         * lib/unictype/categ_Lo.h: Regenerated.
3692         * lib/unictype/categ_Lu.h: Regenerated.
3693         * lib/unictype/categ_M.h: Regenerated.
3694         * lib/unictype/categ_Mc.h: Regenerated.
3695         * lib/unictype/categ_Me.h: Regenerated.
3696         * lib/unictype/categ_Mn.h: Regenerated.
3697         * lib/unictype/categ_N.h: Regenerated.
3698         * lib/unictype/categ_Nd.h: Regenerated.
3699         * lib/unictype/categ_Nl.h: Regenerated.
3700         * lib/unictype/categ_No.h: Regenerated.
3701         * lib/unictype/categ_P.h: Regenerated.
3702         * lib/unictype/categ_Pd.h: Regenerated.
3703         * lib/unictype/categ_Pe.h: Regenerated.
3704         * lib/unictype/categ_Pf.h: Regenerated.
3705         * lib/unictype/categ_Pi.h: Regenerated.
3706         * lib/unictype/categ_Po.h: Regenerated.
3707         * lib/unictype/categ_Ps.h: Regenerated.
3708         * lib/unictype/categ_S.h: Regenerated.
3709         * lib/unictype/categ_Sk.h: Regenerated.
3710         * lib/unictype/categ_Sm.h: Regenerated.
3711         * lib/unictype/categ_So.h: Regenerated.
3712         * lib/unictype/categ_of.h: Regenerated.
3713         * lib/unictype/combining.h: Regenerated.
3714         * lib/unictype/ctype_alnum.h: Regenerated.
3715         * lib/unictype/ctype_alpha.h: Regenerated.
3716         * lib/unictype/ctype_graph.h: Regenerated.
3717         * lib/unictype/ctype_lower.h: Regenerated.
3718         * lib/unictype/ctype_print.h: Regenerated.
3719         * lib/unictype/ctype_punct.h: Regenerated.
3720         * lib/unictype/ctype_upper.h: Regenerated.
3721         * lib/unictype/decdigit.h: Regenerated.
3722         * lib/unictype/digit.h: Regenerated.
3723         * lib/unictype/mirror.h: Regenerated.
3724         * lib/unictype/numeric.h: Regenerated.
3725         * lib/unictype/pr_alphabetic.h: Regenerated.
3726         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
3727         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
3728         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
3729         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
3730         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
3731         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
3732         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
3733         * lib/unictype/pr_combining.h: Regenerated.
3734         * lib/unictype/pr_dash.h: Regenerated.
3735         * lib/unictype/pr_decimal_digit.h: Regenerated.
3736         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
3737         * lib/unictype/pr_deprecated.h: Regenerated.
3738         * lib/unictype/pr_diacritic.h: Regenerated.
3739         * lib/unictype/pr_extender.h: Regenerated.
3740         * lib/unictype/pr_format_control.h: Regenerated.
3741         * lib/unictype/pr_grapheme_base.h: Regenerated.
3742         * lib/unictype/pr_grapheme_extend.h: Regenerated.
3743         * lib/unictype/pr_grapheme_link.h: Regenerated.
3744         * lib/unictype/pr_id_continue.h: Regenerated.
3745         * lib/unictype/pr_id_start.h: Regenerated.
3746         * lib/unictype/pr_ideographic.h: Regenerated.
3747         * lib/unictype/pr_ignorable_control.h: Regenerated.
3748         * lib/unictype/pr_lowercase.h: Regenerated.
3749         * lib/unictype/pr_math.h: Regenerated.
3750         * lib/unictype/pr_numeric.h: Regenerated.
3751         * lib/unictype/pr_other_alphabetic.h: Regenerated.
3752         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
3753         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
3754         * lib/unictype/pr_other_id_continue.h: Regenerated.
3755         * lib/unictype/pr_other_lowercase.h: Regenerated.
3756         * lib/unictype/pr_other_math.h: Regenerated.
3757         * lib/unictype/pr_punctuation.h: Regenerated.
3758         * lib/unictype/pr_sentence_terminal.h: Regenerated.
3759         * lib/unictype/pr_soft_dotted.h: Regenerated.
3760         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
3761         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
3762         * lib/unictype/pr_unified_ideograph.h: Regenerated.
3763         * lib/unictype/pr_uppercase.h: Regenerated.
3764         * lib/unictype/pr_xid_continue.h: Regenerated.
3765         * lib/unictype/pr_xid_start.h: Regenerated.
3766         * lib/unictype/pr_zero_width.h: Regenerated.
3767         * lib/unictype/scripts.h: Regenerated.
3768         * lib/unictype/scripts_byname.gperf: Regenerated.
3769         * lib/unictype/sy_java_ident.h: Regenerated.
3770         * lib/unilbrk/lbrkprop1.h: Regenerated.
3771         * lib/unilbrk/lbrkprop2.h: Regenerated.
3772         * tests/unictype/test-categ_C.c: Regenerated.
3773         * tests/unictype/test-categ_Cf.c: Regenerated.
3774         * tests/unictype/test-categ_Cn.c: Regenerated.
3775         * tests/unictype/test-categ_L.c: Regenerated.
3776         * tests/unictype/test-categ_Ll.c: Regenerated.
3777         * tests/unictype/test-categ_Lm.c: Regenerated.
3778         * tests/unictype/test-categ_Lo.c: Regenerated.
3779         * tests/unictype/test-categ_Lu.c: Regenerated.
3780         * tests/unictype/test-categ_M.c: Regenerated.
3781         * tests/unictype/test-categ_Mc.c: Regenerated.
3782         * tests/unictype/test-categ_Me.c: Regenerated.
3783         * tests/unictype/test-categ_Mn.c: Regenerated.
3784         * tests/unictype/test-categ_N.c: Regenerated.
3785         * tests/unictype/test-categ_Nd.c: Regenerated.
3786         * tests/unictype/test-categ_Nl.c: Regenerated.
3787         * tests/unictype/test-categ_No.c: Regenerated.
3788         * tests/unictype/test-categ_P.c: Regenerated.
3789         * tests/unictype/test-categ_Pd.c: Regenerated.
3790         * tests/unictype/test-categ_Pe.c: Regenerated.
3791         * tests/unictype/test-categ_Pf.c: Regenerated.
3792         * tests/unictype/test-categ_Pi.c: Regenerated.
3793         * tests/unictype/test-categ_Po.c: Regenerated.
3794         * tests/unictype/test-categ_Ps.c: Regenerated.
3795         * tests/unictype/test-categ_S.c: Regenerated.
3796         * tests/unictype/test-categ_Sk.c: Regenerated.
3797         * tests/unictype/test-categ_Sm.c: Regenerated.
3798         * tests/unictype/test-categ_So.c: Regenerated.
3799         * tests/unictype/test-ctype_alnum.c: Regenerated.
3800         * tests/unictype/test-ctype_alpha.c: Regenerated.
3801         * tests/unictype/test-ctype_graph.c: Regenerated.
3802         * tests/unictype/test-ctype_lower.c: Regenerated.
3803         * tests/unictype/test-ctype_print.c: Regenerated.
3804         * tests/unictype/test-ctype_punct.c: Regenerated.
3805         * tests/unictype/test-ctype_upper.c: Regenerated.
3806         * tests/unictype/test-decdigit.h: Regenerated.
3807         * tests/unictype/test-digit.h: Regenerated.
3808         * tests/unictype/test-numeric.h: Regenerated.
3809         * tests/unictype/test-pr_alphabetic.c: Regenerated.
3810         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
3811         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
3812         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
3813         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
3814         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
3815         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
3816         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
3817         * tests/unictype/test-pr_combining.c: Regenerated.
3818         * tests/unictype/test-pr_dash.c: Regenerated.
3819         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
3820         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
3821         * tests/unictype/test-pr_deprecated.c: Regenerated.
3822         * tests/unictype/test-pr_diacritic.c: Regenerated.
3823         * tests/unictype/test-pr_extender.c: Regenerated.
3824         * tests/unictype/test-pr_format_control.c: Regenerated.
3825         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
3826         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
3827         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
3828         * tests/unictype/test-pr_id_continue.c: Regenerated.
3829         * tests/unictype/test-pr_id_start.c: Regenerated.
3830         * tests/unictype/test-pr_ideographic.c: Regenerated.
3831         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
3832         * tests/unictype/test-pr_lowercase.c: Regenerated.
3833         * tests/unictype/test-pr_math.c: Regenerated.
3834         * tests/unictype/test-pr_numeric.c: Regenerated.
3835         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
3836         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
3837         Regenerated.
3838         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
3839         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
3840         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
3841         * tests/unictype/test-pr_other_math.c: Regenerated.
3842         * tests/unictype/test-pr_punctuation.c: Regenerated.
3843         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
3844         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
3845         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
3846         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
3847         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
3848         * tests/unictype/test-pr_uppercase.c: Regenerated.
3849         * tests/unictype/test-pr_xid_continue.c: Regenerated.
3850         * tests/unictype/test-pr_xid_start.c: Regenerated.
3851         * tests/unictype/test-pr_zero_width.c: Regenerated.
3852
3853         Update to Unicode 5.1.0.
3854         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
3855         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
3856         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
3857         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
3858         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
3859         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
3860         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
3861         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
3862         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
3863         (nonspacing_table_ind): Update.
3864         * tests/uniwidth/test-uc_width2.sh: Update expected result.
3865
3866         Update to Unicode 5.1.0.
3867         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
3868         code transform.
3869         * lib/uniname/uniname.c (unicode_character_name,
3870         unicode_name_character): Add the range 0x1Fxxx to the code transform.
3871         * lib/uniname/uninames.h: Regenerated.
3872         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
3873
3874 2009-02-07  Bruno Haible  <bruno@clisp.org>
3875
3876         Merge gen-ctype and gen-lbrk into a single program.
3877         * lib/gen-uni-tables.c: New file, incorporating
3878         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
3879         Add directory prefixes to the names of the generated files.
3880         * lib/unictype/gen-ctype.c: Remove file.
3881         * lib/unilbrk/gen-lbrk.c: Remove file.
3882         * modules/gen-uni-tables: New file.
3883         * modules/unictype/gen-ctype: Remove file.
3884         * modules/unilbrk/gen-lbrk: Remove file.
3885
3886 2009-02-07  Bruno Haible  <bruno@clisp.org>
3887
3888         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
3889
3890         New module 'unistr/u32-strcoll'.
3891         * modules/unistr/u32-strcoll: New file.
3892         * lib/unistr/u32-strcoll.c: New file.
3893
3894         New module 'unistr/u16-strcoll'.
3895         * modules/unistr/u16-strcoll: New file.
3896         * lib/unistr/u16-strcoll.c: New file.
3897
3898         New module 'unistr/u8-strcoll'.
3899         * modules/unistr/u8-strcoll: New file.
3900         * lib/unistr/u8-strcoll.c: New file.
3901         * lib/unistr/u-strcoll.h: New file.
3902
3903 2009-02-07  Bruno Haible  <bruno@clisp.org>
3904
3905         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
3906         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
3907         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
3908         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
3909         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
3910         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
3911
3912 2009-02-07  Bruno Haible  <bruno@clisp.org>
3913
3914         Make 64-bit clean.
3915         * lib/unictype/gen-ctype.c (output_predicate, output_category,
3916         output_combclass, output_bidi_category, output_decimal_digit,
3917         output_digit, output_numeric, output_mirror, output_scripts,
3918         output_ident_category): Use proper width specifier in format strings.
3919
3920 2009-02-07  Bruno Haible  <bruno@clisp.org>
3921
3922         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
3923         failure behaviour.
3924
3925 2009-02-07  Jim Meyering  <meyering@redhat.com>
3926
3927         regex: avoid compilation failure with upcoming gcc-4.4
3928         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
3929         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
3930         "... error: integer overflow in preprocessor expression".
3931
3932 2009-02-05  Ben Pfaff  <blp@gnu.org>
3933
3934         Fix link errors on Windows when close module is used.
3935         * modules/close: Add $(LIB_CLOSE) to Link section.
3936         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
3937         $(LIB_CLOSE) on Windows.
3938
3939 2009-02-05  Jim Meyering  <meyering@redhat.com>
3940
3941         still avoid unused-parameter warnings, but do it cleanly
3942         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
3943         (get_fs_usage): Cast to void instead.
3944         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
3945         (dev_from_mount_options, read_file_system_list): Cast to void.
3946         Prompted by Bruno Haible.
3947
3948 2009-02-04  Jim Meyering  <meyering@redhat.com>
3949
3950         fsusage.c: correct copyright year
3951         * lib/fsusage.c: Reflect year in which the change is pushed into
3952
3953         avoid misc. warnings
3954         * lib/fsusage.c (UNUSED_PARAM): Define.
3955         (get_fs_usage): Mark parameter "disk" as unused.
3956         * lib/getugroups.c (getgrent): Use "void" in prototype.
3957         * lib/mountlist.c: Mark unused parameters.
3958         (read_file_system_list): Declare a local with "const".
3959         * lib/nanosleep.c (getnow): Declare static.
3960         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
3961
3962         dirfd: set errno upon failure
3963         * lib/dirfd.c: Include <errno.h>.
3964         Set errno to ENOTSUP when returning -1.
3965         * modules/dirfd (Depends-on): Add errno.
3966         Suggested by John Kodis <kodis@comcast.net>.
3967
3968 2009-02-01  Bruno Haible  <bruno@clisp.org>
3969
3970         Don't assume sizeof (long) >= sizeof (void *).
3971         * lib/memcmp.c: Include stdint.h.
3972         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
3973         srcp2 to 'const byte *'.
3974         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
3975         types to uintptr_t.
3976         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
3977         * modules/memcmp (Depends-on): Add stdint.
3978         Reported by Ozkan Sezer <sezeroz@gmail.com>.
3979
3980 2009-01-30  Eric Blake  <ebb9@byu.net>
3981
3982         fix more require-before-expand issues
3983         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
3984         expand, AC_PROG_AWK.
3985         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
3986
3987 2009-01-28  Eric Blake  <ebb9@byu.net>
3988
3989         version-etc: use consistent URL formatting
3990         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
3991         Improve formatting.  Use fputs for string without %.
3992
3993 2009-01-28  Jim Meyering  <meyering@redhat.com>
3994
3995         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
3996         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
3997         "underquoted definition of NAME" from autoconf-2.59.
3998
3999 2009-01-28  Bruno Haible  <bruno@clisp.org>
4000
4001         * doc/gnulib.texi: Add "Obsolete modules" to index.
4002
4003 2009-01-28  Jim Meyering  <meyering@redhat.com>
4004
4005         useless-if-before-free: recognize more variants
4006         * build-aux/useless-if-before-free: Also recognize e.g.,
4007         if (NULL != p) free (p);
4008
4009 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
4010
4011         test-getaddrinfo: skip (don't fail) this test when there's no network
4012         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
4013         on the presumption that it means you lack network access.
4014
4015 2009-01-26  Jim Meyering  <meyering@redhat.com>
4016
4017         fflush: avoid warnings on modern systems
4018         * lib/fflush.c (rpl_fflush): Move declarations of locals,
4019         pos and result, into scopes where they're used.
4020
4021 2009-01-26  Eric Blake  <ebb9@byu.net>
4022
4023         Silence warning reintroduced by recent extensions patch.
4024         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
4025         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
4026         autoconf.
4027
4028         Backport improved autoconf semantics of AC_DEFUN_ONCE.
4029         * m4/00gnulib.m4: New file.
4030         * gnulib-tool (func_get_filelist): Always use it.
4031         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
4032         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
4033
4034 2009-01-25  Bruno Haible  <bruno@clisp.org>
4035
4036         Make test-quotearg work on MacOS X and AIX.
4037         * tests/test-quotearg.sh: New file.
4038         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
4039         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
4040         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
4041         include <libintl.h>.
4042         (fake_locale): Remove variable.
4043         (gettext, dgettext, dcgettext): Remove functions.
4044         (main): Instead of setting a fake locale, set a real locale. Call
4045         textdomain and bindtextdomain.
4046         * modules/quotearg-tests (Files): Add the new files.
4047         (Depends-on): Add gettext, setenv, unsetenv.
4048         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
4049         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
4050         Augment TESTS_ENVIRONMENT.
4051
4052 2009-01-25  Bruno Haible  <bruno@clisp.org>
4053
4054         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
4055         fr_FR.ISO8859-1 locale on MacOS X.
4056         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
4057         ja_JP.eucJP locale on MacOS X.
4058         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
4059         zh_CN.GB18030 locale on MacOS X.
4060
4061 2009-01-25  Bruno Haible  <bruno@clisp.org>
4062
4063         Avoid link errors on MacOS X 10.3.
4064         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
4065         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
4066
4067 2009-01-25  Bruno Haible  <bruno@clisp.org>
4068
4069         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
4070         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
4071         * modules/pipe (Files): Remove m4/posix_spawn.m4.
4072         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
4073         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
4074         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
4075         posix_spawnattr_init, posix_spawnattr_setsigmask,
4076         posix_spawnattr_setflags, posix_spawnattr_destroy.
4077
4078         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
4079         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
4080         * modules/execute (Files): Remove m4/posix_spawn.m4.
4081         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
4082         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
4083         posix_spawnattr_init, posix_spawnattr_setsigmask,
4084         posix_spawnattr_setflags, posix_spawnattr_destroy.
4085
4086 2009-01-25  Bruno Haible  <bruno@clisp.org>
4087
4088         * lib/glthread/threadlib.c: Include <stdlib.h>.
4089
4090 2009-01-25  Bruno Haible  <bruno@clisp.org>
4091
4092         * lib/glthread/threadlib.c (dummy): New declaration.
4093
4094 2009-01-25  Bruno Haible  <bruno@clisp.org>
4095
4096         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
4097         multibyte characters also for the GB18030 encoding. Don't crash when
4098         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
4099
4100 2009-01-25  Bruno Haible  <bruno@clisp.org>
4101
4102         Avoid redefining 'struct random_data' on OSF/1 5.1.
4103         * lib/stdlib.in.h: Include <random.h> if it exists.
4104         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
4105         HAVE_RANDOM_H. Include <random.h> when testing whether
4106         'struct random_data' exists.
4107         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
4108
4109 2009-01-25  Bruno Haible  <bruno@clisp.org>
4110
4111         Don't install charset.alias on MacOS X >= 10.3.
4112         * lib/localcharset.c (DARWIN7): New macro.
4113         (get_charset_aliases): Hardcode the result for Darwin7.
4114         * modules/localcharset (install-exec-local): Don't install
4115         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
4116
4117 2009-01-25  Bruno Haible  <bruno@clisp.org>
4118
4119         Don't install charset.alias on mingw and Cygwin.
4120         * modules/localcharset (install-exec-local): Don't install
4121         charset.alias on mingw and Cygwin, if the file does not yet exist.
4122         The result for these platforms is hardcoded in localcharset.c.
4123
4124 2009-01-25  Bruno Haible  <bruno@clisp.org>
4125
4126         Make it possible again to use AC_GNU_SOURCE together with gnulib.
4127         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
4128         before requiring AC_USE_SYSTEM_EXTENSIONS.
4129
4130 2009-01-25  Jim Meyering  <meyering@redhat.com>
4131
4132         c-strtod: avoid warnings
4133         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
4134         "assignment discards qualifiers from pointer target type" warnings.
4135
4136 2009-01-24  Bruno Haible  <bruno@clisp.org>
4137
4138         Add support for non-UTF-8 locales on MacOS X.
4139         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
4140         canonical encodings. For Darwin 7 and newer, don't map traditional
4141         encodings to UTF-8.
4142         Reported by Vincent Lefevre <vincent@vinc17.org>
4143         at <http://savannah.gnu.org/bugs/?25235>.
4144
4145 2009-01-24  Bruno Haible  <bruno@clisp.org>
4146
4147         * doc/gnulib.texi (Obsolete modules): New section.
4148         Reported by Mike Frysinger <vapier@gentoo.org>.
4149
4150 2009-01-24  Bruno Haible  <bruno@clisp.org>
4151
4152         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
4153         (%.dvi): New rule.
4154
4155 2009-01-24  Bruno Haible  <bruno@clisp.org>
4156
4157         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
4158         Reported by Eric Blake.
4159
4160 2009-01-24  Bruno Haible  <bruno@clisp.org>
4161
4162         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
4163         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
4164         Reported by Gary V. Vaughan <gary@gnu.org>.
4165
4166 2009-01-24  Bruno Haible  <bruno@clisp.org>
4167
4168         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
4169
4170 2009-01-23  Bruno Haible  <bruno@clisp.org>
4171
4172         Make c-strtod, c-strtold usable in libraries.
4173         * lib/c-strtod.c: Include string.h instead of xalloc.h.
4174         (C_STRTOD): Call strdup instead of xstrdup.
4175         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
4176         * modules/c-strtold (Depends-on): Likewise.
4177         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
4178         * NEWS: Mention the change.
4179         Reported by Michael Gold <mgold@ncf.ca>.
4180
4181 2009-01-23  Jim Meyering  <meyering@redhat.com>
4182
4183         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
4184         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
4185         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
4186
4187 2009-01-23  Simon Josefsson  <simon@josefsson.org>
4188
4189         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
4190         GNU CoreUtils.
4191         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
4192         * modules/version-etc (Description): Update.
4193
4194 2009-01-22  Bruno Haible  <bruno@clisp.org>
4195
4196         Cache the C locale object.
4197         * lib/c-strtod.c (c_locale_cache): New variable.
4198         (c_locale): New function.
4199         (C_STRTOD): Use it, and don't call freelocale.
4200         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
4201         Suggested by Paolo Bonzini.
4202
4203 2009-01-21  Bruno Haible  <bruno@clisp.org>
4204
4205         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
4206         conditions other than overflow.
4207
4208 2009-01-21  Bruno Haible  <bruno@clisp.org>
4209
4210         * lib/c-strtod.c: Include errno.h.
4211         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
4212         value from STRTOD_L and STRTOD.
4213
4214 2009-01-21  Bruno Haible  <bruno@clisp.org>
4215         and Jim Meyering  <meyering@redhat.com>
4216
4217         nanosleep: skip configure test (fail it) for apple universal builds
4218         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
4219         universal builds, assume that nanosleep does not work.
4220         * modules/nanosleep (Depends-on): Add multiarch.
4221
4222         mktime: skip configure test (fail it) for apple universal builds
4223         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
4224         universal builds, assume that mktime does not work.
4225         * modules/mktime (Depends-on): Add multiarch.
4226
4227 2009-01-21  Eric Blake  <ebb9@byu.net>
4228
4229         multiarch: avoid expand-before-require warning
4230         * modules/multiarch (configure.ac): Require, rather than expand,
4231         gl_MULTIARCH.
4232         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
4233         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
4234         enforce that all clients require it.  Partial reversion of
4235         2008-12-29 patch.
4236
4237         error: avoid expand-before-require warning
4238         * modules/errno (configure.ac): Require, rather than expand,
4239         gl_HEADER_ERRNO_H.
4240         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
4241         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
4242         enforce that all clients require it.
4243
4244         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
4245         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
4246         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
4247         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
4248
4249 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
4250
4251         Revert:
4252         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
4253
4254         regex: do not depend on obsolete modules.
4255         * modules/regex: Remove memcmp and memmove.
4256
4257 2009-01-20  Bruno Haible  <bruno@clisp.org>
4258
4259         Make the 'link' module link on Windows NT 4.
4260         * lib/link.c (_WIN32_WINNT): Don't define.
4261         (CreateHardLinkFuncType): New type.
4262         (CreateHardLinkFunc, initialized): New variables.
4263         (initialize): New function.
4264         (link): Invoke CreateHardLink indirectly through the function pointer.
4265
4266 2009-01-20  Bruno Haible  <bruno@clisp.org>
4267
4268         Fix compilation failure on mingw.
4269         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
4270
4271 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
4272
4273         * doc/c-strtod.texi: Mention a couple of restrictions.
4274
4275 2009-01-20  Jim Meyering  <meyering@redhat.com>
4276
4277         gettimeofday: move more declarations out of functions
4278         * lib/gettimeofday.c: Move extern declarations of tzset and
4279         gmtime out of containing functions.  Prompted by Bruno Haible.
4280
4281 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
4282
4283         regex: do not depend on obsolete modules.
4284         * modules/regex: Remove memcmp and memmove.
4285
4286 2009-01-19  Bruno Haible  <bruno@clisp.org>
4287
4288         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
4289         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
4290         gl_BIGENDIAN, not AC_C_BIGENDIAN.
4291         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
4292         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
4293
4294 2009-01-19  Bruno Haible  <bruno@clisp.org>
4295
4296         * tests/test-link.c: Include <errno.h>.
4297         (main): Exit with code 77 when a hard link cannot be created due to
4298         the file system.
4299         * tests/test-link.sh: Skip test when a hard link cannot be created due
4300         to the file system.
4301         Suggested by Eric Blake.
4302
4303 2009-01-19  Martin Lambers  <marlam@marlam.de>
4304
4305         * modules/link-tests: New file.
4306         * tests/test-link.sh: New file.
4307         * tests/test-link.c: New file.
4308
4309 2009-01-19  Eric Blake  <ebb9@byu.net>
4310
4311         doc: mention another function added in cygwin 1.7.0
4312         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
4313         Another new function in cygwin 1.7.
4314
4315 2009-01-19  Bruno Haible  <bruno@clisp.org>
4316
4317         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
4318         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
4319         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
4320         gl_BIGENDIAN, not AC_C_BIGENDIAN.
4321         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
4322         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
4323         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
4324         * m4/md4.m4 (gl_MD4): Likewise.
4325         * m4/md5.m4 (gl_MD5): Likewise.
4326         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
4327         * m4/sha1.m4 (gl_SHA1): Likewise.
4328         * m4/sha256.m4 (gl_SHA256): Likewise.
4329         * m4/sha512.m4 (gl_SHA512): Likewise.
4330
4331 2009-01-19  Bruno Haible  <bruno@clisp.org>
4332
4333         * modules/uniname/uniname-tests (Depends-on): Add progname.
4334         * tests/uniname/test-uninames.c: Include progname.h.
4335         (main): Call set_program_name.
4336
4337         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
4338         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
4339         (main): Call set_program_name.
4340
4341         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
4342         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
4343         (main): Call set_program_name.
4344
4345         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
4346         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
4347         (main): Call set_program_name.
4348
4349         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
4350         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
4351         (main): Call set_program_name.
4352
4353         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
4354         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
4355         (main): Call set_program_name.
4356
4357         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
4358         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
4359         (main): Call set_program_name.
4360
4361         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
4362         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
4363         (main): Call set_program_name.
4364
4365         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
4366         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
4367         (main): Call set_program_name.
4368
4369 2009-01-19  Eric Blake  <ebb9@byu.net>
4370
4371         test-unistd: test previous patch
4372         * tests/test-unistd.c: Test *_FILENO macros.
4373
4374         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
4375         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4376         Guarantee a definition.
4377         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
4378         * modules/unistd-safer (Depends-on): Add dependency on unistd.
4379         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
4380         * lib/dup-safer.c (STDERR_FILENO): Likewise.
4381         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4382         Likewise.
4383         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
4384         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
4385         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
4386         Likewise.
4387         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
4388         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
4389         (STDERR_FILENO): Likewise.
4390         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
4391         (STDERR_FILENO): Likewise.
4392         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
4393         (STDERR_FILENO): Likewise.
4394         Reported by Elbert Pol.
4395
4396 2009-01-19  Eric Blake  <ebb9@byu.net>
4397
4398         doc: mention more functions added in cygwin 1.7.0
4399         * doc/posix-functions/abort.texi (abort): Update wording related
4400         to cygwin.
4401         * doc/posix-functions/daylight.texi (daylight): Likewise.
4402         * doc/posix-functions/optarg.texi (optarg): Likewise.
4403         * doc/posix-functions/optarg.texi (opterr): Likewise.
4404         * doc/posix-functions/optarg.texi (optind): Likewise.
4405         * doc/posix-functions/optarg.texi (optopt): Likewise.
4406         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
4407         worked in 1.5.x, and was withdrawn in 1.7.
4408         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
4409         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
4410         cygwin versions.
4411         * doc/posix-functions/perror.texi (perror): Likewise.
4412         * doc/posix-functions/printf.texi (printf): Likewise.
4413         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
4414         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
4415         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
4416         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
4417         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
4418         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
4419         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
4420         Likewise.
4421         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
4422         Likewise.
4423         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
4424         this function.
4425         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
4426         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
4427         Likewise.
4428         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
4429         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
4430         * doc/posix-functions/confstr.texi (confstr): Likewise.
4431         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
4432         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
4433         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
4434         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
4435         * doc/posix-functions/fputws.texi (fputws): Likewise.
4436         * doc/posix-functions/fwide.texi (fwide): Likewise.
4437         * doc/posix-functions/getwc.texi (getwc): Likewise.
4438         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
4439         * doc/posix-functions/putwc.texi (putwc): Likewise.
4440         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
4441         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
4442         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
4443         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
4444         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
4445         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
4446         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
4447         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
4448         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
4449         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
4450         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
4451
4452 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
4453
4454         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
4455         * lib/ioctl.c: Include <sys/ioctl.h>.
4456
4457 2009-01-19  Simon Josefsson  <simon@josefsson.org>
4458
4459         * modules/getdate-tests (Depends-on): Add progname.
4460         * tests/test-getdate.c: Use progname module, to avoid link errors
4461         on non-glibc systems.
4462
4463 2009-01-18  Simon Josefsson  <simon@josefsson.org>
4464
4465         * modules/filenamecat-tests (Depends-on): Add progname.
4466         * modules/fstrcmp-tests (Depends-on): Likewise.
4467
4468         * tests/test-filenamecat.c: Use progname module, to avoid link
4469         errors on non-glibc systems.
4470         * tests/test-fstrcmp.c: Likewise.
4471
4472 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
4473
4474         gettimeofday: avoid warning: nested extern declaration of 'localtime'
4475         * lib/gettimeofday.c: Move extern declaration out of function.
4476
4477 2009-01-18  Bruno Haible  <bruno@clisp.org>
4478
4479         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
4480         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
4481         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
4482
4483 2009-01-18  Bruno Haible  <bruno@clisp.org>
4484
4485         * lib/strftime.c (MEMPCPY): Remove unused macro.
4486         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
4487
4488 2009-01-18  Martin Lambers  <marlam@marlam.de>
4489
4490         New module 'link'.
4491         * lib/unistd.in.h (link): New declaration.
4492         * lib/link.c: New file.
4493         * m4/link.m4: New file.
4494         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
4495         HAVE_LINK.
4496         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
4497         * modules/link: New file.
4498         * doc/posix-functions/link.texi: Mention the new module.
4499
4500 2009-01-18  Bruno Haible  <bruno@clisp.org>
4501
4502         * tests/test-avltree_list.c (main): Call set_program_name.
4503         * tests/test-avltree_oset.c (main): Likewise.
4504         * tests/test-obstack-printf.c: Include progname.h.
4505         (main): Call set_program_name.
4506         * tests/test-quotearg.c: Include progname.h.
4507         (main): Call set_program_name.
4508         * tests/test-xmemdup0.c: Include progname.h.
4509         (main): Call set_program_name.
4510
4511 2009-01-18  Bruno Haible  <bruno@clisp.org>
4512
4513         New module 'alphasort'.
4514         * lib/dirent.in.h (alphasort): New declaration.
4515         * lib/alphasort.c: New file, from glibc with modifications.
4516         * m4/alphasort.m4: New file.
4517         * modules/alphasort: New file.
4518         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
4519         HAVE_ALPHASORT.
4520         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
4521         HAVE_ALPHASORT.
4522         * doc/posix-functions/alphasort.texi: Mention the new module and the
4523         portability problems.
4524
4525 2009-01-18  Bruno Haible  <bruno@clisp.org>
4526
4527         New module 'scandir'.
4528         * lib/dirent.in.h (scandir): New declaration.
4529         * lib/scandir.c: New file, from glibc with modifications.
4530         * m4/scandir.m4: New file.
4531         * modules/scandir: New file.
4532         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
4533         HAVE_SCANDIR.
4534         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
4535         HAVE_SCANDIR.
4536         * doc/posix-functions/scandir.texi: Mention the new module and the
4537         portability problems.
4538
4539 2009-01-17  Bruno Haible  <bruno@clisp.org>
4540
4541         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
4542         Update documentation.
4543         (func_remove_suffix): Escape all dots in the suffix. Update
4544         documentation.
4545         (func_filter_filelist): Update documentation.
4546         Reported by Ralf Wildenhues.
4547
4548 2009-01-17  Bruno Haible  <bruno@clisp.org>
4549
4550         * modules/dprintf-posix-tests: New file.
4551         * tests/test-dprintf-posix.sh: New file.
4552         * tests/test-dprintf-posix.c: New file.
4553
4554         New modules 'dprintf', 'dprintf-posix'.
4555         * lib/stdio.in.h (dprintf): New declaration.
4556         * lib/dprintf.c: New file.
4557         * m4/dprintf.m4: New file.
4558         * m4/dprintf-posix.m4: New file.
4559         * modules/dprintf: New file.
4560         * modules/dprintf-posix: New file.
4561         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
4562         HAVE_DPRINTF, REPLACE_DPRINTF.
4563         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
4564         HAVE_DPRINTF, REPLACE_DPRINTF.
4565         * doc/posix-functions/dprintf.texi: Mention the new modules.
4566
4567 2009-01-17  Bruno Haible  <bruno@clisp.org>
4568
4569         * modules/vdprintf-posix-tests: New file.
4570         * tests/test-vdprintf-posix.sh: New file.
4571         * tests/test-vdprintf-posix.c: New file.
4572
4573         New modules 'vdprintf', 'vdprintf-posix'.
4574         * lib/stdio.in.h (vdprintf): New declaration.
4575         * lib/vdprintf.c: New file.
4576         * m4/vdprintf.m4: New file.
4577         * m4/vdprintf-posix.m4: New file.
4578         * modules/vdprintf: New file.
4579         * modules/vdprintf-posix: New file.
4580         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
4581         HAVE_VDPRINTF, REPLACE_VDPRINTF.
4582         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
4583         HAVE_VDPRINTF, REPLACE_VDPRINTF.
4584         * doc/posix-functions/vdprintf.texi: Mention the new modules.
4585
4586 2009-01-17  Bruno Haible  <bruno@clisp.org>
4587
4588         Fix replacement of fopen on mingw.
4589         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
4590         mingw.
4591
4592 2009-01-17  Bruno Haible  <bruno@clisp.org>
4593
4594         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
4595         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
4596
4597 2009-01-17  Bruno Haible  <bruno@clisp.org>
4598
4599         Avoid test-fflush2.sh failure on mingw.
4600         * tests/test-fflush2.c: Include binary-io.h.
4601         (main): Put standard input into binary mode.
4602         * modules/fflush-tests (Depends-on): Add binary-io.
4603
4604 2009-01-17  Bruno Haible  <bruno@clisp.org>
4605
4606         * lib/wchar.in.h: In another particular situation, include only the
4607         system's <wchar.h> file.
4608         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
4609         Reported by Albert Chin-A-Young <china@thewrittenword.com>
4610         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
4611
4612 2009-01-17  Bruno Haible  <bruno@clisp.org>
4613
4614         Support for stripping executables in --enable-relocatable.
4615         * build-aux/install-reloc: Expect one more argument, or an environment
4616         variable RELOC_STRIP_PROG. If set, strip the destination program and
4617         its wrapper.
4618         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
4619         RELOC_STRIP_PROG.
4620         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
4621         to set RELOCATABLE_STRIP.
4622         * NEWS: Mention the new Makefile requirement.
4623
4624 2009-01-17  Bruno Haible  <bruno@clisp.org>
4625
4626         * build-aux/install-reloc: Remove debugging information left over by
4627         C compiler on MacOS X.
4628
4629 2009-01-17  Bruno Haible  <bruno@clisp.org>
4630
4631         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
4632         * lib/progreloc.c (find_executable): Fix type of pointer passed to
4633         _NSGetExecutablePath.
4634
4635 2009-01-16  Jim Meyering  <meyering@redhat.com>
4636
4637         strerror: avoid warnings about discarding "const"
4638         * lib/strerror.c (rpl_strerror): Instead of returning a const
4639         string from each and every "case", use a variable, and add a single
4640         cast after the switch.
4641
4642 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
4643
4644         * lib/arpa_inet.in.h: Add extern "C" block for C++.
4645
4646 2009-01-16  Bruno Haible  <bruno@clisp.org>
4647
4648         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
4649         array initializer syntax that also works in C++ mode.
4650         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4651
4652 2009-01-16  Jim Meyering  <meyering@redhat.com>
4653
4654         poll: suppress a warning
4655         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
4656         to ignore "...unsigned expression < 0 is always false" warnings.
4657
4658 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
4659
4660         poll: remove declarations of unused variables
4661         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
4662         sockbuf and optlen.
4663
4664 2009-01-15  Bruno Haible  <bruno@clisp.org>
4665
4666         Make fflush-after-ungetc POSIX compliant on BSD systems.
4667         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
4668         (clear_ungetc_buffer): Implement also for other systems.
4669         (rpl_fflush): On glibc systems, invoke
4670         clear_ungetc_buffer_preserving_position. Otherwise, invoke
4671         clear_ungetc_buffer after fetching the stream's position, not before.
4672
4673 2009-01-15  Bruno Haible  <bruno@clisp.org>
4674
4675         Make fflush-after-ungetc POSIX compliant on glibc systems.
4676         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
4677         after ungetc.
4678         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
4679         (rpl_fflush): On glibc systems, simply call the system's fflush
4680         function after clearing the ungetc buffer.
4681         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
4682         Instead, lseek only to the end of file, then use the system's fseeko
4683         for the rest. On glibc systems, reset the EOF indicator bit.
4684
4685 2009-01-15  Jim Meyering  <meyering@redhat.com>
4686
4687         openmp.m4: revert quote-adding change, for portability to older autoconf
4688         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
4689         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
4690         Simon Josefsson noticed the problem when using autoconf-2.61.
4691
4692 2009-01-15  Bruno Haible  <bruno@clisp.org>
4693
4694         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
4695         * tests/test-fflush2.c (ASSERT): Always fail.
4696         (main): Add two tests for fflush() after ungetc(), taking into account
4697         the Austin Group's clarification.
4698         Suggested by Eric Blake.
4699
4700 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
4701
4702         mktime.m4: remove K&R-style function prototypes
4703         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
4704         for the Sun C++ compiler.
4705
4706 2009-01-14  Bruno Haible  <bruno@clisp.org>
4707
4708         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
4709         while including <wchar.h>.
4710         * lib/wchar.in.h: In two particular situations on HP-UX, include only
4711         the system's <wchar.h> file.
4712         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
4713
4714 2009-01-14  Bruno Haible  <bruno@clisp.org>
4715
4716         * m4/csharp.m4: Don't mention gettext on the serial number line.
4717         * m4/csharpexec.m4: Likewise.
4718         * m4/eaccess.m4: Likewise.
4719         * m4/javaexec.m4: Likewise.
4720         * m4/sig_atomic_t.m4: Likewise.
4721         * m4/tmpdir.m4: Likewise.
4722         * m4/intldir.m4: Bump gettext version.
4723         * m4/lib-ld.m4: Likewise.
4724
4725 2009-01-14  Bruno Haible  <bruno@clisp.org>
4726
4727         * lib/progname.c (set_program_name): Add more comments.
4728         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
4729
4730 2009-01-14  Simon Josefsson  <simon@josefsson.org>
4731
4732         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
4733         were sys/stat.h does not define it.
4734
4735 2009-01-14  Jim Meyering  <meyering@redhat.com>
4736
4737         many *.m4 files: improve m4 quoting
4738         99% of this change was performed by running the following commands:
4739         git ls-files | grep '\.m4$' | xargs perl -pi \
4740           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
4741           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
4742           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
4743           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
4744         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
4745         The remainder were to add Copyright dates, increment serial numbers,
4746         undo some changes in comments, exclude m4/intl.m4, and add quotes
4747         around the "1" in ",1" where the unusual spacing prohibited the
4748         above regexps from doing the job.  For more details, see
4749         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
4750         * m4/acl.m4: Modified.
4751         * m4/afs.m4: Likewise.
4752         * m4/alloca.m4: Likewise.
4753         * m4/argp.m4: Likewise.
4754         * m4/argz.m4: Likewise.
4755         * m4/atexit.m4: Likewise.
4756         * m4/bison-i18n.m4: Likewise.
4757         * m4/bison.m4: Likewise.
4758         * m4/byteswap.m4: Likewise.
4759         * m4/c-stack.m4: Likewise.
4760         * m4/c-strtod.m4: Likewise.
4761         * m4/calloc.m4: Likewise.
4762         * m4/canonicalize-lgpl.m4: Likewise.
4763         * m4/chown.m4: Likewise.
4764         * m4/clock_time.m4: Likewise.
4765         * m4/codeset.m4: Likewise.
4766         * m4/copy-file.m4: Likewise.
4767         * m4/csharp.m4: Likewise.
4768         * m4/csharpcomp.m4: Likewise.
4769         * m4/csharpexec.m4: Likewise.
4770         * m4/d-ino.m4: Likewise.
4771         * m4/d-type.m4: Likewise.
4772         * m4/dirfd.m4: Likewise.
4773         * m4/double-slash-root.m4: Likewise.
4774         * m4/eaccess.m4: Likewise.
4775         * m4/eealloc.m4: Likewise.
4776         * m4/environ.m4: Likewise.
4777         * m4/errno_h.m4: Likewise.
4778         * m4/euidaccess.m4: Likewise.
4779         * m4/execute.m4: Likewise.
4780         * m4/fatal-signal.m4: Likewise.
4781         * m4/fchdir.m4: Likewise.
4782         * m4/fcntl_h.m4: Likewise.
4783         * m4/fileblocks.m4: Likewise.
4784         * m4/filenamecat.m4: Likewise.
4785         * m4/findprog.m4: Likewise.
4786         * m4/flexmember.m4: Likewise.
4787         * m4/fnmatch.m4: Likewise.
4788         * m4/fopen.m4: Likewise.
4789         * m4/fpending.m4: Likewise.
4790         * m4/fprintf-posix.m4: Likewise.
4791         * m4/free.m4: Likewise.
4792         * m4/frexp.m4: Likewise.
4793         * m4/frexpl.m4: Likewise.
4794         * m4/fsusage.m4: Likewise.
4795         * m4/ftruncate.m4: Likewise.
4796         * m4/gc-camellia.m4: Likewise.
4797         * m4/gc-random.m4: Likewise.
4798         * m4/gc.m4: Likewise.
4799         * m4/getaddrinfo.m4: Likewise.
4800         * m4/getcwd-abort-bug.m4: Likewise.
4801         * m4/getcwd-path-max.m4: Likewise.
4802         * m4/getdate.m4: Likewise.
4803         * m4/getdomainname.m4: Likewise.
4804         * m4/getgroups.m4: Likewise.
4805         * m4/gethostname.m4: Likewise.
4806         * m4/gethrxtime.m4: Likewise.
4807         * m4/getline.m4: Likewise.
4808         * m4/getloadavg.m4: Likewise.
4809         * m4/getndelim2.m4: Likewise.
4810         * m4/getpass.m4: Likewise.
4811         * m4/gettext.m4: Likewise.
4812         * m4/gettime.m4: Likewise.
4813         * m4/gettimeofday.m4: Likewise.
4814         * m4/gnulib-common.m4: Likewise.
4815         * m4/group-member.m4: Likewise.
4816         * m4/host-os.m4: Likewise.
4817         * m4/iconv.m4: Likewise.
4818         * m4/iconv_open.m4: Likewise.
4819         * m4/inet_ntop.m4: Likewise.
4820         * m4/inet_pton.m4: Likewise.
4821         * m4/inline.m4: Likewise.
4822         * m4/intldir.m4: Likewise.
4823         * m4/intlmacosx.m4: Likewise.
4824         * m4/intmax.m4: Likewise.
4825         * m4/intmax_t.m4: Likewise.
4826         * m4/inttypes.m4: Likewise.
4827         * m4/inttypes_h.m4: Likewise.
4828         * m4/inttypes-pri.m4: Likewise.
4829         * m4/isapipe.m4: Likewise.
4830         * m4/isnand.m4: Likewise.
4831         * m4/isnanf.m4: Likewise.
4832         * m4/isnanl.m4: Likewise.
4833         * m4/javacomp.m4: Likewise.
4834         * m4/javaexec.m4: Likewise.
4835         * m4/jm-winsz1.m4: Likewise.
4836         * m4/jm-winsz2.m4: Likewise.
4837         * m4/lchown.m4: Likewise.
4838         * m4/lcmessage.m4: Likewise.
4839         * m4/ldexpl.m4: Likewise.
4840         * m4/lib-ld.m4: Likewise.
4841         * m4/lib-link.m4: Likewise.
4842         * m4/libsigsegv.m4: Likewise.
4843         * m4/link-follow.m4: Likewise.
4844         * m4/localcharset.m4: Likewise.
4845         * m4/locale-fr.m4: Likewise.
4846         * m4/locale-ja.m4: Likewise.
4847         * m4/locale-tr.m4: Likewise.
4848         * m4/locale-zh.m4: Likewise.
4849         * m4/lock.m4: Likewise.
4850         * m4/longlong.m4: Likewise.
4851         * m4/ls-mntd-fs.m4: Likewise.
4852         * m4/lstat.m4: Likewise.
4853         * m4/malloc.m4: Likewise.
4854         * m4/mathl.m4: Likewise.
4855         * m4/mbrtowc.m4: Likewise.
4856         * m4/mbstate_t.m4: Likewise.
4857         * m4/mbswidth.m4: Likewise.
4858         * m4/memchr.m4: Likewise.
4859         * m4/memcmp.m4: Likewise.
4860         * m4/memcpy.m4: Likewise.
4861         * m4/memmem.m4: Likewise.
4862         * m4/memmove.m4: Likewise.
4863         * m4/mempcpy.m4: Likewise.
4864         * m4/memrchr.m4: Likewise.
4865         * m4/memset.m4: Likewise.
4866         * m4/minmax.m4: Likewise.
4867         * m4/mkdir-slash.m4: Likewise.
4868         * m4/mkdtemp.m4: Likewise.
4869         * m4/mktime.m4: Likewise.
4870         * m4/mmap-anon.m4: Likewise.
4871         * m4/mountlist.m4: Likewise.
4872         * m4/nanosleep.m4: Likewise.
4873         * m4/nls.m4: Likewise.
4874         * m4/nocrash.m4: Likewise.
4875         * m4/open.m4: Likewise.
4876         * m4/openat.m4: Likewise.
4877         * m4/openmp.m4: Likewise.
4878         * m4/pathmax.m4: Likewise.
4879         * m4/perl.m4: Likewise.
4880         * m4/physmem.m4: Likewise.
4881         * m4/pipe.m4: Likewise.
4882         * m4/po.m4: Likewise.
4883         * m4/poll.m4: Likewise.
4884         * m4/posixtm.m4: Likewise.
4885         * m4/posixver.m4: Likewise.
4886         * m4/printf-frexp.m4: Likewise.
4887         * m4/printf-frexpl.m4: Likewise.
4888         * m4/printf-posix.m4: Likewise.
4889         * m4/printf-posix-rpl.m4: Likewise.
4890         * m4/printf.m4: Likewise.
4891         * m4/progtest.m4: Likewise.
4892         * m4/putenv.m4: Likewise.
4893         * m4/readline.m4: Likewise.
4894         * m4/readlink.m4: Likewise.
4895         * m4/readutmp.m4: Likewise.
4896         * m4/realloc.m4: Likewise.
4897         * m4/regex.m4: Likewise.
4898         * m4/relocatable.m4: Likewise.
4899         * m4/relocatable-lib.m4: Likewise.
4900         * m4/rename-dest-slash.m4: Likewise.
4901         * m4/rename.m4: Likewise.
4902         * m4/rmdir-errno.m4: Likewise.
4903         * m4/rmdir.m4: Likewise.
4904         * m4/roundf.m4: Likewise.
4905         * m4/roundl.m4: Likewise.
4906         * m4/rpmatch.m4: Likewise.
4907         * m4/save-cwd.m4: Likewise.
4908         * m4/selinux-selinux-h.m4: Likewise.
4909         * m4/setenv.m4: Likewise.
4910         * m4/settime.m4: Likewise.
4911         * m4/sig2str.m4: Likewise.
4912         * m4/sig_atomic_t.m4: Likewise.
4913         * m4/signalblocking.m4: Likewise.
4914         * m4/signbit.m4: Likewise.
4915         * m4/sigpipe.m4: Likewise.
4916         * m4/sockets.m4: Likewise.
4917         * m4/sockpfaf.m4: Likewise.
4918         * m4/st_dm_mode.m4: Likewise.
4919         * m4/stat-time.m4: Likewise.
4920         * m4/stdbool.m4: Likewise.
4921         * m4/stdint.m4: Likewise.
4922         * m4/stdint_h.m4: Likewise.
4923         * m4/stpcpy.m4: Likewise.
4924         * m4/stpncpy.m4: Likewise.
4925         * m4/strcase.m4: Likewise.
4926         * m4/strchrnul.m4: Likewise.
4927         * m4/strcspn.m4: Likewise.
4928         * m4/strdup.m4: Likewise.
4929         * m4/strftime.m4: Likewise.
4930         * m4/strndup.m4: Likewise.
4931         * m4/strnlen.m4: Likewise.
4932         * m4/strpbrk.m4: Likewise.
4933         * m4/strptime.m4: Likewise.
4934         * m4/strsep.m4: Likewise.
4935         * m4/strtod.m4: Likewise.
4936         * m4/strtoimax.m4: Likewise.
4937         * m4/strtok_r.m4: Likewise.
4938         * m4/strtol.m4: Likewise.
4939         * m4/strtoll.m4: Likewise.
4940         * m4/strtoul.m4: Likewise.
4941         * m4/strtoull.m4: Likewise.
4942         * m4/strtoumax.m4: Likewise.
4943         * m4/strverscmp.m4: Likewise.
4944         * m4/threadlib.m4: Likewise.
4945         * m4/timegm.m4: Likewise.
4946         * m4/tm_gmtoff.m4: Likewise.
4947         * m4/tmpdir.m4: Likewise.
4948         * m4/tmpfile.m4: Likewise.
4949         * m4/tzset.m4: Likewise.
4950         * m4/uintmax_t.m4: Likewise.
4951         * m4/unlinkdir.m4: Likewise.
4952         * m4/unlocked-io.m4: Likewise.
4953         * m4/uptime.m4: Likewise.
4954         * m4/userspec.m4: Likewise.
4955         * m4/utimbuf.m4: Likewise.
4956         * m4/utime.m4: Likewise.
4957         * m4/utimes-null.m4: Likewise.
4958         * m4/utimes.m4: Likewise.
4959         * m4/vararrays.m4: Likewise.
4960         * m4/vasnprintf.m4: Likewise.
4961         * m4/vfprintf-posix.m4: Likewise.
4962         * m4/vprintf-posix.m4: Likewise.
4963         * m4/wait-process.m4: Likewise.
4964         * m4/wchar_t.m4: Likewise.
4965         * m4/wint_t.m4: Likewise.
4966         * m4/write-any-file.m4: Likewise.
4967         * m4/yield.m4: Likewise.
4968
4969 2009-01-13  Bruno Haible  <bruno@clisp.org>
4970
4971         Avoid test-copy-file.sh failures when ACL support insufficient.
4972         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
4973         TESTS_ENVIRONMENT.
4974         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
4975         Reported by Jim Meyering.
4976
4977 2009-01-13  Bruno Haible  <bruno@clisp.org>
4978
4979         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
4980         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
4981         * modules/unistdio/u8-printf-parse (Files): Likewise.
4982         * modules/unistdio/u32-printf-parse (Files): Likewise.
4983         * modules/unistdio/ulc-printf-parse (Files): Likewise.
4984
4985 2009-01-13  Simon Josefsson  <simon@josefsson.org>
4986
4987         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
4988         and m4/inttypes_h.m4 too.
4989
4990 2009-01-12  Eric Blake  <ebb9@byu.net>
4991
4992         tests: IRIX 6.2 cc can't compile -0.0 into .data
4993         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
4994         rather than at compile-time.
4995         * tests/test-floorl.c (minus_zero): Likewise.
4996         * tests/test-frexpl.c (minus_zero): Likewise.
4997         * tests/test-isnan.c (minus_zerol): Likewise.
4998         * tests/test-isnanl.h (minus_zero): Likewise.
4999         * tests/test-ldexpl.c (minus_zero): Likewise.
5000         * tests/test-roundl.c (minus_zero): Likewise.
5001         * tests/test-signbit.c (minus_zerol): Likewise.
5002         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
5003         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
5004         * tests/test-truncl.c (minus_zero): Likewise.
5005         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
5006         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
5007         Reported by Tom G. Christensen and Nelson H. F. Beebe.
5008
5009 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5010
5011         regex: fix glibc bug 9697
5012         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
5013         handling.
5014
5015 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5016
5017         regex: fix glibc bug 697
5018         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
5019         being NULL also if there are no backreferences.
5020
5021 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
5022
5023         regex: merge glibc changes
5024         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
5025         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
5026         re_string_skip_chars, re_string_reconstruct): Likewise.
5027         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
5028
5029 2009-01-07  Jim Meyering  <meyering@redhat.com>
5030
5031         poll: filter through cppi
5032         * lib/poll.c: Indent cpp directives to reflect nesting.
5033
5034 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
5035
5036         poll: don't return uninitialized
5037         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
5038
5039 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
5040
5041         avoid compile failure on AIX 6.1
5042         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
5043         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
5044
5045 2009-01-04  Jim Meyering  <meyering@redhat.com>
5046
5047         remove duplicate inclusion of <stdio.h>
5048         * tests/test-fprintf-posix.c: Likewise.
5049         * tests/test-printf-posix.c: Likewise.
5050         * tests/test-snprintf-posix.c: Likewise.
5051         * tests/test-sprintf-posix.c: Likewise.
5052         * tests/test-vasprintf-posix.c: Likewise.
5053         * tests/test-vfprintf-posix.c: Likewise.
5054         * tests/test-vprintf-posix.c: Likewise.
5055         * tests/test-vsnprintf-posix.c: Likewise.
5056         * tests/test-vsprintf-posix.c: Likewise.
5057
5058 2009-01-03  Jim Meyering  <meyering@redhat.com>
5059
5060         gnulib-tool: fix sed-based filtering
5061         * gnulib-tool (func_filter_filelist): Remove extra backslash
5062         in sed_fff_filter definition.
5063
5064 2009-01-02  Jim Meyering  <meyering@redhat.com>
5065
5066         strftime: avoid compilation failure on Solaris 2.6
5067         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
5068         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
5069         Don't #define mbrlen or mbsinit, since now they're guaranteed to
5070         be available.  Reported by Tom G. Christensen.  Details in
5071         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
5072
5073 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5074             Bruno Haible  <bruno@clisp.org>
5075
5076         Speed up gnulib-tool by doing more string processing through shell
5077         built-ins.
5078         * gnulib-tool (fast_func_append): New variable.
5079         (func_remove_prefix, func_remove_suffix): New functions.
5080         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
5081         (func_filter_filelist): New function.
5082         (func_get_dependencies): Use func_remove_suffix instead of sed.
5083         (func_get_automake_snippet): Use func_filter_filelist instead of a
5084         subshell and sed invocation.
5085
5086 2009-01-01  Bruno Haible  <bruno@clisp.org>
5087
5088         Fix a security bug.
5089         * gnulib-tool (func_import, import, update): Don't allow the characters
5090         '"', '$', '`', '\' in macro arguments that become part of commands that
5091         are evaluated.
5092
5093 2009-01-01  Bruno Haible  <bruno@clisp.org>
5094
5095         * gnulib-tool (func_reset_sigpipe): Add more comments.
5096
5097 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5098
5099         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
5100         func_emit_tests_Makefile_am, func_import): Abort loops early if we
5101         already know the answer.
5102
5103 2009-01-01  Jim Meyering  <meyering@redhat.com>
5104
5105         * lib/version-etc.c (version_etc_va): Update copyright year.
5106
5107 2008-12-30  Bruno Haible  <bruno@clisp.org>
5108
5109         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
5110         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
5111         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
5112
5113 2008-12-29  Eric Blake  <ebb9@byu.net>
5114
5115         multiarch: avoid autoconf AC_REQUIRE bug
5116         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
5117         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
5118         2.63 and older.
5119         Reported by Bruno Haible, and analyzed in
5120         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
5121
5122 2008-12-29  Bruno Haible  <bruno@clisp.org>
5123
5124         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
5125         files in subdirectories correctly.
5126         Reported by Ralf Wildenhues.
5127
5128 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5129
5130         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
5131         rather than 'join FILE -', for Solaris join.
5132
5133 2008-12-29  Bruno Haible  <bruno@clisp.org>
5134
5135         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
5136         quoting.
5137         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
5138         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
5139         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
5140         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
5141         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
5142         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
5143         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
5144         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
5145         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5146         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
5147         * m4/nls.m4 (AM_NLS): Likewise.
5148         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
5149         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
5150         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
5151         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
5152         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
5153         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
5154         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
5155         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
5156         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
5157         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
5158         * m4/xsize.m4 (gl_XSIZE): Likewise.
5159         Suggested by Jim Meyering.
5160
5161 2008-11-17  Bruce Korb  <bkorb@gnu.org>
5162
5163         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
5164         * lib/parse-duration.c: use a switch instead of cascading if's.
5165
5166 2008-12-29  Eric Blake  <ebb9@byu.net>
5167
5168         wchar.h: supply WEOF on Irix 5.3
5169         * lib/wchar.in.h (wint_t): Also supply WEOF.
5170         * lib/wctype.in.h (wint_t): Likewise.
5171         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
5172         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
5173         Reported by Tom G. Christensen.
5174
5175 2008-12-26  Bruno Haible  <bruno@clisp.org>
5176
5177         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
5178         i486, i586, i686.
5179
5180 2008-12-26  Bruno Haible  <bruno@clisp.org>
5181
5182         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
5183
5184 2008-12-26  Bruno Haible  <bruno@clisp.org>
5185
5186         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
5187         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
5188         not __STDC_CONSTANT_MACROS.
5189         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
5190
5191 2008-12-25  Bruno Haible  <bruno@clisp.org>
5192
5193         Add support for universal builds to vasnprintf.
5194         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
5195         universal builds, guess no.
5196         * modules/vasnprintf-posix (Depends-on): Add multiarch.
5197         * modules/vasprintf-posix (Depends-on): Likewise.
5198         * modules/fprintf-posix (Depends-on): Likewise.
5199         * modules/vfprintf-posix (Depends-on): Likewise.
5200         * modules/snprintf-posix (Depends-on): Likewise.
5201         * modules/vsnprintf-posix (Depends-on): Likewise.
5202         * modules/sprintf-posix (Depends-on): Likewise.
5203         * modules/vsprintf-posix (Depends-on): Likewise.
5204         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
5205         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
5206         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
5207         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
5208         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
5209         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
5210         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
5211
5212         Add support for universal builds to <inttypes.h>.
5213         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
5214         _SCNu64_PREFIX): In Apple
5215         universal builds, define directly, using _LP64.
5216         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
5217         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
5218         * modules/inttypes (Depends-on): Add multiarch.
5219         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
5220
5221         Add support for universal builds to <stdint.h>.
5222         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
5223         universal builds, define directly, using _LP64.
5224         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
5225         Apple universal builds, don't test for the size and suffix of ptrdiff_t
5226         and size_t.
5227         * modules/stdint (Depends-on): Add multiarch.
5228         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
5229
5230         New module 'multiarch'.
5231         * modules/multiarch: New file.
5232         * m4/multiarch.m4: New file.
5233
5234 2008-12-25  Bruno Haible  <bruno@clisp.org>
5235
5236         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
5237
5238 2008-12-25  Bruno Haible  <bruno@clisp.org>
5239
5240         * modules/btowc (License): Relicense under LGPLv2+.
5241         * modules/mbsinit (License): Likewise.
5242         * modules/mbrtowc (License): Likewise.
5243         * modules/wcrtomb (License): Likewise.
5244         * modules/streq (License): Likewise.
5245         Reported by David Lutterkort <lutter@redhat.com>.
5246
5247 2008-12-23  Bruno Haible  <bruno@clisp.org>
5248
5249         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
5250
5251 2008-12-23  Bruno Haible  <bruno@clisp.org>
5252
5253         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
5254         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
5255         GETADDRINFO_LIB, not in LIBS.
5256         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
5257         * modules/canon-host (Link): Likewise.
5258         * NEWS: Mention the change.
5259         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
5260         GETADDRINFO_LIB.
5261
5262 2008-12-22  Bruno Haible  <bruno@clisp.org>
5263
5264         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
5265         * doc/posix-functions/iswalpha_l.texi: Likewise.
5266         * doc/posix-functions/iswblank_l.texi: Likewise.
5267         * doc/posix-functions/iswcntrl_l.texi: Likewise.
5268         * doc/posix-functions/iswctype_l.texi: Likewise.
5269         * doc/posix-functions/iswdigit_l.texi: Likewise.
5270         * doc/posix-functions/iswgraph_l.texi: Likewise.
5271         * doc/posix-functions/iswlower_l.texi: Likewise.
5272         * doc/posix-functions/iswprint_l.texi: Likewise.
5273         * doc/posix-functions/iswpunct_l.texi: Likewise.
5274         * doc/posix-functions/iswspace_l.texi: Likewise.
5275         * doc/posix-functions/iswupper_l.texi: Likewise.
5276         * doc/posix-functions/iswxdigit_l.texi: Likewise.
5277         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
5278         * doc/posix-functions/open_wmemstream.texi: Likewise.
5279         * doc/posix-functions/swscanf.texi: Likewise.
5280         * doc/posix-functions/towctrans_l.texi: Likewise.
5281         * doc/posix-functions/towlower.texi: Likewise.
5282         * doc/posix-functions/towlower_l.texi: Likewise.
5283         * doc/posix-functions/towupper.texi: Likewise.
5284         * doc/posix-functions/towupper_l.texi: Likewise.
5285         * doc/posix-functions/vfwprintf.texi: Likewise.
5286         * doc/posix-functions/vfwscanf.texi: Likewise.
5287         * doc/posix-functions/vswscanf.texi: Likewise.
5288         * doc/posix-functions/vwprintf.texi: Likewise.
5289         * doc/posix-functions/vwscanf.texi: Likewise.
5290         * doc/posix-functions/wcpcpy.texi: Likewise.
5291         * doc/posix-functions/wcpncpy.texi: Likewise.
5292         * doc/posix-functions/wcscasecmp.texi: Likewise.
5293         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
5294         * doc/posix-functions/wcscoll_l.texi: Likewise.
5295         * doc/posix-functions/wcsdup.texi: Likewise.
5296         * doc/posix-functions/wcsncasecmp.texi: Likewise.
5297         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
5298         * doc/posix-functions/wcsnlen.texi: Likewise.
5299         * doc/posix-functions/wcsnrtombs.texi: Likewise.
5300         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
5301         * doc/posix-functions/wctrans_l.texi: Likewise.
5302         * doc/posix-functions/wctype_l.texi: Likewise.
5303         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
5304         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
5305         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
5306         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
5307         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
5308         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
5309         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
5310         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
5311         * doc/glibc-functions/wcschrnul.texi: Likewise.
5312         * doc/glibc-functions/wcsftime_l.texi: Likewise.
5313         * doc/glibc-functions/wcstod_l.texi: Likewise.
5314         * doc/glibc-functions/wcstof_l.texi: Likewise.
5315         * doc/glibc-functions/wcstol_l.texi: Likewise.
5316         * doc/glibc-functions/wcstold_l.texi: Likewise.
5317         * doc/glibc-functions/wcstoll_l.texi: Likewise.
5318         * doc/glibc-functions/wcstoq.texi: Likewise.
5319         * doc/glibc-functions/wcstoul_l.texi: Likewise.
5320         * doc/glibc-functions/wcstoull_l.texi: Likewise.
5321         * doc/glibc-functions/wcstouq.texi: Likewise.
5322         * doc/glibc-functions/wmempcpy.texi: Likewise.
5323
5324 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
5325             Eric Blake  <ebb9@byu.net>
5326             Paolo Bonzini  <bonzini@gnu.org>
5327             Bruno Haible  <bruno@clisp.org>
5328
5329         Make c-stack work on Haiku.
5330         * lib/c-stack.c (SA_ONSTACK): Define fallback.
5331         (c_stack_action): Use SA_ONSTACK flag.
5332
5333 2008-12-22  Bruno Haible  <bruno@clisp.org>
5334
5335         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
5336
5337 2008-12-22  Bruno Haible  <bruno@clisp.org>
5338
5339         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
5340         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
5341         being overridden.
5342         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
5343         New macros.
5344         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
5345         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
5346         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
5347         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
5348
5349 2008-12-22  Bruno Haible  <bruno@clisp.org>
5350
5351         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
5352         from test code.
5353
5354 2008-12-22  Eric Blake  <ebb9@byu.net>
5355
5356         Avoid gcc warnings on cygwin.
5357         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
5358         Avoid unused variable.
5359         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
5360         Likewise.
5361
5362 2008-12-22  Bruno Haible  <bruno@clisp.org>
5363
5364         Remove HAVE_MBRTOWC conditionals.
5365         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
5366         (mbscasecmp): Assume mbrtowc function.
5367         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
5368         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
5369         * lib/mbschr.c: Include mbuiter.h unconditionally.
5370         (mbschr): Assume mbrtowc function.
5371         * lib/mbscspn.c: Include mbuiter.h unconditionally.
5372         (mbscspn): Assume mbrtowc function.
5373         * lib/mbslen.c: Include mbuiter.h unconditionally.
5374         (mbslen): Assume mbrtowc function.
5375         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
5376         (mbsncasecmp): Assume mbrtowc function.
5377         * lib/mbsnlen.c: Include mbiter.h unconditionally.
5378         (mbsnlen): Assume mbrtowc function.
5379         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
5380         (mbspbrk): Assume mbrtowc function.
5381         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
5382         (mbspcasecmp): Assume mbrtowc function.
5383         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
5384         (mbsrchr): Assume mbrtowc function.
5385         * lib/mbssep.c: Include mbuiter.h unconditionally.
5386         (mbssep): Assume mbrtowc function.
5387         * lib/mbsspn.c: Include mbuiter.h unconditionally.
5388         (mbsspn): Assume mbrtowc function.
5389         * lib/mbsstr.c: Include mbuiter.h unconditionally.
5390         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
5391         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
5392         (mbstok_r): Assume mbrtowc function.
5393         * lib/propername.c: Include mbuiter.h unconditionally.
5394         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
5395         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
5396         (trim2): Assume mbrtowc function.
5397         * lib/mbswidth.c (mbsinit): Remove fallback definition.
5398         (mbsnwidth): Assume mbrtowc function.
5399         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
5400         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
5401         fallback definitions.
5402         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
5403
5404 2008-12-22  Bruno Haible  <bruno@clisp.org>
5405
5406         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
5407
5408 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
5409
5410         * modules/regex: Request emulations for the mb*/wc* functions we need.
5411         * m4/regex.m4: Don't look for those functions here.
5412         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
5413
5414 2008-12-22  Bruno Haible  <bruno@clisp.org>
5415
5416         * modules/fnmatch (Depends-on): Remove duplicated dependency.
5417
5418 2008-12-21  Bruno Haible  <bruno@clisp.org>
5419
5420         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
5421         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
5422         (Include): Remove conditionalization.
5423         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
5424         (Include): Remove conditionalization.
5425         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
5426         (Include): Remove conditionalization.
5427         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
5428         * m4/mbfile.m4 (gl_MBFILE): Likewise.
5429         * NEWS: Mention the change.
5430         Reported by Alan Hourihane <alanh@fairlite.co.uk>
5431         via Sergey Poznyakoff <gray@gnu.org.ua>.
5432
5433 2008-12-21  Bruno Haible  <bruno@clisp.org>
5434
5435         * MODULES.html.sh (Extended multibyte and wide character utilities
5436         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
5437         wcrtomb, wcsrtombs.
5438         (Support for systems lacking POSIX:2008): Add accept, bind, close,
5439         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
5440         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
5441         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
5442
5443 2008-12-21  Bruno Haible  <bruno@clisp.org>
5444
5445         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
5446
5447 2008-12-21  Bruno Haible  <bruno@clisp.org>
5448
5449         * modules/wcsnrtombs-tests: New file.
5450         * tests/test-wcsnrtombs1.sh: New file.
5451         * tests/test-wcsnrtombs2.sh: New file.
5452         * tests/test-wcsnrtombs3.sh: New file.
5453         * tests/test-wcsnrtombs4.sh: New file.
5454         * tests/test-wcsnrtombs.c: New file.
5455
5456         New module 'wcsnrtombs'.
5457         * lib/wchar.in.h (wcsnrtombs): New declaration.
5458         * lib/wcsnrtombs.c: New file.
5459         * lib/wcsrtombs-state.c: New file.
5460         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
5461         (internal_state): Remove variable.
5462         * m4/wcsnrtombs.m4: New file.
5463         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
5464         compilation units.
5465         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
5466         HAVE_WCSNRTOMBS.
5467         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
5468         HAVE_WCSNRTOMBS.
5469         * modules/wcsnrtombs: New file.
5470         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
5471         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
5472
5473 2008-12-21  Bruno Haible  <bruno@clisp.org>
5474
5475         * modules/wcsrtombs-tests: New file.
5476         * tests/test-wcsrtombs1.sh: New file.
5477         * tests/test-wcsrtombs2.sh: New file.
5478         * tests/test-wcsrtombs3.sh: New file.
5479         * tests/test-wcsrtombs4.sh: New file.
5480         * tests/test-wcsrtombs.c: New file.
5481
5482         New module 'wcsrtombs'.
5483         * lib/wchar.in.h (wcsrtombs): New declaration.
5484         * lib/wcsrtombs.c: New file.
5485         * m4/wcsrtombs.m4: New file.
5486         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
5487         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
5488         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
5489         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
5490         * modules/wcsrtombs: New file.
5491         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
5492         bugs.
5493
5494 2008-12-21  Bruno Haible  <bruno@clisp.org>
5495
5496         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
5497         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
5498         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
5499         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
5500         if not correct.
5501         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
5502         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
5503         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5504         m4/locale-zh.m4, m4/codeset.m4.
5505         * doc/posix-functions/wcrtomb.texi: Document the bug.
5506
5507 2008-12-21  Bruno Haible  <bruno@clisp.org>
5508
5509         Work around a btowc() bug on IRIX 6.5.
5510         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
5511         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
5512         REPLACE_WTOBC if not.
5513         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
5514         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
5515         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
5516
5517 2008-12-21  Bruno Haible  <bruno@clisp.org>
5518
5519         * modules/wcrtomb-tests: New file.
5520         * tests/test-wcrtomb.sh: New file.
5521         * tests/test-wcrtomb.c: New file.
5522
5523         New module 'wcrtomb'.
5524         * lib/wchar.in.h (wcrtomb): New declaration.
5525         * lib/wcrtomb.c: New file.
5526         * m4/wcrtomb.m4: New file.
5527         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
5528         HAVE_WCRTOMB.
5529         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
5530         HAVE_WCRTOMB.
5531         * modules/wcrtomb: New file.
5532         * doc/posix-functions/wcrtomb.texi: Mention the new module.
5533
5534 2008-12-21  Bruno Haible  <bruno@clisp.org>
5535
5536         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
5537         * modules/mbsrtowcs (Files): Likewise.
5538         * modules/wctob (Files): Likewise.
5539         * modules/c-strcase-tests (Files): Likewise.
5540         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
5541         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
5542         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
5543         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
5544         * modules/vasnprintf-posix-tests (Files): Likewise.
5545
5546 2008-12-21  William Pursell  <bill.pursell@gmail.com>
5547
5548         gitlog-to-changelog: pass all command-line arguments to git-log
5549         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
5550         it is sometimes convenient to filter the commits in various ways.
5551         gitlog-to-changelog only allows --since to specify a start date,
5552         but git-log itself supports many other filtering mechanisms.
5553         At the moment, I want to filter by branch name.  Rather than
5554         adding a --branch option to gitlog-to-changelog, it seems more
5555         flexible to simply pass all options directly to git-log and let
5556         git do the work.  Notice that this effectively makes --since a
5557         redundant option for gitlog-to-changelog, but removing it would
5558         require current usage to change since calls would then require
5559         an additional '--'.
5560
5561 2008-12-21  Bruno Haible  <bruno@clisp.org>
5562
5563         * modules/mbsnrtowcs-tests: New file.
5564         * tests/test-mbsnrtowcs1.sh: New file.
5565         * tests/test-mbsnrtowcs2.sh: New file.
5566         * tests/test-mbsnrtowcs3.sh: New file.
5567         * tests/test-mbsnrtowcs4.sh: New file.
5568         * tests/test-mbsnrtowcs.c: New file.
5569
5570         New module 'mbsnrtowcs'.
5571         * lib/wchar.in.h (mbsnrtowcs): New declaration.
5572         * lib/mbsnrtowcs.c: New file.
5573         * lib/mbsrtowcs-state.c: New file.
5574         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
5575         (internal_state): Remove variable.
5576         * m4/mbsnrtowcs.m4: New file.
5577         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
5578         compilation units.
5579         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
5580         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
5581         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
5582         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
5583         * modules/mbsnrtowcs: New file.
5584         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
5585         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
5586         portability problem.
5587
5588 2008-12-21  Bruno Haible  <bruno@clisp.org>
5589
5590         Work around mbsrtowcs bug.
5591         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
5592         (gl_FUNC_MBSRTOWCS): Invoke it.
5593         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5594         m4/locale-zh.m4.
5595         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
5596
5597 2008-12-21  Bruno Haible  <bruno@clisp.org>
5598
5599         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
5600
5601 2008-12-21  Bruno Haible  <bruno@clisp.org>
5602
5603         Update doc for AIX.
5604         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
5605         16-bit wchar_t type.
5606         * doc/posix-functions/btowc.texi: Likewise.
5607         * doc/posix-functions/fgetwc.texi: Likewise.
5608         * doc/posix-functions/fgetws.texi: Likewise.
5609         * doc/posix-functions/fputwc.texi: Likewise.
5610         * doc/posix-functions/fputws.texi: Likewise.
5611         * doc/posix-functions/fwide.texi: Likewise.
5612         * doc/posix-functions/fwprintf.texi: Likewise.
5613         * doc/posix-functions/fwscanf.texi: Likewise.
5614         * doc/posix-functions/getwchar.texi: Likewise.
5615         * doc/posix-functions/getwc.texi: Likewise.
5616         * doc/posix-functions/iswalnum.texi: Likewise.
5617         * doc/posix-functions/iswalpha.texi: Likewise.
5618         * doc/posix-functions/iswblank.texi: Likewise.
5619         * doc/posix-functions/iswcntrl.texi: Likewise.
5620         * doc/posix-functions/iswctype.texi: Likewise.
5621         * doc/posix-functions/iswdigit.texi: Likewise.
5622         * doc/posix-functions/iswgraph.texi: Likewise.
5623         * doc/posix-functions/iswlower.texi: Likewise.
5624         * doc/posix-functions/iswprint.texi: Likewise.
5625         * doc/posix-functions/iswpunct.texi: Likewise.
5626         * doc/posix-functions/iswspace.texi: Likewise.
5627         * doc/posix-functions/iswupper.texi: Likewise.
5628         * doc/posix-functions/iswxdigit.texi: Likewise.
5629         * doc/posix-functions/mbrtowc.texi: Likewise.
5630         * doc/posix-functions/mbsrtowcs.texi: Likewise.
5631         * doc/posix-functions/mbstowcs.texi: Likewise.
5632         * doc/posix-functions/mbtowc.texi: Likewise.
5633         * doc/posix-functions/putwchar.texi: Likewise.
5634         * doc/posix-functions/putwc.texi: Likewise.
5635         * doc/posix-functions/swprintf.texi: Likewise.
5636         * doc/posix-functions/tolower.texi: Likewise.
5637         * doc/posix-functions/toupper.texi: Likewise.
5638         * doc/posix-functions/towctrans.texi: Likewise.
5639         * doc/posix-functions/ungetwc.texi: Likewise.
5640         * doc/posix-functions/vswprintf.texi: Likewise.
5641         * doc/posix-functions/wcrtomb.texi: Likewise.
5642         * doc/posix-functions/wcscat.texi: Likewise.
5643         * doc/posix-functions/wcschr.texi: Likewise.
5644         * doc/posix-functions/wcscmp.texi: Likewise.
5645         * doc/posix-functions/wcscoll.texi: Likewise.
5646         * doc/posix-functions/wcscpy.texi: Likewise.
5647         * doc/posix-functions/wcscspn.texi: Likewise.
5648         * doc/posix-functions/wcsftime.texi: Likewise.
5649         * doc/posix-functions/wcslen.texi: Likewise.
5650         * doc/posix-functions/wcsncat.texi: Likewise.
5651         * doc/posix-functions/wcsncmp.texi: Likewise.
5652         * doc/posix-functions/wcsncpy.texi: Likewise.
5653         * doc/posix-functions/wcspbrk.texi: Likewise.
5654         * doc/posix-functions/wcsrchr.texi: Likewise.
5655         * doc/posix-functions/wcsrtombs.texi: Likewise.
5656         * doc/posix-functions/wcsspn.texi: Likewise.
5657         * doc/posix-functions/wcsstr.texi: Likewise.
5658         * doc/posix-functions/wcstod.texi: Likewise.
5659         * doc/posix-functions/wcstof.texi: Likewise.
5660         * doc/posix-functions/wcstoimax.texi: Likewise.
5661         * doc/posix-functions/wcstok.texi: Likewise.
5662         * doc/posix-functions/wcstold.texi: Likewise.
5663         * doc/posix-functions/wcstoll.texi: Likewise.
5664         * doc/posix-functions/wcstol.texi: Likewise.
5665         * doc/posix-functions/wcstombs.texi: Likewise.
5666         * doc/posix-functions/wcstoull.texi: Likewise.
5667         * doc/posix-functions/wcstoul.texi: Likewise.
5668         * doc/posix-functions/wcstoumax.texi: Likewise.
5669         * doc/posix-functions/wcswidth.texi: Likewise.
5670         * doc/posix-functions/wcsxfrm.texi: Likewise.
5671         * doc/posix-functions/wctob.texi: Likewise.
5672         * doc/posix-functions/wctomb.texi: Likewise.
5673         * doc/posix-functions/wctrans.texi: Likewise.
5674         * doc/posix-functions/wctype.texi: Likewise.
5675         * doc/posix-functions/wcwidth.texi: Likewise.
5676         * doc/posix-functions/wmemchr.texi: Likewise.
5677         * doc/posix-functions/wmemcmp.texi: Likewise.
5678         * doc/posix-functions/wmemcpy.texi: Likewise.
5679         * doc/posix-functions/wmemmove.texi: Likewise.
5680         * doc/posix-functions/wmemset.texi: Likewise.
5681         * doc/posix-functions/wprintf.texi: Likewise.
5682         * doc/posix-functions/wscanf.texi: Likewise.
5683
5684 2008-12-21  Bruno Haible  <bruno@clisp.org>
5685
5686         Update doc for HP-UX 11.11.
5687         * doc/posix-functions/btowc.texi: Clarify that the function is missing
5688         in HP-UX version 11.00, not in all versions of HP-UX 11.
5689         * doc/posix-functions/fwide.texi: Likewise.
5690         * doc/posix-functions/fwprintf.texi: Likewise.
5691         * doc/posix-functions/fwscanf.texi: Likewise.
5692         * doc/posix-functions/inet_ntop.texi: Likewise.
5693         * doc/posix-functions/inet_pton.texi: Likewise.
5694         * doc/posix-functions/mbrlen.texi: Likewise.
5695         * doc/posix-functions/mbrtowc.texi: Likewise.
5696         * doc/posix-functions/mbsinit.texi: Likewise.
5697         * doc/posix-functions/mbsrtowcs.texi: Likewise.
5698         * doc/posix-functions/swprintf.texi: Likewise.
5699         * doc/posix-functions/swscanf.texi: Likewise.
5700         * doc/posix-functions/towctrans.texi: Likewise.
5701         * doc/posix-functions/vfwprintf.texi: Likewise.
5702         * doc/posix-functions/vswprintf.texi: Likewise.
5703         * doc/posix-functions/vwprintf.texi: Likewise.
5704         * doc/posix-functions/wcrtomb.texi: Likewise.
5705         * doc/posix-functions/wcsrtombs.texi: Likewise.
5706         * doc/posix-functions/wcsstr.texi: Likewise.
5707         * doc/posix-functions/wctob.texi: Likewise.
5708         * doc/posix-functions/wctrans.texi: Likewise.
5709         * doc/posix-functions/wmemchr.texi: Likewise.
5710         * doc/posix-functions/wmemcmp.texi: Likewise.
5711         * doc/posix-functions/wmemcpy.texi: Likewise.
5712         * doc/posix-functions/wmemmove.texi: Likewise.
5713         * doc/posix-functions/wmemset.texi: Likewise.
5714         * doc/posix-functions/wprintf.texi: Likewise.
5715         * doc/posix-functions/wscanf.texi: Likewise.
5716
5717 2008-12-21  Bruno Haible  <bruno@clisp.org>
5718
5719         Work around a portability problem.
5720         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
5721         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
5722
5723 2008-12-20  Bruno Haible  <bruno@clisp.org>
5724
5725         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
5726         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
5727         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
5728         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
5729         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
5730
5731         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
5732         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
5733         set.
5734         (GNULIB_defined_mbstate_t): New macro.
5735         (mbsinit): Redefine if REPLACE_MBSINIT is set.
5736         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
5737         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
5738         reuses the system's mbrtowc function but works around the bugs.
5739         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
5740         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
5741         macros.
5742         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
5743         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
5744         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
5745         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
5746         REPLACE_MBSINIT if mbsinit needs to be overridden.
5747         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
5748         REPLACE_MBSINIT, REPLACE_MBRTOWC.
5749         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
5750         REPLACE_MBSINIT, REPLACE_MBRTOWC.
5751         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
5752         m4/locale-zh.m4.
5753         (Depends): Add mbsinit.
5754         * modules/mbsinit (Depends): Add mbrtowc.
5755         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
5756
5757 2008-12-20  Bruno Haible  <bruno@clisp.org>
5758
5759         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
5760         so that there are no conversion errors on AIX.
5761         * tests/test-mbsrtowcs.c (main): LIkewise.
5762
5763 2008-12-20  Bruno Haible  <bruno@clisp.org>
5764
5765         Work around wctob bug on Solaris <= 9.
5766         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
5767         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
5768         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
5769         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
5770         * modules/wctob (Files): Add m4/locale-fr.m4.
5771         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
5772
5773 2008-12-20  Bruno Haible  <bruno@clisp.org>
5774
5775         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
5776         /dev/null.
5777         * tests/test-select-in.sh: Likewise.
5778         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
5779
5780 2008-12-20  Bruno Haible  <bruno@clisp.org>
5781
5782         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
5783         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
5784         Cygwin 1.5.x.
5785
5786 2008-12-20  Bruno Haible  <bruno@clisp.org>
5787
5788         Ensure mbstate_t is defined on HP-UX 11.11.
5789         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
5790         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
5791         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
5792         AC_USE_SYSTEM_EXTENSIONS.
5793         * modules/fnmatch (Depends-on): Add extensions.
5794         * modules/mbrlen (Depends-on): Likewise.
5795         * modules/mbrtowc (Depends-on): Likewise.
5796         * modules/mbsinit (Depends-on): Likewise.
5797         * modules/mbsrtowcs (Depends-on): Likewise.
5798         * modules/mbswidth (Depends-on): Likewise.
5799         * modules/quotearg (Depends-on): Likewise.
5800         * modules/strftime (Depends-on): Likewise.
5801
5802 2008-12-20  Bruno Haible  <bruno@clisp.org>
5803
5804         Ensure wctob is declared on IRIX 6.5.
5805         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
5806         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
5807         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
5808         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
5809         of HAVE_WCTOB.
5810         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
5811         HAVE_WCTOB.
5812         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
5813
5814 2008-12-19  Bruno Haible  <bruno@clisp.org>
5815
5816         * modules/mbsrtowcs-tests: New file.
5817         * tests/test-mbsrtowcs1.sh: New file.
5818         * tests/test-mbsrtowcs2.sh: New file.
5819         * tests/test-mbsrtowcs3.sh: New file.
5820         * tests/test-mbsrtowcs4.sh: New file.
5821         * tests/test-mbsrtowcs.c: New file.
5822
5823         New module 'mbsrtowcs'.
5824         * lib/wchar.in.h (mbsrtowcs): New declaration.
5825         * lib/mbsrtowcs.c: New file.
5826         * m4/mbsrtowcs.m4: New file.
5827         * modules/mbsrtowcs: New file.
5828         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
5829         HAVE_MBSRTOWCS.
5830         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
5831         HAVE_MBSRTOWCS.
5832         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
5833
5834 2008-12-19  Bruno Haible  <bruno@clisp.org>
5835
5836         New module 'mbrlen'.
5837         * lib/wchar.in.h (mbrlen): New declaration.
5838         * lib/mbrlen.c: New file.
5839         * m4/mbrlen.m4: New file.
5840         * modules/mbrlen: New file.
5841         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
5842         HAVE_MBRLEN.
5843         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
5844         HAVE_MBRLEN.
5845         * doc/posix-functions/mbrlen.texi: Document the new module.
5846
5847 2008-12-19  Bruno Haible  <bruno@clisp.org>
5848
5849         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
5850         * modules/mbrtowc (Depends-on): Add verify.
5851         Suggested by Paul Eggert.
5852
5853 2008-12-18  Bruno Haible  <bruno@clisp.org>
5854
5855         * modules/mbsinit-tests: New file.
5856         * tests/test-mbsinit.sh: New file.
5857         * tests/test-mbsinit.c: New file.
5858
5859 2008-12-18  Bruno Haible  <bruno@clisp.org>
5860
5861         * modules/mbrtowc-tests: New file.
5862         * tests/test-mbrtowc1.sh: New file.
5863         * tests/test-mbrtowc2.sh: New file.
5864         * tests/test-mbrtowc3.sh: New file.
5865         * tests/test-mbrtowc4.sh: New file.
5866         * tests/test-mbrtowc.c: New file.
5867
5868         New module 'mbrtowc'.
5869         * lib/wchar.in.h (mbstate_t): Override when the system does not have
5870         mbsinit and mbrtowc.
5871         (mbrtowc): New declaration.
5872         * lib/mbrtowc.c: New file.
5873         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
5874         * modules/mbrtowc: New file.
5875         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
5876         HAVE_MBRTOWC.
5877         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
5878         HAVE_MBRTOWC.
5879         * doc/posix-functions/mbrtowc.texi: Document the new module.
5880
5881 2008-12-18  Bruno Haible  <bruno@clisp.org>
5882
5883         New module 'wctob'.
5884         * lib/wchar.in.h (wctob): New declaration.
5885         * lib/wctob.c: New file.
5886         * m4/wctob.m4: New file.
5887         * modules/wctob: New file.
5888         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
5889         HAVE_WCTOB.
5890         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
5891         * doc/posix-functions/wctob.texi: Document the new module.
5892
5893 2008-12-18  Bruno Haible  <bruno@clisp.org>
5894
5895         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
5896         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
5897
5898 2008-12-18  Simon Josefsson  <simon@josefsson.org>
5899
5900         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
5901         G. Christensen" <tgc@jupiterrise.com>.
5902
5903         * lib/flock.c: Need to include errno.h.  Reported by "Tom
5904         G. Christensen" <tgc@jupiterrise.com>.
5905
5906         * lib/flock.c: Need to include string.h.  Reported by "Tom
5907         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
5908         <ebb9@byu.net>.
5909
5910 2008-12-18  Bruno Haible  <bruno@clisp.org>
5911
5912         * m4/locale-ja.m4: New file, from GNU gettext.
5913
5914 2008-12-17  Bruno Haible  <bruno@clisp.org>
5915
5916         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
5917         Suggested by Eric Blake.
5918
5919 2008-12-17  Bruno Haible  <bruno@clisp.org>
5920
5921         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
5922
5923 2008-12-17  Bruno Haible  <bruno@clisp.org>
5924
5925         * lib/mbsinit.c: Include verify.h. Verify an assumption.
5926         * modules/mbsinit (Depends-on): Add verify.
5927         Suggested by Paul Eggert.
5928
5929 2008-12-17  Bruno Haible  <bruno@clisp.org>
5930
5931         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
5932         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
5933         gl_FUNC_MBRTOWC.
5934         * m4/mbiter.m4 (gl_MBITER): LIkewise.
5935         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
5936         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
5937         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
5938         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
5939         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
5940         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
5941         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
5942         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
5943         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
5944         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
5945         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
5946         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
5947         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
5948         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
5949         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
5950         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
5951         * modules/trim (configure.ac): Likewise.
5952
5953 2008-12-17  Bruno Haible  <bruno@clisp.org>
5954
5955         * modules/btowc-tests: New file.
5956         * tests/test-btowc1.sh: New file.
5957         * tests/test-btowc2.sh: New file.
5958         * tests/test-btowc.c: New file.
5959
5960         New module 'btowc'.
5961         * lib/wchar.in.h (btowc): New declaration.
5962         * lib/btowc.c: New file.
5963         * m4/btowc.m4: New file.
5964         * modules/btowc: New file.
5965         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
5966         HAVE_BTOWC.
5967         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
5968         * doc/posix-functions/btowc.texi: Document the new module.
5969
5970 2008-12-17  Bruno Haible  <bruno@clisp.org>
5971
5972         New module 'mbsinit'.
5973         * lib/wchar.in.h (mbsinit): New declaration.
5974         * lib/mbsinit.c: New file.
5975         * m4/mbsinit.m4: New file.
5976         * modules/mbsinit: New file.
5977         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
5978         HAVE_MBSINIT.
5979         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
5980         HAVE_MBSINIT.
5981         * doc/posix-functions/mbsinit.texi: Document the new module.
5982
5983 2008-12-16  Bruno Haible  <bruno@clisp.org>
5984
5985         * lib/unistd.in.h: Add comment.
5986         * tests/test-environ.c: Don't include <stdlib.h>.
5987
5988 2008-12-16  Bruno Haible  <bruno@clisp.org>
5989
5990         * lib/parse-duration.h (parse_duration): Document return value
5991         convention.
5992         * lib/parse-duration.c: Include specification header first. Add
5993         comments.
5994         (_): Remove macro.
5995         (parse_year_month_day, parse_hour_minute_second): Move side effects
5996         outside of strchr call.
5997         (parse_non_iso8601): Move side effects outside of isspace call.
5998         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
5999         call.
6000
6001 2008-12-16  Bruno Haible  <bruno@clisp.org>
6002
6003         * tests/test-parse-duration.sh: Produce no output when the test
6004         succeeds.
6005
6006 2008-12-16  Bruno Haible  <bruno@clisp.org>
6007
6008         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
6009         expressions.
6010
6011 2008-12-15  Bruno Haible  <bruno@clisp.org>
6012
6013         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
6014         * doc/glibc-functions/flistxattr.texi: Likewise.
6015         * doc/glibc-functions/fopencookie.texi: Likewise.
6016         * doc/glibc-functions/fremovexattr.texi: Likewise.
6017         * doc/glibc-functions/fsetxattr.texi: Likewise.
6018         * doc/glibc-functions/getxattr.texi: Likewise.
6019         * doc/glibc-functions/lgetxattr.texi: Likewise.
6020         * doc/glibc-functions/listxattr.texi: Likewise.
6021         * doc/glibc-functions/llistxattr.texi: Likewise.
6022         * doc/glibc-functions/lremovexattr.texi: Likewise.
6023         * doc/glibc-functions/lsetxattr.texi: Likewise.
6024         * doc/glibc-functions/removexattr.texi: Likewise.
6025         * doc/glibc-functions/setxattr.texi: Likewise.
6026         * doc/posix-functions/open_memstream.texi: Likewise.
6027
6028 2008-12-15  Eric Blake  <ebb9@byu.net>
6029
6030         Update doc for cygwin 1.7.
6031         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
6032         functions.
6033         * doc/posix-functions/fchmodat.texi: Likewise.
6034         * doc/posix-functions/fchownat.texi: Likewise.
6035         * doc/posix-functions/fdopendir.texi: Likewise.
6036         * doc/posix-functions/fmemopen.texi: Likewise.
6037         * doc/posix-functions/freeaddrinfo.texi: Likewise.
6038         * doc/posix-functions/fstatat.texi: Likewise.
6039         * doc/posix-functions/futimens.texi: Likewise.
6040         * doc/posix-functions/gai_strerror.texi: Likewise.
6041         * doc/posix-functions/getaddrinfo.texi: Likewise.
6042         * doc/posix-functions/getnameinfo.texi: Likewise.
6043         * doc/posix-functions/if_freenameindex.texi: Likewise.
6044         * doc/posix-functions/if_indextoname.texi: Likewise.
6045         * doc/posix-functions/if_nameindex.texi: Likewise.
6046         * doc/posix-functions/if_nametoindex.texi: Likewise.
6047         * doc/posix-functions/insque.texi: Likewise.
6048         * doc/posix-functions/linkat.texi: Likewise.
6049         * doc/posix-functions/llrint.texi: Likewise.
6050         * doc/posix-functions/llrintf.texi: Likewise.
6051         * doc/posix-functions/llrintl.texi: Likewise.
6052         * doc/posix-functions/lockf.texi: Likewise.
6053         * doc/posix-functions/lrintl.texi: Likewise.
6054         * doc/posix-functions/mkdirat.texi: Likewise.
6055         * doc/posix-functions/mkfifoat.texi: Likewise.
6056         * doc/posix-functions/mknodat.texi: Likewise.
6057         * doc/posix-functions/mq_close.texi: Likewise.
6058         * doc/posix-functions/mq_getattr.texi: Likewise.
6059         * doc/posix-functions/mq_notify.texi: Likewise.
6060         * doc/posix-functions/mq_open.texi: Likewise.
6061         * doc/posix-functions/mq_receive.texi: Likewise.
6062         * doc/posix-functions/mq_send.texi: Likewise.
6063         * doc/posix-functions/mq_setattr.texi: Likewise.
6064         * doc/posix-functions/mq_timedreceive.texi: Likewise.
6065         * doc/posix-functions/mq_timedsend.texi: Likewise.
6066         * doc/posix-functions/mq_unlink.texi: Likewise.
6067         * doc/posix-functions/open_memstream.texi: Likewise.
6068         * doc/posix-functions/openat.texi: Likewise.
6069         * doc/posix-functions/posix_fadvise.texi: Likewise.
6070         * doc/posix-functions/posix_fallocate.texi: Likewise.
6071         * doc/posix-functions/posix_madvise.texi: Likewise.
6072         * doc/posix-functions/posix_memalign.texi: Likewise.
6073         * doc/posix-functions/posix_openpt.texi: Likewise.
6074         * doc/posix-functions/readlinkat.texi: Likewise.
6075         * doc/posix-functions/remque.texi: Likewise.
6076         * doc/posix-functions/renameat.texi: Likewise.
6077         * doc/posix-functions/rintl.texi: Likewise.
6078         * doc/posix-functions/sem_unlink.texi: Likewise.
6079         * doc/posix-functions/shm_open.texi: Likewise.
6080         * doc/posix-functions/shm_unlink.texi: Likewise.
6081         * doc/posix-functions/signgam.texi: Likewise.
6082         * doc/posix-functions/sigset.texi: Likewise.
6083         * doc/posix-functions/stpcpy.texi: Likewise.
6084         * doc/posix-functions/stpncpy.texi: Likewise.
6085         * doc/posix-functions/strerror.texi: Likewise.
6086         * doc/posix-functions/strtod.texi: Likewise.
6087         * doc/posix-functions/symlinkat.texi: Likewise.
6088         * doc/posix-functions/unlinkat.texi: Likewise.
6089         * doc/posix-functions/utimensat.texi: Likewise.
6090         * doc/glibc-functions/bindresvport.texi: Likewise.
6091         * doc/glibc-functions/dn_expand.texi: Likewise.
6092         * doc/glibc-functions/exp10.texi: Likewise.
6093         * doc/glibc-functions/exp10f.texi: Likewise.
6094         * doc/glibc-functions/fgetxattr.texi: Likewise.
6095         * doc/glibc-functions/flistxattr.texi: Likewise.
6096         * doc/glibc-functions/fopencookie.texi: Likewise.
6097         * doc/glibc-functions/freeifaddrs.texi: Likewise.
6098         * doc/glibc-functions/fremovexattr.texi: Likewise.
6099         * doc/glibc-functions/fsetxattr.texi: Likewise.
6100         * doc/glibc-functions/getifaddrs.texi: Likewise.
6101         * doc/glibc-functions/getxattr.texi: Likewise.
6102         * doc/glibc-functions/lgetxattr.texi: Likewise.
6103         * doc/glibc-functions/listxattr.texi: Likewise.
6104         * doc/glibc-functions/llistxattr.texi: Likewise.
6105         * doc/glibc-functions/lremovexattr.texi: Likewise.
6106         * doc/glibc-functions/lsetxattr.texi: Likewise.
6107         * doc/glibc-functions/pow10.texi: Likewise.
6108         * doc/glibc-functions/pow10f.texi: Likewise.
6109         * doc/glibc-functions/rcmd_af.texi: Likewise.
6110         * doc/glibc-functions/removexattr.texi: Likewise.
6111         * doc/glibc-functions/res_init.texi: Likewise.
6112         * doc/glibc-functions/res_mkquery.texi: Likewise.
6113         * doc/glibc-functions/res_query.texi: Likewise.
6114         * doc/glibc-functions/res_querydomain.texi: Likewise.
6115         * doc/glibc-functions/res_send.texi: Likewise.
6116         * doc/glibc-functions/rresvport_af.texi: Likewise.
6117         * doc/glibc-functions/setxattr.texi: Likewise.
6118         * doc/glibc-functions/strcasestr.texi: Likewise.
6119
6120 2008-12-15  Bruno Haible  <bruno@clisp.org>
6121
6122         Fix compilation error on OSF/1 4.0.
6123         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
6124         <sys/time.h>, simply delegate to the system header.
6125         Reported by Daniel Richard G. <oss@teragram.com>.
6126
6127 2008-12-15  Bruno Haible  <bruno@clisp.org>
6128
6129         * doc/posix-functions/openat.texi: Mention the 'openat' module.
6130         * doc/posix-functions/fchmodat.texi: Likewise.
6131         * doc/posix-functions/fchownat.texi: Likewise.
6132         * doc/posix-functions/fdopendir.texi: Likewise.
6133         * doc/posix-functions/fstatat.texi: Likewise.
6134         * doc/posix-functions/mkdirat.texi: Likewise.
6135         * doc/posix-functions/unlinkat.texi: Likewise.
6136
6137 2008-12-14  Bruno Haible  <bruno@clisp.org>
6138
6139         Update doc for POSIX:2008.
6140         * doc/posix-functions/faccessat.texi: New file.
6141         * doc/posix-functions/fchmodat.texi: New file.
6142         * doc/posix-functions/fchownat.texi: New file.
6143         * doc/posix-functions/fdopendir.texi: New file.
6144         * doc/posix-functions/fstatat.texi: New file.
6145         * doc/posix-functions/futimens.texi: New file.
6146         * doc/posix-functions/linkat.texi: New file.
6147         * doc/posix-functions/mkdirat.texi: New file.
6148         * doc/posix-functions/mkfifoat.texi: New file.
6149         * doc/posix-functions/mknodat.texi: New file.
6150         * doc/posix-functions/open_wmemstream.texi: New file.
6151         * doc/posix-functions/openat.texi: New file.
6152         * doc/posix-functions/psiginfo.texi: New file.
6153         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
6154         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
6155         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
6156         * doc/posix-functions/readlinkat.texi: New file.
6157         * doc/posix-functions/renameat.texi: New file.
6158         * doc/posix-functions/strerror_l.texi: New file.
6159         * doc/posix-functions/symlinkat.texi: New file.
6160         * doc/posix-functions/unlinkat.texi: New file.
6161         * doc/posix-functions/utimensat.texi: New file.
6162         * doc/gnulib.texi (Function Substitutes): Add these subsections.
6163
6164 2008-12-14  Bruno Haible  <bruno@clisp.org>
6165
6166         Update doc for POSIX:2008.
6167         * doc/posix-functions/alphasort.texi: Renamed from
6168         doc/glibc-functions/alphasort.texi.
6169         * doc/posix-functions/dirfd.texi: Renamed from
6170         doc/glibc-functions/dirfd.texi.
6171         * doc/posix-functions/dprintf.texi: Renamed from
6172         doc/glibc-functions/dprintf.texi.
6173         * doc/posix-functions/duplocale.texi: Renamed from
6174         doc/glibc-functions/duplocale.texi.
6175         * doc/posix-functions/fexecve.texi: Renamed from
6176         doc/glibc-functions/fexecve.texi.
6177         * doc/posix-functions/fmemopen.texi: Renamed from
6178         doc/glibc-functions/fmemopen.texi.
6179         * doc/posix-functions/freelocale.texi: Renamed from
6180         doc/glibc-functions/freelocale.texi.
6181         * doc/posix-functions/getdate_err.texi: Renamed from
6182         doc/glibc-functions/getdate_err.texi.
6183         * doc/posix-functions/isalnum_l.texi: Renamed from
6184         doc/glibc-functions/isalnum_l.texi.
6185         * doc/posix-functions/isalpha_l.texi: Renamed from
6186         doc/glibc-functions/isalpha_l.texi.
6187         * doc/posix-functions/isblank_l.texi: Renamed from
6188         doc/glibc-functions/isblank_l.texi.
6189         * doc/posix-functions/iscntrl_l.texi: Renamed from
6190         doc/glibc-functions/iscntrl_l.texi.
6191         * doc/posix-functions/isdigit_l.texi: Renamed from
6192         doc/glibc-functions/isdigit_l.texi.
6193         * doc/posix-functions/isgraph_l.texi: Renamed from
6194         doc/glibc-functions/isgraph_l.texi.
6195         * doc/posix-functions/islower_l.texi: Renamed from
6196         doc/glibc-functions/islower_l.texi.
6197         * doc/posix-functions/isprint_l.texi: Renamed from
6198         doc/glibc-functions/isprint_l.texi.
6199         * doc/posix-functions/ispunct_l.texi: Renamed from
6200         doc/glibc-functions/ispunct_l.texi.
6201         * doc/posix-functions/isspace_l.texi: Renamed from
6202         doc/glibc-functions/isspace_l.texi.
6203         * doc/posix-functions/isupper_l.texi: Renamed from
6204         doc/glibc-functions/isupper_l.texi.
6205         * doc/posix-functions/iswalnum_l.texi: Renamed from
6206         doc/glibc-functions/iswalnum_l.texi.
6207         * doc/posix-functions/iswalpha_l.texi: Renamed from
6208         doc/glibc-functions/iswalpha_l.texi.
6209         * doc/posix-functions/iswblank_l.texi: Renamed from
6210         doc/glibc-functions/iswblank_l.texi.
6211         * doc/posix-functions/iswcntrl_l.texi: Renamed from
6212         doc/glibc-functions/iswcntrl_l.texi.
6213         * doc/posix-functions/iswctype_l.texi: Renamed from
6214         doc/glibc-functions/iswctype_l.texi.
6215         * doc/posix-functions/iswdigit_l.texi: Renamed from
6216         doc/glibc-functions/iswdigit_l.texi.
6217         * doc/posix-functions/iswgraph_l.texi: Renamed from
6218         doc/glibc-functions/iswgraph_l.texi.
6219         * doc/posix-functions/iswlower_l.texi: Renamed from
6220         doc/glibc-functions/iswlower_l.texi.
6221         * doc/posix-functions/iswprint_l.texi: Renamed from
6222         doc/glibc-functions/iswprint_l.texi.
6223         * doc/posix-functions/iswpunct_l.texi: Renamed from
6224         doc/glibc-functions/iswpunct_l.texi.
6225         * doc/posix-functions/iswspace_l.texi: Renamed from
6226         doc/glibc-functions/iswspace_l.texi.
6227         * doc/posix-functions/iswupper_l.texi: Renamed from
6228         doc/glibc-functions/iswupper_l.texi.
6229         * doc/posix-functions/iswxdigit_l.texi: Renamed from
6230         doc/glibc-functions/iswxdigit_l.texi.
6231         * doc/posix-functions/isxdigit_l.texi: Renamed from
6232         doc/glibc-functions/isxdigit_l.texi.
6233         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
6234         doc/glibc-functions/mbsnrtowcs.texi.
6235         * doc/posix-functions/mkdtemp.texi: Renamed from
6236         doc/glibc-functions/mkdtemp.texi.
6237         * doc/posix-functions/newlocale.texi: Renamed from
6238         doc/glibc-functions/newlocale.texi.
6239         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
6240         doc/glibc-functions/nl_langinfo_l.texi.
6241         * doc/posix-functions/open_memstream.texi: Renamed from
6242         doc/glibc-functions/open_memstream.texi.
6243         * doc/posix-functions/opterr.texi: Renamed from
6244         doc/glibc-functions/opterr.texi.
6245         * doc/posix-functions/optind.texi: Renamed from
6246         doc/glibc-functions/optind.texi.
6247         * doc/posix-functions/optopt.texi: Renamed from
6248         doc/glibc-functions/optopt.texi.
6249         * doc/posix-functions/psignal.texi: Renamed from
6250         doc/glibc-functions/psignal.texi.
6251         * doc/posix-functions/scandir.texi: Renamed from
6252         doc/glibc-functions/scandir.texi.
6253         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
6254         doc/glibc-functions/sched_get_priority_min.texi.
6255         * doc/posix-functions/signgam.texi: Renamed from
6256         doc/glibc-functions/signgam.texi.
6257         * doc/posix-functions/stpcpy.texi: Renamed from
6258         doc/glibc-functions/stpcpy.texi.
6259         * doc/posix-functions/stpncpy.texi: Renamed from
6260         doc/glibc-functions/stpncpy.texi.
6261         * doc/posix-functions/strcasecmp_l.texi: Renamed from
6262         doc/glibc-functions/strcasecmp_l.texi.
6263         * doc/posix-functions/strcoll_l.texi: Renamed from
6264         doc/glibc-functions/strcoll_l.texi.
6265         * doc/posix-functions/strfmon_l.texi: Renamed from
6266         doc/glibc-functions/strfmon_l.texi.
6267         * doc/posix-functions/strftime_l.texi: Renamed from
6268         doc/glibc-functions/strftime_l.texi.
6269         * doc/posix-functions/strncasecmp_l.texi: Renamed from
6270         doc/glibc-functions/strncasecmp_l.texi.
6271         * doc/posix-functions/strndup.texi: Renamed from
6272         doc/glibc-functions/strndup.texi.
6273         * doc/posix-functions/strnlen.texi: Renamed from
6274         doc/glibc-functions/strnlen.texi.
6275         * doc/posix-functions/strsignal.texi: Renamed from
6276         doc/glibc-functions/strsignal.texi.
6277         * doc/posix-functions/strxfrm_l.texi: Renamed from
6278         doc/glibc-functions/strxfrm_l.texi.
6279         * doc/posix-functions/timer_gettime.texi: Renamed from
6280         doc/glibc-functions/timer_gettime.texi.
6281         * doc/posix-functions/tolower_l.texi: Renamed from
6282         doc/glibc-functions/tolower_l.texi.
6283         * doc/posix-functions/toupper_l.texi: Renamed from
6284         doc/glibc-functions/toupper_l.texi.
6285         * doc/posix-functions/towctrans_l.texi: Renamed from
6286         doc/glibc-functions/towctrans_l.texi.
6287         * doc/posix-functions/towlower_l.texi: Renamed from
6288         doc/glibc-functions/towlower_l.texi.
6289         * doc/posix-functions/towupper_l.texi: Renamed from
6290         doc/glibc-functions/towupper_l.texi.
6291         * doc/posix-functions/uselocale.texi: Renamed from
6292         doc/glibc-functions/uselocale.texi.
6293         * doc/posix-functions/vdprintf.texi: Renamed from
6294         doc/glibc-functions/vdprintf.texi.
6295         * doc/posix-functions/wcpcpy.texi:
6296         Renamed from doc/glibc-functions/wcpcpy.texi.
6297         * doc/posix-functions/wcpncpy.texi: Renamed from
6298         doc/glibc-functions/wcpncpy.texi.
6299         * doc/posix-functions/wcscasecmp.texi: Renamed from
6300         doc/glibc-functions/wcscasecmp.texi.
6301         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
6302         doc/glibc-functions/wcscasecmp_l.texi.
6303         * doc/posix-functions/wcscoll_l.texi: Renamed from
6304         doc/glibc-functions/wcscoll_l.texi.
6305         * doc/posix-functions/wcsdup.texi: Renamed from
6306         doc/glibc-functions/wcsdup.texi.
6307         * doc/posix-functions/wcsncasecmp.texi: Renamed from
6308         doc/glibc-functions/wcsncasecmp.texi.
6309         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
6310         doc/glibc-functions/wcsncasecmp_l.texi.
6311         * doc/posix-functions/wcsnlen.texi: Renamed from
6312         doc/glibc-functions/wcsnlen.texi.
6313         * doc/posix-functions/wcsnrtombs.texi: Renamed from
6314         doc/glibc-functions/wcsnrtombs.texi.
6315         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
6316         doc/glibc-functions/wcsxfrm_l.texi.
6317         * doc/posix-functions/wctrans_l.texi: Renamed from
6318         doc/glibc-functions/wctrans_l.texi.
6319         * doc/posix-functions/wctype_l.texi: Renamed from
6320         doc/glibc-functions/wctype_l.texi.
6321         * doc/gnulib.texi (Function Substitutes): Add these subsections.
6322         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
6323         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
6324         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
6325         these subsections.
6326         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
6327         Remove sections.
6328
6329 2008-12-14  Bruno Haible  <bruno@clisp.org>
6330
6331         Update doc for POSIX:2008.
6332         * doc/posix-functions/*.texi: Update URL of POSIX specification.
6333
6334 2008-12-14  Bruno Haible  <bruno@clisp.org>
6335
6336         Update doc for POSIX:2008.
6337         * doc/pastposix-functions/bcmp.texi: Renamed from
6338         doc/posix-functions/bcmp.texi.
6339         * doc/pastposix-functions/bcopy.texi: Renamed from
6340         doc/posix-functions/bcopy.texi.
6341         * doc/pastposix-functions/bsd_signal.texi: Renamed from
6342         doc/posix-functions/bsd_signal.texi.
6343         * doc/pastposix-functions/bzero.texi: Renamed from
6344         doc/posix-functions/bzero.texi.
6345         * doc/pastposix-functions/ecvt.texi: Renamed from
6346         doc/posix-functions/ecvt.texi.
6347         * doc/pastposix-functions/fcvt.texi: Renamed from
6348         doc/posix-functions/fcvt.texi.
6349         * doc/pastposix-functions/ftime.texi: Renamed from
6350         doc/posix-functions/ftime.texi.
6351         * doc/pastposix-functions/gcvt.texi: Renamed from
6352         doc/posix-functions/gcvt.texi.
6353         * doc/pastposix-functions/getcontext.texi: Renamed from
6354         doc/posix-functions/getcontext.texi.
6355         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
6356         doc/posix-functions/gethostbyaddr.texi.
6357         * doc/pastposix-functions/gethostbyname.texi: Renamed from
6358         doc/posix-functions/gethostbyname.texi.
6359         * doc/pastposix-functions/getwd.texi: Renamed from
6360         doc/posix-functions/getwd.texi.
6361         * doc/pastposix-functions/h_errno.texi: Renamed from
6362         doc/posix-functions/h_errno.texi.
6363         * doc/pastposix-functions/index.texi: Renamed from
6364         doc/posix-functions/index.texi.
6365         * doc/pastposix-functions/makecontext.texi: Renamed from
6366         doc/posix-functions/makecontext.texi.
6367         * doc/pastposix-functions/mktemp.texi: Renamed from
6368         doc/posix-functions/mktemp.texi.
6369         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
6370         doc/posix-functions/pthread_attr_getstackaddr.texi.
6371         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
6372         doc/posix-functions/pthread_attr_setstackaddr.texi.
6373         * doc/pastposix-functions/rindex.texi: Renamed from
6374         doc/posix-functions/rindex.texi.
6375         * doc/pastposix-functions/scalb.texi: Renamed from
6376         doc/posix-functions/scalb.texi.
6377         * doc/pastposix-functions/setcontext.texi: Renamed from
6378         doc/posix-functions/setcontext.texi.
6379         * doc/pastposix-functions/swapcontext.texi: Renamed from
6380         doc/posix-functions/swapcontext.texi.
6381         * doc/pastposix-functions/ualarm.texi: Renamed from
6382         doc/posix-functions/ualarm.texi.
6383         * doc/pastposix-functions/usleep.texi: Renamed from
6384         doc/posix-functions/usleep.texi.
6385         * doc/pastposix-functions/vfork.texi: Renamed from
6386         doc/posix-functions/vfork.texi.
6387         * doc/pastposix-functions/wcswcs.texi: Renamed from
6388         doc/posix-functions/wcswcs.texi.
6389         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
6390         (Function Substitutes): Update.
6391
6392 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6393
6394         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
6395         m4/strerror.m4.
6396
6397 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6398             Bruno Haible  <bruno@clisp.org>
6399
6400         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
6401
6402 2008-12-13  Bruno Haible  <bruno@clisp.org>
6403
6404         * modules/strtoull (Depends-on): Remove unistd.
6405
6406 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6407
6408         * modules/strtoull (Depends-on): Add stdlib.
6409
6410 2008-12-11  Simon Josefsson  <simon@josefsson.org>
6411
6412         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
6413
6414 2008-12-10  Jim Meyering  <meyering@redhat.com>
6415
6416         gl_ASSERT: don't say assertions are disabled when they're not
6417         * m4/assert.m4 (gl_ASSERT): Do not make configure report
6418         "checking whether to enable assertions... no", when they are in
6419         fact enabled.  This is solely a bug in the output of configure.
6420         In spite of saying "no", NDEBUG was not defined in that case.
6421         Also, as noted by Eric Blake, leave assertions enabled upon
6422         --enable-assert=INVALID.
6423
6424 2008-12-10  Bruno Haible  <bruno@clisp.org>
6425
6426         Change MODULES.html to refer to POSIX:2008 where possible.
6427         * MODULES.html.sh (POSIX2008_URL): New variable.
6428         (posix_headers): Remove sys/timeb, ucontext.
6429         (posix2001_headers): New variable.
6430         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
6431         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
6432         index, makecontext, mktemp, pthread_attr_getstackaddr,
6433         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
6434         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
6435         (posix2001_functions): New variable.
6436         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
6437         otherwise.
6438
6439 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6440
6441         add missing include to parse-duration.c
6442         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
6443         * modules/parse-duration (Depends-on): Add xalloc.
6444
6445         fix sed script reading maint.mk
6446         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
6447         (syntax-check-rules): Use it.
6448
6449 2008-12-09  Bruno Haible  <bruno@clisp.org>
6450
6451         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
6452         MacOS X 10.4/PowerPC.
6453         Reported by Simon Josefsson.
6454
6455 2008-12-08  Jim Meyering  <meyering@redhat.com>
6456
6457         work around mingw's lack of some S_IF definitions
6458         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
6459         Reported by Simon Josefsson.
6460
6461 2008-12-08  Bruno Haible  <bruno@clisp.org>
6462
6463         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
6464         applied to variables. Needed on MacOS X 10.4/PowerPC.
6465         Reported by Simon Josefsson.
6466
6467 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
6468         and Eric Blake  <ebb9@byu.net>
6469
6470         assert: honor --enable-assert
6471         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
6472         order to honor --enable-assert, rather than treating it as a
6473         synonym for --disable-assert.
6474
6475 2008-12-08  Jim Meyering  <meyering@redhat.com>
6476
6477         * lib/posixtm.c: Remove now-useless declaration of mktime.
6478
6479         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
6480
6481 2008-12-07  Bruno Haible  <bruno@clisp.org>
6482
6483         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
6484         test_once): Mark functions as static.
6485         * tests/test-tls.c (test_tls): Likewise.
6486
6487 2008-12-07  Bruno Haible  <bruno@clisp.org>
6488
6489         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
6490         iconv_register_autodetect.
6491
6492 2008-12-07  Jim Meyering  <meyering@redhat.com>
6493
6494         posixtm.c: avoid a warning
6495         * lib/posixtm.c (posixtime): Don't initialize tm0.
6496         It's no longer needed to placate gcc4's -Wuninitialized,
6497         and the attempt to placate would elicit a new warning.
6498
6499         unicodeio.c: mark unused parameters
6500         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
6501         (fallback_failure_callback): Likewise.
6502
6503 2008-12-07  Bruno Haible  <bruno@clisp.org>
6504
6505         * gnulib-tool (func_create_testdir): When building the tests
6506         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
6507         Reported by Simon Josefsson.
6508
6509 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6510
6511         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
6512
6513 2008-12-06  Bruno Haible  <bruno@clisp.org>
6514
6515         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
6516         Suggested by Eric Blake.
6517
6518 2008-12-06  Bruno Haible  <bruno@clisp.org>
6519
6520         Fix a c-stack test failure on MacOS X.
6521         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
6522         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
6523         handler for SIGBUS as well.
6524         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
6525         install a signal handler for SIGBUS as well.
6526         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
6527
6528 2008-12-06  Bruno Haible  <bruno@clisp.org>
6529
6530         Advocacy documentation.
6531         * doc/gnulib-intro.texi (Benefits): New section.
6532         * doc/gnulib.texi: Update.
6533
6534 2008-12-06  Bruno Haible  <bruno@clisp.org>
6535
6536         Document the 'manywarnings' module.
6537         * doc/manywarnings.texi: New file.
6538         * doc/gnulib.texi: Include it.
6539
6540 2008-12-05  Eric Blake  <ebb9@byu.net>
6541
6542         tests: silence some gcc warnings
6543         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
6544         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
6545         type mismatches.
6546
6547 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6548             Bruno Haible  <bruno@clisp.org>
6549
6550         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
6551
6552 2008-11-29  Jim Meyering  <meyering@redhat.com>
6553
6554         unicodeio.c: mark unused parameters
6555         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
6556         (fallback_failure_callback): Likewise.
6557
6558         fts: fix a thinko
6559         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
6560         (set_stat_type): Return S_IF*-valued "type" directly.
6561         Prompted by James Youngman's spotting a related bug.
6562         Confirmed by further testing through find.
6563
6564         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
6565         * lib/fts.c (D_TYPE): Define.
6566         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
6567         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
6568         (s_ifmt_shift_bits): New function.
6569         (set_stat_type): New function.
6570         (fts_build): When not calling fts_stat, call set_stat_type
6571         to propagate dirent.d_type info to fts_read caller.
6572         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
6573         fts_statp->st_mode type information may be valid.
6574
6575 2008-11-28  Simon Josefsson  <simon@josefsson.org>
6576
6577         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
6578         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
6579         <sds@gnu.org>.
6580
6581 2008-11-20  Bruno Haible  <bruno@clisp.org>
6582
6583         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
6584         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
6585         INCLUDE_NEXT.
6586         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
6587         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
6588         * modules/math (Makefile.am): Substitute
6589         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
6590         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
6591
6592 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
6593             Bruno Haible  <bruno@clisp.org>
6594
6595         * lib/stdint.in.h: Define all type macros so that their expansion is
6596         a single typedef'ed token. Fixes a compilation failure in Boost which
6597         does "using ::int8_t;".
6598
6599 2008-11-18  Simon Josefsson  <simon@josefsson.org>
6600
6601         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
6602         gl_MANYWARN_ALL_GCC.
6603         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
6604         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
6605         * modules/manywarnings: New file.
6606         * MODULES.html.sh: Mention manywarnings module.
6607
6608 2008-11-18  Bruno Haible  <bruno@clisp.org>
6609
6610         * doc/gnulib-tool.texi (Unit tests): New section.
6611
6612 2008-11-18  Simon Josefsson  <simon@josefsson.org>
6613
6614         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
6615         paths like 'lib/po/foo.po'.
6616
6617 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6618
6619         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
6620         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
6621
6622 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6623
6624         * m4/warnings.m4: Use CPPFLAGS to really check whether the
6625         parameter works.
6626
6627 2008-11-17  Simon Josefsson  <simon@josefsson.org>
6628
6629         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
6630
6631 2008-11-17  Bruce Korb  <bkorb@gnu.org>
6632
6633         * modules/parse-duration-tests: New file.
6634         * tests/test-parse-duration.sh: New file.
6635         * tests/test-parse-duration.c: New file.
6636
6637         New module 'parse-duration'.
6638         * lib/parse-duration.h: New file.
6639         * lib/parse-duration.c: New file.
6640         * modules/parse-duration: New file.
6641
6642 2008-11-17  Bruno Haible  <bruno@clisp.org>
6643
6644         * tests/test-select-out.sh: Comment out the first pipe test.
6645         Reported by Simon Josefsson.
6646
6647 2008-11-17  Bruno Haible  <bruno@clisp.org>
6648
6649         * modules/getaddrinfo (Depends-on): Add servent, hostent.
6650         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
6651         gl_HOSTENT.
6652
6653 2008-11-17  Bruno Haible  <bruno@clisp.org>
6654
6655         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
6656         -lnetwork and -lnet. Needed for Haiku and BeOS.
6657
6658 2008-11-16  Bruno Haible  <bruno@clisp.org>
6659
6660         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
6661
6662 2008-11-16  Bruno Haible  <bruno@clisp.org>
6663
6664         Avoid test failure on Haiku.
6665         * tests/test-fsync.c: Include <errno.h>.
6666         (main): Don't require that fsync (0) fails.
6667
6668 2008-11-15  Bruno Haible  <bruno@clisp.org>
6669
6670         New module 'hostent'.
6671         * modules/hostent: New file.
6672         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
6673
6674 2008-11-15  Bruno Haible  <bruno@clisp.org>
6675
6676         New module 'servent'.
6677         * modules/servent: New file.
6678         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
6679
6680 2008-11-15  Bruno Haible  <bruno@clisp.org>
6681
6682         Avoid generating same test program with two different rules.
6683         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
6684         test-frexp to test-frexp-nolibm.
6685         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
6686         test-frexpl to test-frexpl-nolibm.
6687
6688 2008-11-15  Bruno Haible  <bruno@clisp.org>
6689
6690         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
6691         $(FREXPL_LIBM).
6692
6693 2008-11-15  Bruno Haible  <bruno@clisp.org>
6694
6695         * lib/netdb.in.h: Activate the definitions also when the system's
6696         <netdb.h> has 'struct addrinfo'.
6697         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
6698         EAI_OVERFLOW or AI_NUMERICSERV.
6699         * doc/posix-headers/netdb.texi: Document the problem.
6700
6701 2008-11-15  Bruno Haible  <bruno@clisp.org>
6702
6703         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
6704
6705         Make the 'sched' module work on platforms where <sched.h> exists but
6706         is incomplete (such as Haiku).
6707         * lib/sched.in.h; Include the system's <sched.h> if it exists.
6708         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
6709         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
6710         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
6711         HAVE_STRUCT_SCHED_PARAM.
6712         * modules/sched (Depends-on): Add include_next.
6713         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
6714         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
6715         * doc/posix-headers/sched.texi: Document the issue.
6716
6717 2008-11-13  Jim Meyering  <meyering@redhat.com>
6718
6719         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
6720         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
6721         test would fail due to the difference in the Report bugs to ...
6722         line.  The expected address is empty, "<>", while the actual
6723         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
6724
6725 2008-11-12  Bruno Haible  <bruno@clisp.org>
6726
6727         lstat: don't compile lstat.c on systems lacking lstat
6728         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
6729         which don't have lstat; this is handled by lib/sys_stat.in.h already.
6730         Reported by Daniel P. Berrange via Jim Meyering.
6731
6732 2008-11-12  Jim Meyering  <meyering@redhat.com>
6733
6734         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
6735
6736 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6737
6738         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
6739         instead.
6740
6741 2008-11-12  Bruno Haible  <bruno@clisp.org>
6742
6743         * lib/unicodeio.c: Include unistr.h.
6744         (utf8_wctomb): Remove function.
6745         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
6746
6747 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6748
6749         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
6750         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
6751         <bruno@clisp.org>.
6752         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
6753
6754 2008-11-12  Simon Josefsson  <simon@josefsson.org>
6755
6756         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
6757         * doc/gnulib.texi: Add section for warnings.
6758
6759 2008-11-11  Bruno Haible  <bruno@clisp.org>
6760
6761         * lib/sockets.h: Add a comment.
6762
6763 2008-11-11  Karl Berry  <karl@gnu.org>
6764
6765         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
6766
6767 2008-11-11  Eric Blake  <ebb9@byu.net>
6768
6769         fdl.texi: avoid git symlinks
6770         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
6771
6772 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6773
6774         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
6775
6776 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6777
6778         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
6779         (gl_WARN_ADD): Substitute $2 if literal.
6780
6781 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6782
6783         * m4/warning.m4: Remove.
6784
6785 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
6786
6787         * m4/warnings.m4: Almost complete rewrite. :-)
6788
6789 2008-11-10  Simon Josefsson  <simon@josefsson.org>
6790
6791         * modules/warnings: New module.
6792         * m4/warnings.m4: New file.
6793         * MODULES.html.sh: Mention warnings module.
6794         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
6795         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
6796
6797 2008-11-10  Eric Blake  <ebb9@byu.net>
6798
6799         fdl.texi: make a symlink to the latest version
6800         * doc/standards.texi: Revert today's earlier change.
6801         * doc/fdl-1.2.texi: Rename from old fdl.texi...
6802         * doc/fdl.texi: ...and replace this with a symlink to the newer
6803         fdl-1.3.texi.
6804
6805 2008-11-10  Bruno Haible  <bruno@clisp.org>
6806
6807         * tests/test-select-fd.c (main): Accept the result file name as fourth
6808         argument.
6809         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
6810         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
6811
6812 2008-11-10  Bruno Haible  <bruno@clisp.org>
6813
6814         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
6815         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
6816         as autoconf-substituted macros.
6817         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
6818         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
6819         gl_NETDB_H_DEFAULTS. Set these variables.
6820         * modules/netdb (Makefile.am): Substitute these variables.
6821
6822 2008-11-10  Eric Blake  <ebb9@byu.net>
6823
6824         standards.texi: include correct file for FDL 1.3
6825         * doc/standards.texi (GNU Free Documentation License): Change
6826         include file to pull in FDL 1.3, not 1.2.
6827
6828         fdl.texi: revert accidental change to license
6829         * doc/fdl.texi: This is FDL 1.2, not 1.3.
6830
6831 2008-11-10  Bruno Haible  <bruno@clisp.org>
6832
6833         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
6834         cross-compiling guesses also when the native compile gives no result.
6835
6836 2008-11-10  Bruno Haible  <bruno@clisp.org>
6837
6838         * lib/spawni.c (__spawni): Force variable into the stack.
6839
6840 2008-11-10  Bruno Haible  <bruno@clisp.org>
6841
6842         Add support for Haiku.
6843         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
6844         glibc and BeOS, but also on Haiku.
6845         * lib/fpurge.c (fpurge): Likewise.
6846         * lib/freadable.c (freadable): Likewise.
6847         * lib/freadahead.c (freadahead): Likewise.
6848         * lib/freading.c (freading): Likewise.
6849         * lib/freadptr.c (freadptr): Likewise.
6850         * lib/freadseek.c (freadptrinc): Likewise.
6851         * lib/fseeko.c (rpl_fseeko): Likewise.
6852         * lib/fseterr.c (fseterr): Likewise.
6853         * lib/fwritable.c (fwritable): Likewise.
6854         * lib/fwriting.c (fwriting): Likewise.
6855         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
6856
6857 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
6858
6859         * lib/config.charset: Treat Haiku like BeOS.
6860
6861 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
6862
6863         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
6864         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
6865
6866 2008-11-08  Bruno Haible  <bruno@clisp.org>
6867
6868         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
6869         AC_CACHE_CHECK.
6870
6871 2008-11-08  Bruno Haible  <bruno@clisp.org>
6872
6873         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
6874
6875 2008-11-08  Bruno Haible  <bruno@clisp.org>
6876
6877         * tests/test-select-fd.c: New file.
6878         * tests/test-select-in.sh: New file.
6879         * tests/test-select-out.sh: New file.
6880         * tests/test-select-stdin.c: New file.
6881         * modules/select-tests (Files): Add the new files.
6882         (Depends-on): Add gettimeofday.
6883         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
6884         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
6885         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
6886
6887 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
6888             Bruno Haible  <bruno@clisp.org>
6889
6890         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
6891
6892 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
6893
6894         * build-aux/pmccabe2html: Added support for C++ source files.
6895
6896 2008-11-05  Ben Pfaff  <blp@gnu.org>
6897
6898         Fix lib/close.c build on Windows.
6899         * modules/close (Files): Add lib/w32sock.h.
6900
6901 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
6902
6903         Accept Bison's NEWS format.
6904         * build-aux/announce-gen (print_news_deltas): Tweak
6905         $re_prefix.
6906
6907 2008-11-04  Bruno Haible  <bruno@clisp.org>
6908
6909         * modules/random_r (Maintainer): Add glibc.
6910
6911 2008-11-04  Simon Josefsson  <simon@josefsson.org>
6912
6913         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
6914         by karl@freefriends.org (Karl Berry).
6915         * doc/alloca.texi: Likewise.
6916         * doc/c-ctype.texi: Likewise.
6917         * doc/c-strcase.texi: Likewise.
6918         * doc/c-strcaseeq.texi: Likewise.
6919         * doc/c-strcasestr.texi: Likewise.
6920         * doc/c-strstr.texi: Likewise.
6921         * doc/c-strtod.texi: Likewise.
6922         * doc/c-strtold.texi: Likewise.
6923         * doc/ctime.texi: Likewise.
6924         * doc/error.texi: Likewise.
6925         * doc/fdl.texi: Likewise.
6926         * doc/gcd.texi: Likewise.
6927         * doc/getdate.texi: Likewise.
6928         * doc/gnulib-intro.texi: Likewise.
6929         * doc/gnulib-tool.texi: Likewise.
6930         * doc/gnulib.texi: Likewise.
6931         * doc/inet_ntoa.texi: Likewise.
6932         * doc/maintain.texi: Likewise.
6933         * doc/make-stds.texi: Likewise.
6934         * doc/quote.texi: Likewise.
6935         * doc/regexprops-generic.texi: Likewise.
6936         * doc/standards.texi: Likewise.
6937         * doc/verify.texi: Likewise.
6938         * doc/visibility.texi: Likewise.
6939         * doc/gnulib.texi (GNU Free Documentation License): Include
6940         fdl-1.3.texi instead of fdl.texi.
6941
6942 2008-11-04  Simon Josefsson  <simon@josefsson.org>
6943
6944         * doc/fdl-1.3.texi: New file, from
6945         <http://www.gnu.org/licenses/fdl-1.3.texi>.
6946         * modules/fdl-1.3: Add.
6947         * MODULES.html.sh: Add fdl-1.3.
6948
6949 2008-11-03  Bruno Haible  <bruno@clisp.org>
6950
6951         Make determination of absolute name of header file work with AIX xlc.
6952         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
6953         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
6954         preprocessing.
6955         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
6956         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
6957
6958 2008-11-03  Simon Josefsson  <simon@josefsson.org>
6959
6960         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
6961         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
6962         <ludo@gnu.org>.
6963
6964 2008-11-02  Bruno Haible  <bruno@clisp.org>
6965
6966         Mark 'strpbrk' obsolete.
6967         * modules/strpbrk (Status, Notice): New sections.
6968         * modules/strtok_r (Depends-on): Add strpbrk.
6969
6970 2008-11-02  Bruno Haible  <bruno@clisp.org>
6971
6972         Mark 'strdup' obsolete.
6973         * modules/strdup (Status, Notice): New sections.
6974         * modules/findprog (Depends-on): Add strdup.
6975         * modules/getaddrinfo (Depends-on): Likewise.
6976         * modules/localename (Depends-on): Likewise.
6977         * modules/relocatable-lib (Depends-on): Likewise.
6978         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
6979         * modules/relocatable-prog (Depends-on): Likewise.
6980         * modules/trim (Depends-on): Likewise.
6981         * modules/unictype/gen-ctype (Depends-on): Likewise.
6982         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
6983
6984 2008-11-02  Bruno Haible  <bruno@clisp.org>
6985
6986         Mark 'strcspn' obsolete.
6987         * modules/strcspn (Status, Notice): New sections.
6988
6989 2008-11-02  Bruno Haible  <bruno@clisp.org>
6990
6991         Mark 'rmdir' obsolete.
6992         * modules/rmdir (Status, Notice): New sections.
6993         * modules/clean-temp (Depends-on): Add rmdir.
6994         * modules/openat (Depends-on): Likewise.
6995
6996 2008-11-02  Bruno Haible  <bruno@clisp.org>
6997
6998         Mark 'raise' obsolete.
6999         * modules/raise (Status, Notice): New sections.
7000         (Include): Specify <signal.h>.
7001         * modules/stdio (Depends-on): Add raise.
7002         * modules/write (Depends-on): Likewise.
7003
7004 2008-11-02  Bruno Haible  <bruno@clisp.org>
7005
7006         Mark 'memset' obsolete.
7007         * modules/memset (Status, Notice): New sections.
7008
7009 2008-11-02  Bruno Haible  <bruno@clisp.org>
7010
7011         Mark 'memmove' obsolete.
7012         * modules/memmove (Status, Notice): New sections.
7013         * modules/argp (Depends-on): Add memmove.
7014         * modules/argz (Depends-on): Likewise.
7015         * modules/canonicalize (Depends-on): Likewise.
7016         * modules/canonicalize-lgpl (Depends-on): Likewise.
7017         * modules/fts (Depends-on): Likewise.
7018         * modules/getcwd (Depends-on): Likewise.
7019         * modules/human (Depends-on): Likewise.
7020         * modules/regex (Depends-on): Likewise.
7021         * modules/striconveh (Depends-on): Likewise.
7022         * modules/trim (Depends-on): Likewise.
7023         * modules/unistr/u8-move (Depends-on): Likewise.
7024         * modules/unistr/u16-move (Depends-on): Likewise.
7025         * modules/unistr/u32-move (Depends-on): Likewise.
7026
7027 2008-11-02  Bruno Haible  <bruno@clisp.org>
7028
7029         Mark 'memcpy' obsolete.
7030         * modules/memcpy (Status, Notice): New sections.
7031
7032 2008-11-02  Bruno Haible  <bruno@clisp.org>
7033
7034         Mark 'memcmp' obsolete.
7035         * modules/memcmp (Status, Notice): New sections.
7036         * modules/argmatch (Depends-on): Add memchr.
7037         * modules/backupfile (Depends-on): Likewise.
7038         * modules/c-strcasestr (Depends-on): Likewise.
7039         * modules/crypto/des (Depends-on): Likewise.
7040         * modules/csharpcomp (Depends-on): Likewise.
7041         * modules/fnmatch (Depends-on): Likewise.
7042         * modules/git-merge-changelog (Depends-on): Likewise.
7043         * modules/isnand (Depends-on): Likewise.
7044         * modules/isnand-nolibm (Depends-on): Likewise.
7045         * modules/isnanf (Depends-on): Likewise.
7046         * modules/isnanf-nolibm (Depends-on): Likewise.
7047         * modules/isnanl (Depends-on): Likewise.
7048         * modules/isnanl-nolibm (Depends-on): Likewise.
7049         * modules/mbchar (Depends-on): Likewise.
7050         * modules/memcoll (Depends-on): Likewise.
7051         * modules/quotearg (Depends-on): Likewise.
7052         * modules/regex (Depends-on): Likewise.
7053         * modules/relocatable-prog (Depends-on): Likewise.
7054         * modules/same (Depends-on): Likewise.
7055         * modules/signbit (Depends-on): Likewise.
7056         * modules/strcasestr-simple (Depends-on): Likewise.
7057         * modules/unictype/gen-ctype (Depends-on): Likewise.
7058         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
7059         * modules/uniname/uniname (Depends-on): Likewise.
7060         * modules/unistr/u8-cmp (Depends-on): Likewise.
7061
7062 2008-11-02  Bruno Haible  <bruno@clisp.org>
7063
7064         Mark 'memchr' obsolete.
7065         * modules/memchr (Status, Notice): New sections.
7066         * modules/argp (Depends-on): Add memchr.
7067         * modules/base64 (Depends-on): Likewise.
7068         * modules/c-strcasestr (Depends-on): Likewise.
7069         * modules/chdir-long (Depends-on): Likewise.
7070         * modules/fnmatch (Depends-on): Likewise.
7071         * modules/getsubopt (Depends-on): Likewise.
7072         * modules/git-merge-changelog (Depends-on): Likewise.
7073         * modules/glob (Depends-on): Likewise.
7074         * modules/strcasestr-simple (Depends-on): Likewise.
7075         * modules/strnlen (Depends-on): Likewise.
7076
7077 2008-11-02  Bruno Haible  <bruno@clisp.org>
7078
7079         Mark 'atexit' obsolete.
7080         * modules/atexit (Status, Notice): New sections.
7081         * modules/chdir-long (Depends-on): Add atexit.
7082         * modules/wait-process (Depends-on): Likewise.
7083
7084 2008-11-02  Bruno Haible  <bruno@clisp.org>
7085
7086         * gnulib-tool: New option --with-obsolete.
7087         (func_usage): Document it.
7088         (func_modules_transitive_closure): Drop obsolete dependencies if
7089         incobsolete is not true.
7090         (func_import): Read and save the incobsolete variable to the cache.
7091
7092 2008-11-02  Bruno Haible  <bruno@clisp.org>
7093
7094         * modules/TEMPLATE-EXTENDED: New field 'Status'.
7095         * gnulib-tool: New option --extract-status.
7096         (func_usage): Document it.
7097         (sed_extract_prog): Recognize it.
7098         (func_get_status): New function.
7099
7100 2008-10-30  Simon Josefsson  <simon@josefsson.org>
7101
7102         * modules/sockets (License): Change from LGPL to LGPLv2+.
7103
7104 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7105
7106         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
7107
7108 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7109
7110         * MODULES.html.sh (Support for systems lacking POSIX:2001):
7111         Mention times and sys_times.
7112         * modules/sys_times, modules/sys_times-tests: New modules.
7113         * modules/times, modules/times-tests: Likewise
7114         * m4/sys_times_h.m4: New file.
7115         * lib/sys_times.in.h: Likewise
7116         * lib/times.c: Likewise.
7117         * tests/test-sys_times.c: Likewise.
7118         * tests/test-times.c: Likewise.
7119         * doc/posix-headers/sys_times.texi: Update.
7120         * doc/posix-functions/times.texi: Update.
7121
7122 2008-10-28  Jim Meyering  <meyering@redhat.com>
7123
7124         * modules/tempname (Depends-on): Add lstat.
7125
7126         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
7127
7128 2008-10-28  Simon Josefsson  <simon@josefsson.org>
7129
7130         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
7131         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
7132         using idiom used elsewhere in gnulib.
7133
7134 2008-10-27  Jim Meyering  <meyering@redhat.com>
7135
7136         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
7137
7138 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7139
7140         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
7141         TESTS_ENVIRONMENT, for shell scripts that needs to call built
7142         programs.
7143         * tests/test-argp-2.sh: Use $EXEEXT when needed.
7144
7145 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7146
7147         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
7148
7149 2008-10-27  Bruno Haible  <bruno@clisp.org>
7150
7151         * tests/test-lstat.c: Include <stdio.h>.
7152
7153 2008-10-27  Simon Josefsson  <simon@josefsson.org>
7154
7155         * modules/lstat-tests: New module.
7156         * tests/test-lstat.c: New file.
7157
7158 2008-10-26  Jim Meyering  <meyering@redhat.com>
7159
7160         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
7161
7162 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7163             Bruno Haible  <bruno@clisp.org>
7164
7165         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
7166         * modules/configmake (Include): Add a note that the include must come
7167         after all system headers.
7168         * lib/javaversion.c: Include configmake.h after all other includes.
7169
7170 2008-10-26  Bruno Haible  <bruno@clisp.org>
7171
7172         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
7173         HAVE_STRUCT_RANDOM_DATA to 1.
7174         (gl_STDLIB_H): Simplify.
7175
7176 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7177
7178         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
7179         substitute HAVE_STRUCT_RANDOM_DATA.
7180         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
7181         random_data.
7182         * modules/stdlib (Makefile.am): Substitute
7183         HAVE_STRUCT_RANDOM_DATA.
7184
7185 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7186
7187         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
7188         * doc/gnulib-intro.texi (Copyright): Likewise.
7189
7190 2008-10-26  Simon Josefsson  <simon@josefsson.org>
7191
7192         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
7193         findings.
7194
7195 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
7196             Bruno Haible  <bruno@clisp.org>
7197
7198         * lib/unistd.in.h: Include <winsock2.h>.
7199         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
7200         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
7201         Provide dummy declarations.
7202         (gethostname): Override.
7203         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
7204         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
7205         gl_PREREQ_SYS_H_WINSOCK2.
7206         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
7207         * doc/posix-functions/gethostname.texi: More details.
7208
7209 2008-10-25  Bruno Haible  <bruno@clisp.org>
7210
7211         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
7212         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
7213         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
7214
7215         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
7216         here ...
7217         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
7218         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
7219         gl_UNISTD_H_DEFAULTS.
7220
7221 2008-10-25  Eric Blake  <ebb9@byu.net>
7222
7223         signbit: avoid spurious compiler failure
7224         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
7225         declarations inside function.
7226
7227 2008-10-24  Simon Josefsson  <simon@josefsson.org>
7228             Bruno Haible  <bruno@clisp.org>
7229
7230         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
7231         * modules/random_r (Depends-on): Add stdint.
7232
7233 2008-10-24  Bruno Haible  <bruno@clisp.org>
7234
7235         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
7236         Eggert.
7237         * modules/strerror (License): Likewise.
7238
7239 2008-10-24  Jim Meyering  <meyering@redhat.com>
7240
7241         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
7242         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
7243
7244 2008-10-24  Eric Blake  <ebb9@byu.net>
7245
7246         getgroups: fix compilation when getgroups is available
7247         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
7248         but with <config.h> override of getgroups disabled.
7249
7250 2008-10-24  Simon Josefsson  <simon@josefsson.org>
7251
7252         * doc/gnulib.texi (Header files): Add note about C++ problems.
7253         Explained by Bruno Haible <bruno@clisp.org>.
7254
7255 2008-10-23  Bruno Haible  <bruno@clisp.org>
7256
7257         Define a dummy SA_NODEFER macro on Interix.
7258         * lib/signal.in.h (SA_NODEFER): Define fallback.
7259         Reported by Aleksey Cheusov <cheusov@tut.by> via
7260         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
7261
7262 2008-10-23  Bruno Haible  <bruno@clisp.org>
7263
7264         * modules/freadahead (License): Change to LGPLv2+.
7265         Suggested by Simon Josefsson.
7266
7267 2008-10-23  Jim Meyering  <meyering@redhat.com>
7268
7269         random_r: new module
7270         * modules/random_r: New file.
7271         * m4/random_r.m4: New file.
7272         * lib/random_r.c: New file, from glibc.
7273         * modules/random_r-tests: New file.
7274         * tests/test-random_r.c: New file.
7275         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
7276          Declare.
7277         (RAND_MAX): Define.
7278         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
7279         * modules/stdlib: Substitute them, too.
7280         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
7281         * doc/glibc-functions/initstate_r.texi: Mention the new module.
7282         * doc/glibc-functions/random_r.texi: Likewise.
7283         * doc/glibc-functions/setstate_r.texi: Likewise.
7284         * doc/glibc-functions/srandom_r.texi: Likewise.
7285         * config/srclist.txt: Mention it.
7286
7287 2008-10-23  David Lutterkort  <lutter@redhat.com>
7288
7289         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
7290         link requirement
7291
7292 2008-10-23  Jim Meyering  <meyering@redhat.com>
7293
7294         selinux-h: mark parameters of stub functions as intentionally unused
7295         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
7296         * lib/se-context.in.h: Likewise.
7297
7298 2008-10-22  Simon Josefsson  <simon@josefsson.org>
7299
7300         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
7301
7302 2008-10-22  Simon Josefsson  <simon@josefsson.org>
7303
7304         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
7305
7306 2008-10-22  Eric Blake  <ebb9@byu.net>
7307
7308         glthread/thread: avoid compiler warning
7309         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
7310         Add unreachable abort to silence compiler.
7311
7312 2008-10-22  Eric Blake  <ebb9@byu.net>
7313
7314         netdb: also supply struct addrinfo for cygwin 1.5.x
7315         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
7316         older cygwin.
7317         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
7318         cygwin.
7319         * doc/posix-headers/netdb.texi (netdb.h): Document this.
7320
7321 2008-10-22  Bruno Haible  <bruno@clisp.org>
7322
7323         * users.txt: Update entry about pspp.
7324
7325 2008-10-21  Bruno Haible  <bruno@clisp.org>
7326
7327         Simplification.
7328         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
7329         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
7330
7331         Simplification.
7332         * lib/ioctl.c (ioctl): Don't undefine.
7333         * lib/socket.c (socket): Don't undefine.
7334
7335         Remove unused module indicator macros.
7336         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
7337         GNULIB_$1 as a C macro.
7338
7339         * doc/posix-functions/close.texi: Undo last change.
7340         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
7341         Windows platforms.
7342
7343 2008-10-21  Bruno Haible  <bruno@clisp.org>
7344
7345         Add gethostname() declaration to <unistd.h>.
7346         * lib/unistd.in.h (gethostname): New declaration.
7347         * lib/gethostname.c: Include <unistd.h>.
7348         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
7349         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
7350         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
7351         and HAVE_GETHOSTNAME.
7352         * modules/gethostname (Depends-on): Add unistd.
7353         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7354         (Include): Specify <unistd.h>.
7355         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
7356         HAVE_GETHOSTNAME.
7357         * tests/test-gethostname.c: Include <unistd.h> first.
7358
7359 2008-10-21  Bruno Haible  <bruno@clisp.org>
7360
7361         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
7362         * modules/select-tests (Depends-on): Likewise.
7363         Reported by Simon Josefsson.
7364
7365 2008-10-21  Simon Josefsson  <simon@josefsson.org>
7366
7367         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
7368         * lib/accept.c: New file, based on winsock.c.
7369         * lib/bind.c: New file, based on winsock.c.
7370         * lib/connect.c: New file, based on winsock.c.
7371         * lib/getpeername.c: New file, based on winsock.c.
7372         * lib/getsockname.c: New file, based on winsock.c.
7373         * lib/getsockopt.c: New file, based on winsock.c.
7374         * lib/ioctl.c: New file, based on winsock.c.
7375         * lib/listen.c: New file, based on winsock.c.
7376         * lib/recv.c: New file, based on winsock.c.
7377         * lib/recvfrom.c: New file, based on winsock.c.
7378         * lib/send.c: New file, based on winsock.c.
7379         * lib/sendto.c: New file, based on winsock.c.
7380         * lib/setsockopt.c: New file, based on winsock.c.
7381         * lib/shutdown.c: New file, based on winsock.c.
7382         * lib/socket.c: New file, based on winsock.c.
7383         * lib/w32sock.h: New file, based on winsock.c.
7384         * lib/winsock.c: Remove file.
7385         * modules/accept: Likewise.
7386         * modules/bind: Likewise.
7387         * modules/connect: Likewise.
7388         * modules/getpeername: Likewise.
7389         * modules/getsockname: Likewise.
7390         * modules/getsockopt: Likewise.
7391         * modules/ioctl: Likewise.
7392         * modules/listen: Likewise.
7393         * modules/recv: Likewise.
7394         * modules/recvfrom: Likewise.
7395         * modules/send: Likewise.
7396         * modules/sendto: Likewise.
7397         * modules/setsockopt: Likewise.
7398         * modules/shutdown: Likewise.
7399         * modules/socket: Use socket.c instead of winsock.c.
7400         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
7401         * doc/posix-functions/accept.texi: Doc fix.
7402         * doc/posix-functions/bind.texi: Doc fix.
7403         * doc/posix-functions/close.texi: Doc fix.
7404         * doc/posix-functions/connect.texi: Doc fix.
7405         * doc/posix-functions/getpeername.texi: Doc fix.
7406         * doc/posix-functions/getsockname.texi: Doc fix.
7407         * doc/posix-functions/getsockopt.texi: Doc fix.
7408         * doc/posix-functions/ioctl.texi: Doc fix.
7409         * doc/posix-functions/listen.texi: Doc fix.
7410         * doc/posix-functions/recv.texi: Doc fix.
7411         * doc/posix-functions/recvfrom.texi: Doc fix.
7412         * doc/posix-functions/send.texi: Doc fix.
7413         * doc/posix-functions/sendto.texi: Doc fix.
7414         * doc/posix-functions/setsockopt.texi: Doc fix.
7415         * doc/posix-functions/shutdown.texi: Doc fix.
7416         * doc/posix-functions/socket.texi: Doc fix.
7417
7418 2008-10-20  Bruno Haible  <bruno@clisp.org>
7419
7420         Take into account the role of SIGABRT_COMPAT on Windows 2008.
7421         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
7422         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
7423         as an alias for SIGABRT.
7424         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
7425         (sigaction): Map it to SIGABRT.
7426         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
7427
7428 2008-10-20  Bruno Haible  <bruno@clisp.org>
7429
7430         * lib/fts.c: Don't include lstat.h.
7431         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
7432
7433         Move the lstat() declaration to <sys/stat.h>.
7434         * lib/lstat.h: Remove file.
7435         * lib/sys_stat.in.h: Add special invocation convention.
7436         (lstat): New declaration.
7437         * lib/lstat.c (orig_lstat): New function.
7438         (rpl_lstat): Use orig_lstat instead of lstat.
7439         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
7440         AC_C_INLINE. Set REPLACE_LSTAT.
7441         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
7442         and REPLACE_LSTAT.
7443         * modules/lstat (Files): Remove lib/lstat.h.
7444         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
7445         (Include): Specify <sys/stat.h> instead of lstat.h.
7446         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
7447         REPLACE_LSTAT.
7448         * NEWS: Mention the change.
7449
7450 2008-10-20  Bruno Haible  <bruno@clisp.org>
7451
7452         * modules/posix_spawn-tests: New file.
7453         * tests/test-posix_spawn3.c: New file.
7454
7455 2008-10-20  Bruno Haible  <bruno@clisp.org>
7456
7457         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
7458         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
7459         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
7460         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
7461         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
7462
7463 2008-10-20  Bruno Haible  <bruno@clisp.org>
7464
7465         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
7466         of posix_spawn on AIX 5.3.
7467
7468 2008-10-20  Bruno Haible  <bruno@clisp.org>
7469
7470         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
7471
7472 2008-10-20  Bruno Haible  <bruno@clisp.org>
7473
7474         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
7475         of AC_LANG_PROGRAM.
7476
7477 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7478
7479         * lib/netdb.in.h: Don't define GNU specific constants until they
7480         are supported or needed.  Reported by Bruno Haible
7481         <bruno@clisp.org>.
7482
7483 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7484
7485         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
7486
7487 2008-10-20  Simon Josefsson  <simon@josefsson.org>
7488
7489         * lib/getaddrinfo.h: Remove file.
7490         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
7491         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
7492         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
7493         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
7494         * modules/netdb: Substitute GNULIB_GETADDRINFO.
7495         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
7496         * tests/test-getaddrinfo.c: Likewise.
7497         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
7498         * NEWS: Mention change.
7499
7500 2008-10-19  Bruno Haible  <bruno@clisp.org>
7501
7502         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
7503
7504 2008-10-19  Bruno Haible  <bruno@clisp.org>
7505
7506         * lib/wait-process.c: Include simply <sys/wait.h>.
7507         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
7508         WIFSTOPPED): Remove fallback definitions.
7509         * modules/wait-process (Depends-on): Add sys_wait.
7510
7511         New module 'sys_wait'.
7512         * modules/sys_wait: New file.
7513         * lib/sys_wait.in.h: New file, partially copied from
7514         lib/wait-process.c.
7515         * m4/sys_wait_h.m4: New file.
7516         * doc/posix-headers/sys_wait.texi: Mention the new module.
7517
7518 2008-10-19  Bruno Haible  <bruno@clisp.org>
7519
7520         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
7521
7522 2008-10-19  Bruno Haible  <bruno@clisp.org>
7523
7524         Assume that waitpid() fills an 'int' status, not a 'union wait'.
7525         * lib/wait-process.c (WAIT_T): Remove type.
7526         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
7527         (wait_subprocess): Update.
7528
7529 2008-10-19  Bruno Haible  <bruno@clisp.org>
7530
7531         New module 'atoll'.
7532         * modules/atoll: New file.
7533         * lib/stdlib.in.h (atoll): New declaration.
7534         * lib/atoll.c: New file, from glibc with modifications.
7535         * m4/atoll.m4: New file.
7536         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
7537         HAVE_ATOLL.
7538         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
7539         * doc/posix-functions/atoll.texi: Mention the new module.
7540
7541 2008-10-19  Bruno Haible  <bruno@clisp.org>
7542
7543         Add strtoull() declaration to <stdlib.h>.
7544         * lib/stdlib.in.h (strtoull): New declaration.
7545         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
7546         Set HAVE_STRTOULL.
7547         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
7548         HAVE_STRTOULL.
7549         * modules/strtoull (Depends-on): Add stdlib.
7550         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7551         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
7552         HAVE_STRTOULL.
7553
7554 2008-10-19  Bruno Haible  <bruno@clisp.org>
7555
7556         Add strtoll() declaration to <stdlib.h>.
7557         * lib/stdlib.in.h (strtoll): New declaration.
7558         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
7559         Set HAVE_STRTOLL.
7560         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
7561         HAVE_STRTOLL.
7562         * modules/strtoll (Depends-on): Add stdlib.
7563         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7564         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
7565
7566 2008-10-19  Bruno Haible  <bruno@clisp.org>
7567
7568         * modules/bcopy (Depends-on): Add strings.
7569         (Include): Specify <strings.h>.
7570
7571 2008-10-19  Bruno Haible  <bruno@clisp.org>
7572
7573         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
7574
7575 2008-10-19  Bruno Haible  <bruno@clisp.org>
7576
7577         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
7578         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
7579         mingw.
7580
7581 2008-10-19  Bruno Haible  <bruno@clisp.org>
7582
7583         * lib/atanl.c: Don't include isnanl.h.
7584         * lib/cosl.c: Likewise.
7585         * lib/ldexpl.c: Likewise.
7586         * lib/logl.c: Likewise.
7587         * lib/sinl.c: Likewise.
7588         * lib/sqrtl.c: Likewise.
7589         * lib/tanl.c: Likewise.
7590
7591         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
7592         * lib/isnanf.h: Remove file.
7593         * lib/isnand.h: Remove file.
7594         * lib/isnanl.h: Remove file.
7595         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
7596         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
7597         macros.
7598         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
7599         HAVE_ISNANF, don't define it as a C macro.
7600         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
7601         HAVE_ISNAND, don't define it as a C macro.
7602         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
7603         HAVE_ISNANL, don't define it as a C macro.
7604         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
7605         HAVE_ISNAN[FDL].
7606         * modules/isnanf (Files): Remove lib/isnanf.h.
7607         (Depends-on): Add math.
7608         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7609         (Include): Specify <math.h> instead of isnanf.h.
7610         * modules/isnand (Files): Remove lib/isnand.h.
7611         (Depends-on): Add math.
7612         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7613         (Include): Specify <math.h> instead of isnand.h.
7614         * modules/isnanl (Files): Remove lib/isnanl.h.
7615         (Depends-on): Add math.
7616         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
7617         (Include): Specify <math.h> instead of isnanl.h.
7618         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
7619         HAVE_ISNAN[FDL].
7620         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
7621         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
7622         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
7623         * NEWS: Mention the change.
7624
7625 2008-10-18  Bruno Haible  <bruno@clisp.org>
7626
7627         Add getusershell(), setusershell(), endusershell() declarations to
7628         <unistd.h>.
7629         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
7630         declarations.
7631         * lib/getusershell.c: Include unistd.h.
7632         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
7633         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
7634         HAVE_GETUSERSHELL.
7635         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
7636         and HAVE_GETUSERSHELL.
7637         * modules/getusershell (Depends-on): Add unistd, extensions.
7638         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7639         (Include): Specify <unistd.h>.
7640         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
7641         HAVE_GETUSERSHELL.
7642
7643 2008-10-18  Bruno Haible  <bruno@clisp.org>
7644
7645         Add a getloadavg() declaration to <stdlib.h>.
7646         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
7647         getloadavg declaration.
7648         (getloadavg): New declaration.
7649         * lib/getloadavg.c: Include <stdlib.h> first.
7650         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
7651         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
7652         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
7653         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
7654         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
7655         * modules/getloadavg (Depends-on): Add stdlib, extensions.
7656         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
7657         (Include): Specify <stdlib.h>.
7658         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
7659         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
7660
7661 2008-10-18  Bruno Haible  <bruno@clisp.org>
7662
7663         * lib/dirchownmod.c: Don't include lchmod.h.
7664
7665         Move the lchmod() declaration to <sys/stat.h>.
7666         * lib/lchmod.h: Remove file.
7667         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
7668         (lchmod): New declaration, moved here from lib/lchown.h.
7669         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
7670         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
7671         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
7672         and HAVE_LCHMOD.
7673         * modules/lchmod (Files): Remove lib/lchmod.h.
7674         (Depends-on): Add sys_stat, extensions.
7675         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
7676         (Include): Specify <sys/stat.h> instead of lchmod.h.
7677         * modules/sys_stat (Depends-on): Add link-warning.
7678         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
7679         definition of GL_LINK_WARNING.
7680         * NEWS: Mention the change.
7681
7682 2008-10-18  Bruno Haible  <bruno@clisp.org>
7683
7684         * lib/fchdir.c: Don't include dirfd.h.
7685         * lib/fts.c: Likewise.
7686         * lib/getcwd.c: Likewise.
7687         * lib/glob.c: Likewise.
7688
7689         Move the dirfd() declaration to <dirent.h>.
7690         * lib/dirfd.h: Remove file.
7691         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
7692         (dirfd): New declaration.
7693         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
7694         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
7695         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
7696         HAVE_DECL_DIRFD.
7697         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
7698         HAVE_DECL_DIRFD.
7699         * modules/dirfd (Files): Remove lib/dirfd.h.
7700         (Depends-on): Add dirent, extensions.
7701         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
7702         (Include): Specify <dirent.h> instead of dirfd.h.
7703         * modules/dirent (Depends-on): Add link-warning.
7704         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
7705         definition of GL_LINK_WARNING.
7706         * NEWS: Mention the change.
7707
7708 2008-10-18  Bruno Haible  <bruno@clisp.org>
7709
7710         Move the euidaccess() declaration to <unistd.h>.
7711         * lib/euidaccess.h: Remove file.
7712         * lib/unistd.in.h (euidaccess): New declaration.
7713         * lib/euidaccess.c: Don't include euidaccess.h.
7714         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
7715         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
7716         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
7717         and HAVE_EUIDACCESS.
7718         * modules/euidaccess (Files): Remove lib/euidaccess.h.
7719         (Depends-on): Add unistd.
7720         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7721         (Include): Specify <unistd.h> instead of euidaccess.h.
7722         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
7723         HAVE_EUIDACCESS.
7724         * NEWS: Mention the change.
7725
7726 2008-10-18  Bruno Haible  <bruno@clisp.org>
7727
7728         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
7729
7730         Move the getdomainname() declaration to <unistd.h>.
7731         * lib/getdomainname.h: Remove file.
7732         * lib/unistd.in.h (getdomainname): New declaration.
7733         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
7734         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
7735         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
7736         HAVE_GETDOMAINNAME.
7737         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
7738         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
7739         * modules/getdomainname (Files): Remove lib/getdomainname.h.
7740         (Depends-on): Add unistd, extensions.
7741         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
7742         (Includes): Specify <unistd.h> instead of getdomainname.h.
7743         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
7744         HAVE_GETDOMAINNAME.
7745         * NEWS: Mention the change.
7746
7747 2008-10-18  Bruno Haible  <bruno@clisp.org>
7748
7749         * modules/dirent: New file.
7750         * m4/dirent_h.m4: New file.
7751         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
7752         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
7753         * modules/fchdir (Files): Remove lib/dirent.in.h.
7754         (Depends-on): Add dirent.
7755         (Makefile.am): Move rules to modules/dirent.
7756         * doc/posix-headers/dirent.texi: Mention the new module.
7757
7758 2008-10-18  Bruno Haible  <bruno@clisp.org>
7759
7760         Avoid -Wunused-parameter warnings in public gnulib header files.
7761         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
7762         macro.
7763         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
7764
7765 2008-10-18  Bruno Haible  <bruno@clisp.org>
7766
7767         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
7768         * doc/glibc-functions/error.texi: Mention the module 'error'.
7769         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
7770         * doc/glibc-functions/getdomainname.texi: Mention the module
7771         'getdomainname'.
7772         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
7773         * doc/glibc-functions/getpagesize.texi: Mention the module
7774         'getpagesize'.
7775         * doc/glibc-functions/getusershell.texi: Mention the module
7776         'getusershell'.
7777         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
7778         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
7779         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
7780         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
7781         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
7782         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
7783         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
7784         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
7785         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
7786         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
7787         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
7788         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
7789         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
7790         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
7791
7792 2008-10-17  Bruno Haible  <bruno@clisp.org>
7793
7794         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
7795         HP-UX and IRIX, use -0.0L.
7796         * tests/test-ceill.c (minus_zero): Likewise.
7797         * tests/test-floorl.c (minus_zero): Likewise.
7798         * tests/test-frexpl.c (minus_zero): Likewise.
7799         * tests/test-isnan.c (minus_zerol): Likewise.
7800         * tests/test-isnanl.h (minus_zero): Likewise.
7801         * tests/test-ldexpl.c (minus_zero): Likewise.
7802         * tests/test-roundl.c (minus_zero): Likewise.
7803         * tests/test-signbit.c (minus_zerol): Likewise.
7804         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
7805         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
7806         * tests/test-truncl.c (minus_zero): Likewise.
7807         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
7808         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
7809         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
7810         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
7811
7812 2008-10-17  Bruno Haible  <bruno@clisp.org>
7813
7814         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
7815         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
7816         that it gets activated only for gcc >= 3.0.
7817         * lib/dirent.in.h: Likewise.
7818         * lib/errno.in.h: Likewise.
7819         * lib/fcntl.in.h: Likewise.
7820         * lib/float.in.h: Likewise.
7821         * lib/iconv.in.h: Likewise.
7822         * lib/inttypes.in.h: Likewise.
7823         * lib/locale.in.h: Likewise.
7824         * lib/math.in.h: Likewise.
7825         * lib/netdb.in.h: Likewise.
7826         * lib/netinet_in.in.h: Likewise.
7827         * lib/search.in.h: Likewise.
7828         * lib/signal.in.h: Likewise.
7829         * lib/spawn.in.h: Likewise.
7830         * lib/stdarg.in.h: Likewise.
7831         * lib/stdint.in.h: Likewise.
7832         * lib/stdio.in.h: Likewise.
7833         * lib/stdlib.in.h: Likewise.
7834         * lib/string.in.h: Likewise.
7835         * lib/strings.in.h: Likewise.
7836         * lib/sys_file.in.h: Likewise.
7837         * lib/sys_ioctl.in.h: Likewise.
7838         * lib/sys_select.in.h: Likewise.
7839         * lib/sys_socket.in.h: Likewise.
7840         * lib/sys_stat.in.h: Likewise.
7841         * lib/sys_time.in.h: Likewise.
7842         * lib/sysexits.in.h: Likewise.
7843         * lib/time.in.h: Likewise.
7844         * lib/unistd.in.h: Likewise.
7845         * lib/wchar.in.h: Likewise.
7846         * lib/wctype.in.h: Likewise.
7847         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
7848
7849 2008-10-17  Jim Meyering  <meyering@redhat.com>
7850
7851         ignore-value: don't depend on inline module
7852         * modules/ignore-value (Depends-on): Remove 'inline'.
7853         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
7854         Suggestion from Bruno Haible.
7855
7856 2008-10-17  Bruno Haible  <bruno@clisp.org>
7857
7858         New implementation of condition variables for Win32.
7859         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
7860         (gl_linked_waitqueue_t): New type.
7861         (gl_cond_t): Use it.
7862         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
7863         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
7864         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
7865         (glthread_cond_init_func, glthread_cond_wait_func,
7866         glthread_cond_timedwait_func, glthread_cond_signal_func,
7867         glthread_cond_broadcast_func, glthread_cond_destroy_func):
7868         Reimplemented on the basis of gl_linked_waitqueue_t.
7869         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
7870         gl_waitqueue_t.
7871         (gl_rwlock_t): Update.
7872         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
7873
7874 2008-10-17  Simon Josefsson  <simon@josefsson.org>
7875
7876         * modules/recvfrom (Depends-on): Add dependency on getpeername.
7877         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
7878
7879 2008-10-17  Jim Meyering  <meyering@redhat.com>
7880
7881         ignore-value: new module
7882         * modules/ignore-value: New file.
7883         * lib/ignore-value.h: New file.
7884         * MODULES.html.sh (Compiler warning management): New section,
7885         just for this module.  More to come.
7886
7887 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
7888
7889         open-safer.c: avoid 'signed and unsigned in conditional...' warning
7890         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
7891         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
7892
7893 2008-10-16  Jim Meyering  <meyering@redhat.com>
7894
7895         openat-die.c: avoid 'no previous prototype' warning
7896         * lib/openat-die.c: Include "openat.h".
7897         Reported by Reuben Thomas <rrt@sc3d.org>.
7898
7899 2008-10-16  Simon Josefsson  <simon@josefsson.org>
7900
7901         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
7902         * lib/netdb.in.h: Fix typo.
7903         Reported by Bruno Haible  <bruno@clisp.org>
7904
7905         * lib/netdb.in.h: Include sys/socket.h for platforms without
7906         netdb.h, to get structures like hostent on MinGW.
7907         * modules/netdb (Depends-on): Add sys_socket.
7908
7909 2008-10-15  Simon Josefsson  <simon@josefsson.org>
7910
7911         * modules/netdb, modules/netdb-tests: New file.
7912         * m4/netdb_h.m4: New file.
7913         * lib/netdb.in.h: Add, currently just an empty file pending
7914         definitions.
7915         * tests/test-netdb.c: New file.
7916         * doc/posix-headers/netdb.texi: Mention that we replace it if
7917         needed.
7918         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
7919         netdb.
7920
7921 2008-10-15  Simon Josefsson  <simon@josefsson.org>
7922
7923         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
7924         with code.
7925
7926 2008-10-13  Bruno Haible  <bruno@clisp.org>
7927
7928         * lib/glthread/cond.c (glthread_cond_wait_func,
7929         glthread_cond_timedwait_func): Add a comment.
7930
7931 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
7932
7933         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
7934         * tests/test-select.c: Likewise,
7935
7936 2008-10-13  Bruno Haible  <bruno@clisp.org>
7937
7938         * lib/glthread/cond.c (glthread_cond_wait_func,
7939         glthread_cond_timedwait_func): Fix variable name.
7940         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
7941
7942 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
7943
7944         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
7945         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
7946         struct sockaddr.sa_len.
7947         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
7948
7949 2008-10-13  Simon Josefsson  <simon@josefsson.org>
7950
7951         * build-aux/pmccabe2html: Add css and css_url parameters.
7952
7953 2008-10-12  Bruno Haible  <bruno@clisp.org>
7954
7955         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
7956         calling aclx_get.
7957         Reported by Rainer Tammer <tammer@tammer.net>.
7958
7959 2008-10-12  Bruno Haible  <bruno@clisp.org>
7960
7961         Use msvcrt aware primitives for creation/termination of Win32 threads.
7962         * lib/glthread/thread.c: Include <process.h>.
7963         (glthread_create_func): Use _beginthreadex instead of CreateThread.
7964         (wrapper_func): Update signature.
7965         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
7966
7967 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
7968             Bruno Haible  <bruno@clisp.org>
7969
7970         Provide a Win32 implementation of the 'cond' module.
7971         * lib/glthread/cond.h [USE_WIN32]: New implementation.
7972         * lib/glthread/cond.c (glthread_cond_init_func,
7973         glthread_cond_wait_func, glthread_cond_timedwait_func,
7974         glthread_cond_signal_func, glthread_cond_broadcast_func,
7975         glthread_cond_destroy_func) [USE_WIN32]: New functions.
7976         * modules/cond (Dependencies): Add gettimeofday.
7977
7978 2008-10-11  Bruno Haible  <bruno@clisp.org>
7979
7980         Make sleep work on older versions of mingw.
7981         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
7982         only whether it exists.
7983         * doc/posix-functions/sleep.texi: Mention the problem with older
7984         versions of mingw.
7985
7986 2008-10-11  Bruno Haible  <bruno@clisp.org>
7987
7988         New module 'shutdown'.
7989         * modules/shutdown: New file.
7990         * lib/sys_socket.in.h (shutdown): New declaration.
7991         * lib/winsock.c (shutdown): New function.
7992         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
7993         GNULIB_SHUTDOWN.
7994         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
7995         * doc/posix-functions/shutdown.texi: Document the new module.
7996
7997 2008-10-11  Jim Meyering  <meyering@redhat.com>
7998
7999         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
8000
8001 2008-10-11  Bruno Haible  <bruno@clisp.org>
8002
8003         New module 'fclose'.
8004         * modules/fclose: New file.
8005         * lib/stdio.in.h (fclose): New declaration.
8006         * lib/fclose.c: New file.
8007         * m4/fclose.m4: New file.
8008         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
8009         REPLACE_FCLOSE.
8010         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
8011         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
8012         REPLACE_FCLOSE.
8013         * modules/close (Depends-on): fclose.
8014         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
8015
8016 2008-10-11  Bruno Haible  <bruno@clisp.org>
8017
8018         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
8019         set errno and don't call _close.
8020
8021 2008-10-10  Bruno Haible  <bruno@clisp.org>
8022
8023         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
8024         ACL, not afterwards. Fixes test failure on Cygwin.
8025
8026 2008-10-09  Ben Pfaff  <blp@gnu.org>
8027
8028         * build-aux/announce-gen: Fix gnulib version related part of usage
8029         message.  Die with a useful error message if no tarballs are
8030         found.
8031
8032 2008-10-10  Jim Meyering  <meyering@redhat.com>
8033
8034         bootstrap: use git's --depth=N option only if it's supported
8035         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
8036         recognize the --depth option.  Reported by Pádraig Brady.
8037
8038 2008-10-09  Bruno Haible  <bruno@clisp.org>
8039
8040         New module 'ioctl'.
8041         * modules/ioctl: New file.
8042         * lib/sys_socket.in.h (ioctl): Remove declaration.
8043         * lib/winsock.c: Include <sys/ioctl.h>.
8044         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
8045         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
8046         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
8047         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
8048         * doc/posix-functions/ioctl.texi: Mention the new module.
8049
8050 2008-10-09  Bruno Haible  <bruno@clisp.org>
8051
8052         New module 'sys_ioctl'.
8053         * lib/sys_ioctl.in.h: New file.
8054         * m4/sys_ioctl_h.m4: New file.
8055         * modules/sys_ioctl: New file.
8056         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
8057
8058 2008-10-09  Bruno Haible  <bruno@clisp.org>
8059
8060         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
8061         * lib/winsock.c: Include <stdarg.h>.
8062         (rpl_ioctl): Change to second argument 'int' and then varargs.
8063
8064 2008-10-09  Bruno Haible  <bruno@clisp.org>
8065
8066         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
8067         when the sys_socket module is present and the system has <winsock2.h>.
8068
8069 2008-10-09  Bruno Haible  <bruno@clisp.org>
8070
8071         * doc/posix-functions/close.texi: Mention module 'close' instead of
8072         module 'sys_socket'.
8073
8074 2008-10-09  Bruno Haible  <bruno@clisp.org>
8075
8076         * doc/glibc-headers/sys_ioctl.texi: New file.
8077         * doc/gnulib.texi: Include it.
8078
8079 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8080             Bruno Haible  <bruno@clisp.org>
8081
8082         Combine the two replacements of 'close'.
8083         * lib/sys_socket.in.h (close): Define to a reminder to include
8084         <unistd.h>.
8085         (_gl_close_fd_maybe_socket): New declaration.
8086         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
8087         * lib/winsock.c (close): Remove undefinition.
8088         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
8089         needed for the gnulib module 'close'.
8090         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
8091         define to an error symbol or to a warning, if suitable.
8092         * lib/close.c: Include <sys/socket.h>.
8093         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
8094         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
8095         UNISTD_H_HAVE_WINSOCK2_H.
8096         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
8097         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8098         UNISTD_H_HAVE_WINSOCK2_H.
8099         * modules/sys_socket (Files): Add m4/unistd_h.m4.
8100         (configure.ac): Set a module indicator.
8101         (Makefile.am): Substitute GNULIB_CLOSE.
8102         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
8103         * modules/poll-tests (Depends-on): Add close.
8104         * modules/select-tests (Depends-on): Likewise.
8105
8106 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8107             Bruno Haible  <bruno@clisp.org>
8108
8109         New module 'close'.
8110         * modules/close: New file.
8111         * lib/unistd.in.h (close): Move declaration out of the
8112         FCHDIR_REPLACEMENT scope.
8113         (_gl_unregister_fd): New declaration.
8114         * lib/close.c: New file.
8115         * lib/fchdir.c (rpl_close): Remove function.
8116         * m4/close.m4: New file.
8117         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
8118         close.
8119         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
8120         REPLACE_CLOSE.
8121         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
8122         REPLACE_CLOSE.
8123         * modules/fchdir (Depends-on): Add close.
8124
8125 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8126             Bruno Haible  <bruno@clisp.org>
8127
8128         * lib/fcntl.in.h (open): Simplify conditionals.
8129         (_gl_register_fd): New declaration.
8130         * lib/fchdir.c (rpl_open): Remove function.
8131         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
8132         also.
8133         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
8134         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
8135         open.
8136
8137 2008-10-09  Jim Meyering  <meyering@redhat.com>
8138
8139         GNUmakefile: use the more name-space-friendly "_version"
8140         * top/GNUmakefile (_dummy): Update.
8141         (_version): Rename from "version".
8142
8143 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8144             Bruno Haible  <bruno@clisp.org>
8145
8146         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
8147         rpl_close.
8148         (_gl_register_fd): New function, extracted from rpl_open.
8149         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
8150         (rpl_open, rpl_opendir): Use _gl_register_fd.
8151
8152 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
8153
8154         Fix organization of 'open' replacement.
8155         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
8156         (gl_FUNC_OPEN): Use it.
8157         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
8158
8159 2008-10-08  Bruno Haible  <bruno@clisp.org>
8160
8161         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
8162
8163 2008-10-08  Simon Josefsson  <simon@josefsson.org>
8164
8165         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
8166         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
8167         listen).
8168
8169 2008-10-08  Eric Blake  <ebb9@byu.net>
8170
8171         GNUmakefile: add 'make version' target
8172         * top/GNUmakefile (_curr-ver): Split version update rules...
8173         (version): ...into a target.
8174
8175 2008-10-07  Bruno Haible  <bruno@clisp.org>
8176
8177         Use a more portable replacement expression for -0.0L.
8178         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
8179         instead of -0.0L. Fix m4 quotation.
8180
8181         * tests/test-signbit.c: Include <float.h>.
8182         (minus_zero): New variable.
8183         (test_signbitl): Use minus_zero instead of -zero.
8184         * modules/signbit-tests (Depends-on): Add float.
8185
8186         * tests/test-ceill.c: Include <float.h>.
8187         (zero): Remove variable.
8188         (minus_zero): New variable.
8189         (main): Use minus_zero instead of -zero.
8190         * modules/ceill-tests (Depends-on): Add float.
8191
8192         * tests/test-floorl.c: Include <float.h>.
8193         (zero): Remove variable.
8194         (minus_zero): New variable.
8195         (main): Use minus_zero instead of -zero.
8196         * modules/floorl-tests (Depends-on): Add float.
8197
8198         * tests/test-roundl.c: Include <float.h>.
8199         (zero): Remove variable.
8200         (minus_zero): New variable.
8201         (main): Use minus_zero instead of -zero.
8202         * modules/roundl-tests (Depends-on): Add float.
8203
8204         * tests/test-truncl.c: Include <float.h>.
8205         (zero): Remove variable.
8206         (minus_zero): New variable.
8207         (main): Use minus_zero instead of -zero.
8208         * modules/truncl-tests (Depends-on): Add float.
8209
8210         * tests/test-frexpl.c (zero): Remove variable.
8211         (minus_zero): New variable.
8212         (main): Use minus_zero instead of -zero.
8213         * modules/frexpl-tests (Depends-on): Add float.
8214
8215         * tests/test-isnan.c (zerol): Remove variable.
8216         (minus_zerol): New variable.
8217         (test_long_double): Use minus_zerol instead of -zerol.
8218         * modules/isnan-tests (Depends-on): Add float.
8219
8220         * tests/test-isnanl.h (zero): Remove variable.
8221         (minus_zero): New variable.
8222         (main): Use minus_zero instead of -zero.
8223         * modules/isnanl-nolibm-tests (Depends-on): Add float.
8224         * modules/isnanl-tests (Depends-on): Add float.
8225
8226         * tests/test-ldexpl.c (zero): Remove variable.
8227         (minus_zero): New variable.
8228         (main): Use minus_zero instead of -zero.
8229         * modules/ldexpl-tests (Depends-on): Add float.
8230
8231         * tests/test-snprintf-posix.h (zerol): Remove variable.
8232         (minus_zerol): New variable.
8233         (test_function): Use minus_zerol instead of -zerol.
8234         * modules/snprintf-posix-tests (Depends-on): Add float.
8235         * modules/vsnprintf-posix-tests (Depends-on): Add float.
8236
8237         * tests/test-sprintf-posix.h (zerol): Remove variable.
8238         (minus_zerol): New variable.
8239         (test_function): Use minus_zerol instead of -zerol.
8240         * modules/sprintf-posix-tests (Depends-on): Add float.
8241         * modules/vsprintf-posix-tests (Depends-on): Add float.
8242
8243         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
8244         (minus_zerol): New variable.
8245         (test_function): Use minus_zerol instead of -zerol.
8246         * modules/vasnprintf-posix-tests (Depends-on): Add float.
8247
8248         * tests/test-vasprintf-posix.c (zerol): Remove variable.
8249         (minus_zerol): New variable.
8250         (test_function): Use minus_zerol instead of -zerol.
8251         * modules/vasprintf-posix-tests (Depends-on): Add float.
8252
8253 2008-10-07  Simon Josefsson  <simon@josefsson.org>
8254
8255         * MODULES.html.sh (Support for building documentation): Mention
8256         pmccabe2html.  Sort entries.
8257
8258         Add pmccabe2html module, from gnupdf.
8259         * build-aux/pmccabe.css: New file.
8260         * build-aux/pmccabe2html: New file.
8261         * m4/pmccabe2html.m4: New file.
8262         * modules/pmccabe2html: New file.
8263
8264 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
8265
8266         flock: new module
8267         * MODULES.html.sh: Add to list of modules.
8268         * lib/flock.c: flock implementation for Windows and Unix systems
8269         which have fcntl.
8270         * doc/glibc-functions/flock.texi: Update documentation.
8271         * lib/sys_file.in.h: <sys/file.h> header file.
8272         * m4/flock.m4: M4 macros.
8273         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
8274         * modules/flock: flock module.
8275         * modules/flock-tests: flock tests module.
8276         * modules/sys_file: sys/file.h module.
8277         * tests/test-flock.c: test suite for flock.
8278
8279 2008-10-06  Jim Meyering  <meyering@redhat.com>
8280
8281         bootstrap: check for LT_INIT more portably still ;-)
8282         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
8283         Spotted by Bruno Haible.
8284
8285 2008-10-06  Eric Blake  <ebb9@byu.net>
8286
8287         test-signbit: avoid tripping Irix cc bug on -0.0L
8288         * tests/test-signbit.c (minus_zerol): Delete, and replace with
8289         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
8290         entire testsuite consistent and avoids an Irix 6.2 bug.
8291
8292 2008-10-05  Bruno Haible  <bruno@clisp.org>
8293             Jim Meyering  <jim@meyering.net>
8294
8295         Add an option for ignoring EPIPE during close_stdout.
8296         * lib/closeout.h: Include <stdbool.h>.
8297         (close_stdout_set_ignore_EPIPE): New declaration.
8298         * lib/closeout.c: Include <stdbool.h>.
8299         (ignore_EPIPE): New variable.
8300         (close_stdout_set_ignore_EPIPE): New function.
8301         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
8302         * lib/close-stream.c (close_stream): Mention the possible EPIPE
8303         failure.
8304         * modules/closeout (Depends-on): Add stdbool.
8305
8306 2008-10-05  Bruno Haible  <bruno@clisp.org>
8307
8308         * modules/accept: New file.
8309         * modules/bind: New file.
8310         * modules/connect: New file.
8311         * modules/getpeername: New file.
8312         * modules/getsockname: New file.
8313         * modules/getsockopt: New file.
8314         * modules/listen: New file.
8315         * modules/recv: New file.
8316         * modules/recvfrom: New file.
8317         * modules/send: New file.
8318         * modules/sendto: New file.
8319         * modules/setsockopt: New file.
8320         * modules/socket: New file.
8321         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
8322         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
8323         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
8324         the particular module is requested. Add a link warning when the
8325         particular module is not requested.
8326         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
8327         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
8328         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
8329         the particular module is requested.
8330         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
8331         gl_SYS_SOCKET_H_DEFAULTS): New macros.
8332         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
8333         * modules/sys_socket (Depends-on): Add link-warning.
8334         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
8335         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
8336         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
8337         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
8338         GL_LINK_WARNING.
8339         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
8340         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
8341         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
8342         * doc/posix-functions/getpeername.texi: Mention the new module
8343         'getpeername'.
8344         * doc/posix-functions/getsockname.texi: Mention the new module
8345         'getsockname'.
8346         * doc/posix-functions/getsockopt.texi: Mention the new module
8347         'getsockopt'.
8348         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
8349         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
8350         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
8351         * doc/posix-functions/send.texi: Mention the new module 'send'.
8352         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
8353         * doc/posix-functions/setsockopt.texi: Mention the new module
8354         'setsockopt'.
8355         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
8356         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
8357         listen, connect, accept.
8358         * modules/select-tests (Depends-on): Likewise.
8359
8360 2008-10-05  Bruno Haible  <bruno@clisp.org>
8361
8362         * lib/winsock.c (strerror): Remove unused #undef.
8363         (rpl_close): Remove unused local variable.
8364
8365         * modules/sys_socket (Depends-on); Add errno.
8366
8367 2008-10-05  Bruno Haible  <bruno@clisp.org>
8368
8369         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
8370         (select): Add a link warning when the 'select' module is not used.
8371         * modules/sys_select (Depends-on): Add link-warning.
8372         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
8373         Suggested by Paolo Bonzini.
8374
8375 2008-10-05  Jim Meyering  <meyering@redhat.com>
8376
8377         bootstrap: check for LT_INIT more portably
8378         * build-aux/bootstrap: Avoid using grep -E, since it's not
8379         portable enough.  Suggestion from Bruno Haible.
8380
8381 2008-10-05  Bruno Haible  <bruno@clisp.org>
8382
8383         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
8384         as being fixed by gnulib.
8385
8386 2008-10-05  Bruno Haible  <bruno@clisp.org>
8387
8388         * modules/select-tests: New file, mostly copied from
8389         modules/sys_select-tests.
8390         * tests/test-select.c: New file, mostly copied from
8391         tests/test-sys_select.c.
8392         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
8393         * modules/sys_select-tests (Depends-on): Remove all dependencies.
8394         (Makefile.am): Remove test_sys_select_LDADD.
8395
8396         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
8397         to an undefined symbol, for an error message.
8398         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
8399         (gl_SYS_SELECT_H_DEFAULTS): New macro.
8400         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
8401         winsock-select.c here.
8402         * modules/sys_select (Files): Remove lib/winsock-select.c.
8403         (Depends-on): Remove alloca.
8404         (Makefile.am): Substitute GNULIB_SELECT.
8405         * modules/select: New file.
8406         * doc/posix-functions/select.texi: Update.
8407
8408 2008-10-05  Bruno Haible  <bruno@clisp.org>
8409
8410         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
8411         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
8412         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
8413         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
8414         getdtablesize.
8415         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
8416         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
8417
8418 2008-10-05  Bruno Haible  <bruno@clisp.org>
8419
8420         * modules/getdtablesize-tests: New file.
8421         * tests/test-getdtablesize.c: New file.
8422
8423         New module 'getdtablesize'.
8424         * lib/unistd.in.h (getdtablesize): New declaration.
8425         * lib/getdtablesize.c: New file.
8426         * m4/getdtablesize.m4: New file.
8427         * modules/getdtablesize: New file.
8428         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
8429         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
8430         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
8431         HAVE_GETDTABLESIZE.
8432         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
8433
8434 2008-10-05  Bruno Haible  <bruno@clisp.org>
8435
8436         * modules/sched (Makefile.am): Fix typo.
8437         Reported by Simon Josefsson.
8438
8439 2008-10-05  Jim Meyering  <meyering@redhat.com>
8440
8441         bootstrap: check for LT_INIT, too
8442         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
8443         are deprecated.  Suggestion from Ralf Wildenhues.
8444
8445 2008-10-05  Bruno Haible  <bruno@clisp.org>
8446
8447         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
8448         overriding them by ours.
8449         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
8450
8451 2008-10-05  Jim Meyering  <meyering@redhat.com>
8452
8453         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
8454         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
8455         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
8456
8457 2008-10-04  Bruno Haible  <bruno@clisp.org>
8458
8459         * modules/dup2 (License): Change to LGPLv2+.
8460         * modules/sleep (License): Likewise.
8461         * modules/perror (License): Likewise.
8462         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
8463         Blake.
8464         * modules/signal (License): Likewise.
8465         * modules/sigprocmask (License): Likewise.
8466         * modules/raise (License): Change to LGPLv2+, with approval by Jim
8467         Meyering.
8468
8469 2008-10-04  Bruno Haible  <bruno@clisp.org>
8470
8471         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
8472         Reported by Rainer Tammer <tammer@tammer.net>.
8473
8474 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
8475             Bruno Haible  <bruno@clisp.org>
8476
8477         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
8478         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
8479         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
8480
8481 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
8482
8483         filevercmp: new module
8484         * lib/filevercmp.h: New function filevercmp comparing version strings.
8485         * lib/filevercmp.c: Implementation of filevercmp function.
8486         * modules/filevercmp: Module metadata.
8487         * tests/test-filevercmp.c: Unit test for new module.
8488         * modules/filevercmp-tests: Unit test metadata.
8489         * MODULES.html.sh: Add filevercmp module.
8490
8491 2008-10-03  Bruno Haible  <bruno@clisp.org>
8492
8493         * lib/c-ctype.h: Add comment.
8494         Reported by Jim Meyering.
8495
8496 2008-10-02  Bruno Haible  <bruno@clisp.org>
8497
8498         * modules/posix_spawn-internal (Depends-on): Add 'open'.
8499
8500 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8501
8502         * build-aux/bootstrap: Allow renaming bootstrap, and change the
8503         name of bootstrap.conf accordingly.
8504
8505 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8506
8507         * build-aux/bootstrap: Install git-merge-changelog configuration
8508         items into .gitconfig if needed.
8509
8510 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
8511
8512         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
8513         git repository, and initialize/update it accordingly.
8514
8515 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
8516
8517         * modules/fsync-tests: New file.
8518         * tests/test-fsync.c: New file.
8519
8520         New module 'fsync'.
8521         * lib/fsync.c: New file.
8522         * m4/fsync.m4: New file.
8523         * modules/fsync: New file.
8524         * lib/unistd.in.h (fsync): New declaration.
8525         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
8526         GNULIB_FSYNC and HAVE_FSYNC.
8527         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
8528         * MODULES.html.sh (posix_functions): Add fsync.
8529         * doc/posix-functions/fsync.texi: Mention the new module.
8530
8531 2008-10-02  Jim Meyering  <meyering@redhat.com>
8532
8533         fts.c: sync with similar code from coreutils' remove.c
8534         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
8535         Guard also with "#if defined __linux__", since for now at least,
8536         this code is Linux-kernel-specific.
8537
8538 2008-10-02  Jim Meyering  <meyering@redhat.com>
8539
8540         fts: bug fixes
8541         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
8542         Include <sys/vfs.h>, not <sys/statfs.h>.
8543
8544         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
8545         Include <sys/vfs.h>, not <sys/statfs.h>.
8546
8547 2008-10-01  Bruno Haible  <bruno@clisp.org>
8548
8549         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
8550         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
8551         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
8552         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
8553         * doc/posix-functions/posix_spawnp.texi: Likewise.
8554         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
8555         whether posix_spawn actually works.
8556         * m4/pipe.m4 (gl_PIPE): Likewise.
8557         * modules/execute (Files): Add m4/posix_spawn.m4.
8558         * modules/pipe (Files): Add m4/posix_spawn.m4.
8559         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
8560
8561 2008-10-01  Jim Meyering  <meyering@redhat.com>
8562
8563         remove trailing spaces
8564         * NEWS: Likewise.
8565         * lib/poll.c (poll): Likewise.
8566         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
8567         * lib/winsock.c (rpl_close): Likewise.
8568         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
8569         * modules/yield: Likewise.
8570         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
8571         * tests/test-sys_select.c (connect_to_socket): Likewise.
8572
8573         fts.c: adjust a new interface to be more generally useful
8574         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
8575         (fts_build): Adjust caller.
8576
8577 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8578
8579         * modules/cond-tests: New file.
8580         * tests/test-cond.c: New file.
8581
8582 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8583             Bruno Haible  <bruno@clisp.org>
8584
8585         * modules/cond (Dependencies): Add errno, time.
8586         * lib/glthread/cond.h: Include <time.h>.
8587         (gl_cond_define, gl_cond_define_initialized): Use the same definition
8588         across platforms.
8589
8590 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8591             Bruno Haible  <bruno@clisp.org>
8592
8593         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
8594
8595 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8596             Bruno Haible  <bruno@clisp.org>
8597
8598         * modules/tls-tests (Depends-on): Add thread, yield.
8599         (configure.ac): Remove all checks.
8600         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
8601         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
8602         gl_thread_self): Remove definitions. Include glthread/thread.h and
8603         glthread/yield.h instead.
8604         (test_tls): Pass an additional NULL argument to gl_thread_join.
8605
8606 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8607             Bruno Haible  <bruno@clisp.org>
8608
8609         * modules/lock-tests (Depends-on): Add thread, yield.
8610         (configure.ac): Remove all checks.
8611         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
8612         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
8613         gl_thread_self): Remove definitions. Include glthread/thread.h and
8614         glthread/yield.h instead.
8615         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
8616         additional NULL argument to gl_thread_join.
8617
8618 2008-09-30  Bruno Haible  <bruno@clisp.org>
8619
8620         Fix the Win32 implementation of the 'thread' module.
8621         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
8622         pointer type.
8623         (gl_thread_self): Invoke gl_thread_self_func.
8624         (gl_thread_self_func): New declaration.
8625         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
8626         (do_init_self_key, init_self_key): New functions.
8627         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
8628         Remove some fields.
8629         (running_threads, running_lock): Remove variables.
8630         (get_current_thread_handle): New function.
8631         (gl_thread_self_func, wrapper_func, glthread_create_func,
8632         glthread_join_func, gl_thread_exit_func): Largely rewritten and
8633         simplified.
8634
8635 2008-09-30  Bruno Haible  <bruno@clisp.org>
8636
8637         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
8638         files.
8639
8640 2008-09-30  Jim Meyering  <meyering@redhat.com>
8641
8642         fts.m4: correct the test for statfs.f_type
8643         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
8644         when checking for statfs.f_type.
8645
8646 2008-09-15  Simon Josefsson  <simon@josefsson.org>
8647
8648         tests: avoid some compiler warnings
8649         * tests/test-memchr.c (main): Pass NULL indirectly.
8650         * tests/test-getdate.c (main): Remove unused variable 'ret'.
8651
8652 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
8653
8654         getdate.y: disallow countable dayshifts like "4 yesterday ago"
8655         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
8656         exactly specified dayshifts.
8657         (dayshift): New rule.
8658         (rel): Add dayshift.
8659         (relative_time_table) [tomorrow, yesterday, today, now]:
8660         Use tDAY_SHIFT in place of tDAY_UNIT.
8661         * tests/test-getdate.c: Add tests for now-disallowed countable
8662         dayshifts, e.g., "4 yesterday ago".
8663
8664 2008-09-29  Bruno Haible  <bruno@clisp.org>
8665
8666         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
8667         * tests/test-posix_spawn1.in.sh: Renamed from
8668         tests/test-posix_spawn.in.sh.
8669         * tests/test-posix_spawn2.c: New file.
8670         * tests/test-posix_spawn2.in.sh: New file.
8671         * modules/posix_spawnp-tests (Files): Update.
8672         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
8673
8674 2008-09-29  Bruno Haible  <bruno@clisp.org>
8675
8676         Propagate effects of putenv/setenv/unsetenv to child processes.
8677         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
8678         * lib/pipe.c (create_pipe): Likewise.
8679
8680 2008-09-29  Bruno Haible  <bruno@clisp.org>
8681
8682         Enable use of shell scripts as executables in mingw.
8683         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
8684         run the program as a shell script.
8685         * lib/pipe.c (create_pipe): Likewise.
8686         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
8687         resulting array.
8688
8689 2008-09-29  Eric Blake  <ebb9@byu.net>
8690
8691         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
8692
8693 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
8694
8695         * doc/posix-functions/accept.texi: Update mingw problems.
8696         * doc/posix-functions/bind.texi: Update mingw problems.
8697         * doc/posix-functions/close.texi: Update mingw problems.
8698         * doc/posix-functions/connect.texi: Update mingw problems.
8699         * doc/posix-functions/getpeername.texi: Update mingw problems.
8700         * doc/posix-functions/getsockname.texi: Update mingw problems.
8701         * doc/posix-functions/getsockopt.texi: Update mingw problems.
8702         * doc/posix-functions/ioctl.texi: Update mingw problems.
8703         * doc/posix-functions/listen.texi: Update mingw problems.
8704         * doc/posix-functions/recv.texi: Update mingw problems.
8705         * doc/posix-functions/recvfrom.texi: Update mingw problems.
8706         * doc/posix-functions/select.texi: Update mingw problems.
8707         * doc/posix-functions/send.texi: Update mingw problems.
8708         * doc/posix-functions/sendto.texi: Update mingw problems.
8709         * doc/posix-functions/setsockopt.texi: Update mingw problems.
8710         * doc/posix-functions/socket.texi: Update mingw problems.
8711
8712 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
8713             Bruno Haible  <bruno@clisp.org>
8714
8715         * lib/sys_select.in.h: Include sys/time.h.
8716         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
8717         * modules/sys_select: Depend on sys_time.
8718         * tests/test-sys_select.c: Test that sys/select.h defines struct
8719         timeval fully.
8720
8721 2008-09-29  Bruno Haible  <bruno@clisp.org>
8722
8723         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
8724         * lib/sys_select.in.h: Likewise.
8725
8726 2008-09-29  Bruno Haible  <bruno@clisp.org>
8727
8728         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
8729
8730 2008-09-29  Bruno Haible  <bruno@clisp.org>
8731
8732         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
8733         Set LIBSOCKET instead of augmenting LIBS.
8734         * modules/sockets (Link): New section.
8735         * modules/sockets-tests (test_sockets_LDADD): New variable.
8736         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
8737         * modules/poll-tests (test_poll_LDADD): New variable.
8738         * NEWS: Document the change.
8739
8740 2008-09-29  Bruno Haible  <bruno@clisp.org>
8741
8742         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
8743         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
8744         ARPA_INET_H directly.
8745         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
8746
8747 2008-09-28  Bruno Haible  <bruno@clisp.org>
8748
8749         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
8750         from gl_HEADER_SYS_SOCKET.
8751         (gl_HEADER_SYS_SOCKET): Invoke it.
8752         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8753
8754 2008-09-28  Bruno Haible  <bruno@clisp.org>
8755
8756         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
8757         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
8758         Needed on OSF/1 4.0.
8759
8760 2008-09-28  Bruno Haible  <bruno@clisp.org>
8761
8762         Override open more carefully.
8763         * lib/open.c (orig_open): New function.
8764         (rpl_open): Use orig_open instead of open.
8765         * lib/fcntl.in.h: Add special invocation convention.
8766         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
8767         (gl_FUNC_OPEN): Invoke it.
8768
8769         Override freopen more carefully.
8770         * lib/freopen.c (orig_freopen): New function.
8771         (rpl_freopen): Use orig_freopen instead of freopen.
8772         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
8773         (gl_FUNC_FREOPEN): Invoke it.
8774
8775         Override fopen more carefully.
8776         * lib/fopen.c (orig_fopen): New function.
8777         (rpl_fopen): Use orig_fopen instead of fopen.
8778         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
8779         (gl_FUNC_FOPEN): Invoke it.
8780         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
8781
8782 2008-09-28  Bruno Haible  <bruno@clisp.org>
8783
8784         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
8785         SIGPIPE.
8786
8787 2008-09-28  Bruno Haible  <bruno@clisp.org>
8788
8789         * tests/test-sigaction.c (handler, main): Disable the check whether
8790         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
8791         glibc systems with LinuxThreads.
8792
8793 2008-09-28  Bruno Haible  <bruno@clisp.org>
8794
8795         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
8796
8797         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
8798         with AIX xlc.
8799         * lib/fcntl.in.h (open): Likewise.
8800         Reported by Rainer Tammer <tammer@tammer.net>.
8801
8802 2008-09-28  Bruno Haible  <bruno@clisp.org>
8803
8804         * modules/posix_spawnp-tests: New file.
8805         * tests/test-posix_spawn.c: New file.
8806         * tests/test-posix_spawn.in.sh: New file.
8807
8808         New module 'posix_spawnp'.
8809         * modules/posix_spawnp: New file.
8810         * lib/spawnp.c: New file, from GNU libc with modifications.
8811         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
8812
8813         New module 'posix_spawn'.
8814         * modules/posix_spawn: New file.
8815         * lib/spawn.c: New file, from GNU libc with modifications.
8816         * doc/posix-functions/posix_spawn.texi: Mention the new module.
8817
8818         New module 'posix_spawnattr_destroy'.
8819         * modules/posix_spawnattr_destroy: New file.
8820         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
8821         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
8822         module.
8823
8824         New module 'posix_spawnattr_setsigmask'.
8825         * modules/posix_spawnattr_setsigmask: New file.
8826         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
8827         modifications.
8828         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
8829         new module.
8830
8831         New module 'posix_spawnattr_getsigmask'.
8832         * modules/posix_spawnattr_getsigmask: New file.
8833         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
8834         modifications.
8835         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
8836         new module.
8837
8838         New module 'posix_spawnattr_setsigdefault'.
8839         * modules/posix_spawnattr_setsigdefault: New file.
8840         * lib/spawnattr_setdefault.c: New file, from GNU libc with
8841         modifications.
8842         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
8843         new module.
8844
8845         New module 'posix_spawnattr_getsigdefault'.
8846         * modules/posix_spawnattr_getsigdefault: New file.
8847         * lib/spawnattr_getdefault.c: New file, from GNU libc with
8848         modifications.
8849         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
8850         new module.
8851
8852         New module 'posix_spawnattr_setschedpolicy'.
8853         * modules/posix_spawnattr_setschedpolicy: New file.
8854         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
8855         modifications.
8856         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
8857         new module.
8858
8859         New module 'posix_spawnattr_getschedpolicy'.
8860         * modules/posix_spawnattr_getschedpolicy: New file.
8861         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
8862         modifications.
8863         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
8864         new module.
8865
8866         New module 'posix_spawnattr_setschedparam'.
8867         * modules/posix_spawnattr_setschedparam: New file.
8868         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
8869         modifications.
8870         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
8871         new module.
8872
8873         New module 'posix_spawnattr_getschedparam'.
8874         * modules/posix_spawnattr_getschedparam: New file.
8875         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
8876         modifications.
8877         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
8878         new module.
8879
8880         New module 'posix_spawnattr_setpgroup'.
8881         * modules/posix_spawnattr_setpgroup: New file.
8882         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
8883         modifications.
8884         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
8885         module.
8886
8887         New module 'posix_spawnattr_getpgroup'.
8888         * modules/posix_spawnattr_getpgroup: New file.
8889         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
8890         modifications.
8891         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
8892         module.
8893
8894         New module 'posix_spawnattr_setflags'.
8895         * modules/posix_spawnattr_setflags: New file.
8896         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
8897         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
8898         module.
8899
8900         New module 'posix_spawnattr_getflags'.
8901         * modules/posix_spawnattr_getflags: New file.
8902         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
8903         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
8904         module.
8905
8906         New module 'posix_spawnattr_init'.
8907         * modules/posix_spawnattr_init: New file.
8908         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
8909         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
8910         module.
8911
8912         New module 'posix_spawn_file_actions_destroy'.
8913         * modules/posix_spawn_file_actions_destroy: New file.
8914         * lib/spawn_faction_destroy.c: New file, from GNU libc with
8915         modifications.
8916         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
8917         the new module.
8918
8919         New module 'posix_spawn_file_actions_addopen'.
8920         * modules/posix_spawn_file_actions_addopen: New file.
8921         * lib/spawn_faction_addopen.c: New file, from GNU libc with
8922         modifications.
8923         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
8924         the new module.
8925
8926         New module 'posix_spawn_file_actions_adddup2'.
8927         * modules/posix_spawn_file_actions_adddup2: New file.
8928         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
8929         modifications.
8930         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
8931         the new module.
8932
8933         New module 'posix_spawn_file_actions_addclose'.
8934         * modules/posix_spawn_file_actions_addclose: New file.
8935         * lib/spawn_faction_addclose.c: New file, from GNU libc with
8936         modifications.
8937         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
8938         the new module.
8939
8940         New module 'posix_spawn_file_actions_init'.
8941         * modules/posix_spawn_file_actions_init: New file.
8942         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
8943         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
8944         new module.
8945
8946         New module 'posix_spawn-internal'.
8947         * modules/posix_spawn-internal: New file.
8948         * lib/spawn_int.h: New file, from GNU libc with modifications.
8949         * lib/spawni.c: New file, from GNU libc with modifications.
8950         * m4/posix_spawn.m4: New file.
8951
8952         New module 'spawn'.
8953         * modules/spawn: New file.
8954         * lib/spawn.in.h: New file, from GNU libc with modifications.
8955         * m4/spawn_h.m4: New file.
8956         * doc/posix-headers/spawn.texi: Mention the new module.
8957
8958 2008-09-28  Bruno Haible  <bruno@clisp.org>
8959
8960         * modules/sched-tests: New file.
8961         * tests/test-sched.c: New file.
8962
8963         New module 'sched'.
8964         * modules/sched: New file.
8965         * lib/sched.in.h: New file.
8966         * m4/sched_h.m4: New file.
8967         * doc/posix-headers/sched.texi: Mention the new module.
8968
8969 2008-09-27  Eric Blake  <ebb9@byu.net>
8970
8971         Fix previous patch, and tweak references to $0.
8972         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
8973         (func_version, func_gnulib_dir): Don't call this program
8974         gnulib-tool.
8975         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
8976         with using $0 in function.
8977         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
8978         (func_fatal_error): Reuse the name the user invoked us with.
8979
8980 2008-09-27  Bruno Haible  <bruno@clisp.org>
8981
8982         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
8983         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
8984         (gl_ICONV_H): Not here.
8985         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
8986         instead of assigning ICONV_H directly.
8987
8988         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
8989         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
8990         WCHAR_H directly.
8991
8992 2008-09-27  Bruno Haible  <bruno@clisp.org>
8993
8994         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
8995         * modules/arpa_inet (Depends-on): Add link-warning.
8996         (Makefile.am): Insert the definition of GL_LINK-WARNING.
8997         * modules/unistd (Makefile.am): Likewise.
8998
8999 2008-09-26  Bruno Haible  <bruno@clisp.org>
9000
9001         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
9002         variables.
9003         (func_version): Essentially copied from gnulib-tool.
9004         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
9005         func_readlink): Copied from gnulib-tool.
9006
9007 2008-09-26  Bruno Haible  <bruno@clisp.org>
9008
9009         * gnulib-tool (func_version): Change directory to $gnulib_dir before
9010         invoking git-version-gen.
9011
9012 2008-09-26  Bruno Haible  <bruno@clisp.org>
9013
9014         * posix-modules: Update to directory names changed on 2008-01-19.
9015         Remove commas in output before splitting into words. No more need to
9016         avoid 'ftruncate' since 2007-02-19.
9017
9018 2008-09-26  Bruno Haible  <bruno@clisp.org>
9019
9020         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
9021
9022 2008-09-26  Bruno Haible  <bruno@clisp.org>
9023
9024         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
9025         * modules/fwriteerror (Depends-on): Add errno.
9026
9027 2008-09-26  Bruno Haible  <bruno@clisp.org>
9028
9029         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
9030         * tests/test-vc-list-files-cvs.sh: Likewise.
9031
9032 2008-09-26  Bruno Haible  <bruno@clisp.org>
9033
9034         * doc/posix-headers/sys_resource.texi: Reorder items.
9035
9036 2008-09-26  Jim Meyering  <meyering@redhat.com>
9037
9038         fts: tweak inode comparison function
9039         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
9040         inode numbers, as documented.
9041
9042         fts: sort dirent entries on inode number before traversing
9043         This avoids a quadratic, seek-related performance penalty when
9044         operating on a directory containing many entries (measurable at 10k;
9045         3.5 hours at 2 million entries with a cold cache) on certain types
9046         of file systems, including ext3 and ext4, but not tmpfs.
9047         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
9048         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
9049         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
9050         (fs_handles_readdir_ordered_dirents_efficiently): New function.
9051         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
9052         (fts_build): Set the stat.st_ino member from D_INO.
9053         If it is likely to be useful, sort dirent entries on inode number.
9054
9055         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
9056         and the struct statfs.f_type member.
9057         * modules/fts (Depends-on): Add d-ino.
9058
9059 2008-09-26  Bruno Haible  <bruno@clisp.org>
9060
9061         * modules/sigpipe-die (Depends-on): Add sigpipe.
9062
9063         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
9064         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
9065         and GNULIB_STDIO_H_SIGPIPE are set.
9066         * lib/stdio-write.c: New file.
9067         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
9068         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9069         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9070         REPLACE_STDIO_WRITE_FUNCS.
9071         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
9072         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9073         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9074         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
9075         * modules/stdio (Files): Add lib/stdio-write.c.
9076         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
9077         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
9078         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
9079         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
9080         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
9081         REPLACE_FPRINTF_POSIX.
9082         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
9083         REPLACE_PRINTF_POSIX.
9084         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
9085         REPLACE_VFPRINTF_POSIX.
9086         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
9087         REPLACE_VPRINTF_POSIX.
9088         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
9089         SIGPIPE issue.
9090         * doc/posix-functions/fputc.texi: Likewise.
9091         * doc/posix-functions/fputs.texi: Likewise.
9092         * doc/posix-functions/fwrite.texi: Likewise.
9093         * doc/posix-functions/printf.texi: Likewise.
9094         * doc/posix-functions/putc.texi: Likewise.
9095         * doc/posix-functions/putchar.texi: Likewise.
9096         * doc/posix-functions/puts.texi: Likewise.
9097         * doc/posix-functions/vfprintf.texi: Likewise.
9098         * doc/posix-functions/vprintf.texi: Likewise.
9099
9100         * modules/safe-write (Depends-on): Add write.
9101
9102         * modules/sigpipe-tests: New file.
9103         * tests/test-sigpipe.c: New file.
9104         * tests/test-sigpipe.sh: New file.
9105
9106         * modules/write: New file.
9107         * lib/unistd.in.h: Include <sys/types.h>.
9108         (write): New declaration.
9109         * lib/write.c: New file.
9110         * m4/write.m4: New file.
9111         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
9112         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
9113         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
9114         GNULIB_WRITE, REPLACE_WRITE.
9115         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
9116         and the SIGPIPE issue.
9117
9118         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
9119         (raise): New declaration.
9120         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
9121         (ext_signal): New function.
9122         (rpl_raise): New function.
9123         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
9124         GNULIB_SIGNAL_H_SIGPIPE.
9125         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
9126         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
9127
9128         * modules/sigpipe: New file.
9129         * m4/sigpipe.m4: New file.
9130
9131 2008-09-25  Derek Price  <derek@ximbiot.com>
9132             Bruno Haible  <bruno@clisp.org>
9133
9134         * gnulib-tool (func_import): Report all license incompatibilities, not
9135         just the first one.
9136
9137 2008-09-25  Bruno Haible  <bruno@clisp.org>
9138
9139         * gnulib-tool (func_import): When computing the edits, consider not
9140         only the Makefile.ams that exist but also those that will be generated.
9141
9142 2008-09-25  Simon Josefsson  <simon@josefsson.org>
9143
9144         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
9145         fixes gnulib-tool --test warning about duplicate dependency.
9146
9147 2008-09-25  Bruno Haible  <bruno@clisp.org>
9148
9149         * gnulib-tool: Don't ask the user to perform edits in the generated
9150         Makefile.ams.
9151         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
9152         apply to the Makefile.am being generated.
9153         (func_emit_tests_Makefile_am): Execute edits that apply to the
9154         Makefile.am being generated.
9155         (func_import): Setup list of Makefile.am edits before emitting the
9156         Makefile.ams, not at the end.
9157         (func_create_testdir): Update.
9158         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9159
9160 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9161
9162         * gnulib-tool (func_import): Store the --tests-base option in the
9163         comment in gnulib-cache.m4.
9164
9165 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
9166
9167         * NEWS: Document increased portability that sys_select now provides.
9168
9169         * lib/sys_select.in.h: Install select wrapper.
9170         * lib/sys_socket.in.h: Use more descriptive name when there is no
9171         select wrapper.
9172         * lib/winsock-select.c: New.
9173         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
9174         Require gl_HEADER_SYS_SOCKET.
9175         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
9176         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
9177         * tests/test-sys_select.c: Add functional tests.
9178
9179 2008-09-24  Eric Blake  <ebb9@byu.net>
9180
9181         open, fopen: close fd leak in last patch
9182         * lib/open.c (rpl_open): Close fd before returning error.
9183         * lib/fopen.c (rpl_fopen): Close fd before returning error.
9184         * doc/posix-functions/open.texi (open): Document that Irix also
9185         has the bug.
9186         * doc/posix-functions/fopen.texi (fopen): Likewise.
9187         Reported by Paolo Bonzini.
9188
9189 2008-09-24  Bruno Haible  <bruno@clisp.org>
9190
9191         Ensure that a filename ending in a slash cannot be used to access a
9192         non-directory.
9193         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
9194         to check whether it's really a directory.
9195         * lib/fopen.c: Include fcntl.h, unistd.h.
9196         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
9197         and fdopen().
9198         * modules/fopen (Depends-on): Add unistd.
9199         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
9200         * tests/test-fopen.c (main): Likewise.
9201         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
9202         * doc/posix-functions/fopen.texi: Likewise.
9203         Reported by Eric Blake.
9204
9205 2008-09-23  Eric Blake  <ebb9@byu.net>
9206
9207         c-stack: avoid compiler optimizations when provoking overflow
9208         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
9209         recursion harder to optimize, to ensure a stack overflow occurs.
9210         * tests/test-c-stack.c (recurse): Likewise.
9211         Borrowed from libsigsegv.
9212
9213         c-stack: work around Irix sigaltstack bug
9214         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
9215         whether sigaltstack uses wrong end of stack_t (copied in part from
9216         libsigsegv).
9217         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
9218         Irix bug, without requiring an over-allocation.
9219         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
9220         bug.
9221
9222         fopen: document mingw bug on directories
9223         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
9224         not allowing a stream visiting a directory, even though reading
9225         from such a stream is not portable.
9226
9227 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9228
9229         * lib/poll.c: Rewrite.
9230         * modules/poll: Depend on alloca.
9231
9232 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9233
9234         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
9235         instead define prototypes for a full set of wrappers.  Ensure
9236         that Cygwin does not use the compatibility code, which is only
9237         for MinGW.
9238         * lib/winsock.c: New.
9239         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
9240         * modules/sys_socket: Add lib/winsock.c.
9241
9242         * modules/poll-tests: Add errno and perror.
9243         * tests/test-poll.c: Use ioctl, not ioctlsocket.
9244
9245 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
9246
9247         * tests/test-poll.c: Downgrade minimum needed Winsock version.
9248
9249 2008-09-23  Bruno Haible  <bruno@clisp.org>
9250
9251         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
9252         * doc/glibc-functions/*: Likewise.
9253
9254 2008-09-23  Simon Josefsson  <simon@josefsson.org>
9255
9256         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
9257         success.
9258
9259 2008-09-22  Eric Blake  <ebb9@byu.net>
9260             Bruno Haible  <bruno@clisp.org>
9261
9262         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
9263         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
9264         supply %A but mishandle pseudo-NaN.
9265         Reported by Simon Josefsson.
9266
9267 2008-09-21  Bruno Haible  <bruno@clisp.org>
9268
9269         * tests/test-lock.c (main): Tweak skip message.
9270         * tests/test-tls.c (main): Likewise.
9271
9272 2008-09-21  Bruno Haible  <bruno@clisp.org>
9273
9274         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
9275         whether 'struct sigaction' has sa_sigaction here...
9276         (gl_PREREQ_SIG_HANDLER_H): ... not here.
9277         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
9278
9279 2008-09-21  Bruno Haible  <bruno@clisp.org>
9280
9281         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
9282         section.
9283         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
9284         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
9285         the new section.
9286         (Support for obsolete systems lacking POSIX:2001): New section.
9287         (String handling <string.h>): Move strdup to the new section.
9288         Suggested by Simon Josefsson and Paolo Bonzini.
9289
9290 2008-09-21  Bruno Haible  <bruno@clisp.org>
9291
9292         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
9293         exponents in %e and %g results on 'long double'. Needed for mingw's
9294         improved *printf functions.
9295         * tests/test-vasprintf-posix.c (test_function): Likewise.
9296         * tests/test-snprintf-posix.h (test_function): Likewise.
9297         * tests/test-sprintf-posix.h (test_function): Likewise.
9298         Reported by Eric Blake.
9299
9300 2008-09-21  Bruno Haible  <bruno@clisp.org>
9301
9302         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
9303         * tests/test-sprintf-posix.h (test_function): Likewise.
9304
9305 2008-09-21  Bruno Haible  <bruno@clisp.org>
9306
9307         * modules/getpass (Depends-on): Add strdup-posix.
9308
9309         New module 'strdup-posix'.
9310         * modules/strdup-posix: New file.
9311         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
9312         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
9313         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
9314         REPLACE_STRDUP.
9315         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
9316         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
9317         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
9318         strdup-posix.
9319
9320         * modules/strdup (Depends-on): Remove malloc-posix.
9321
9322 2008-09-20  Bruno Haible  <bruno@clisp.org>
9323
9324         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
9325         Wildenhues.
9326
9327 2008-09-20  Bruno Haible  <bruno@clisp.org>
9328
9329         Ensure that wint_t gets defined on IRIX 5.3.
9330         * lib/wchar.in.h (wint_t): Define if not defined by the system.
9331         * lib/wctype.in.h (wint_t): Likewise.
9332         (__wctype_wint_t): Remove type.
9333         (isw*): Use wint_t instead of __wctype_wint_t.
9334         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
9335         * modules/wchar (Files): Add m4/wint_t.m4.
9336         (Makefile.am): Substitute HAVE_WINT_T.
9337         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
9338         * tests/test-wctype.c: Check that wint_t is defined.
9339         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
9340         * doc/posix-headers/wctype.texi: Likewise.
9341         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
9342
9343 2008-09-18  Bruno Haible  <bruno@clisp.org>
9344
9345         * gnulib-tool (func_exit): Update comment.
9346
9347 2008-09-18  Simon Josefsson  <simon@josefsson.org>
9348
9349         * modules/getaddrinfo (Depends-on): Remove strdup, this module
9350         assumes strdup exists and does not depend on strdup to return
9351         ENOMEM on out of memory conditions.
9352
9353 2008-09-18  Bruno Haible  <bruno@clisp.org>
9354
9355         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
9356         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
9357         digits for the exponent.
9358
9359 2008-09-18  Jim Meyering  <meyering@redhat.com>
9360             Bruno Haible  <bruno@clisp.org>
9361
9362         * lib/vasnprintf.c (decimal_point_char): Define also if
9363         NEED_PRINTF_INFINITE_LONG_DOUBLE.
9364
9365 2008-09-16  Bruno Haible  <bruno@clisp.org>
9366         and Eric Blake  <ebb9@byu.net>
9367
9368         vasnprintf: support Irix 5.3
9369         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
9370         that mishandle long double infinity.
9371         Reported by Tom G. Christensen.
9372
9373 2008-09-16  Bruno Haible  <bruno@clisp.org>
9374
9375         * doc/glibc-functions/scandir.texi: Mention the function is missing on
9376         Solaris 9.
9377         * doc/glibc-functions/alphasort.texi: Likewise.
9378         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
9379
9380 2008-09-16  Jim Meyering  <meyering@redhat.com>
9381
9382         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
9383         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
9384         a umask modification leak out of a subshell.  Otherwise, the
9385         opensolaris /bin/sh would be accepted and thus cause unwarranted
9386         failures in the coreutils test suite.
9387
9388 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
9389
9390         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
9391         to succeed.
9392
9393 2008-09-16  Jim Meyering  <meyering@redhat.com>
9394
9395         avoid spurious test failure when library is built without ACL support
9396         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
9397         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
9398         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
9399         * tests/test-copy-acl.sh: Likewise.
9400
9401 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9402
9403         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
9404         based on character occurrence counts.
9405
9406 2008-09-15  Eric Blake  <ebb9@byu.net>
9407
9408         tests: avoid some compiler warnings
9409         * tests/test-memchr.c (main): Pass NULL indirectly.
9410         * tests/test-closein.c (main): Avoid unused variable.
9411
9412 2008-09-15  Bruno Haible  <bruno@clisp.org>
9413
9414         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
9415         are missing on OpenBSD 4.0 individually.
9416         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
9417
9418 2008-09-15  Bruno Haible  <bruno@clisp.org>
9419
9420         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
9421         * doc/posix-functions/strerror.texi: Mention also Cygwin.
9422         * doc/posix-functions/perror.texi: Likewise.
9423         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
9424         is missing.
9425         Reported by Eric Blake.
9426
9427         * lib/errno.in.h: Use replacement values >= 2000.
9428         Reported by Eric Blake.
9429
9430 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9431
9432         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
9433         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
9434         limit.
9435         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
9436         compareseq was aborted.
9437
9438 2008-09-14  Bruno Haible  <bruno@clisp.org>
9439
9440         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
9441         yvec_edit_count.
9442         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
9443         (fstrcmp_bounded): Simplify result computation accordingly.
9444
9445 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9446
9447         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
9448         (fstrcmp): Define in terms of fstrcmp_bounded.
9449         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
9450         lower_bound argument.
9451         Return quickly if the result is certainly < lower_bound.
9452         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
9453
9454 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9455
9456         * lib/diffseq.h (EARLY_ABORT): New macro.
9457         (compareseq): Change return type to bool. Return true when EARLY_ABORT
9458         evaluates to true.
9459
9460 2008-09-14  Bruno Haible  <bruno@clisp.org>
9461
9462         * modules/perror-tests: New file.
9463         * tests/test-perror.sh: New file.
9464         * tests/test-perror.c: New file.
9465
9466         New module 'perror'.
9467         * lib/stdio.in.h (perror): New declaration.
9468         * lib/perror.c: New file.
9469         * m4/perror.m4: New file.
9470         * modules/perror: New file.
9471         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
9472         * doc/posix-functions/perror.texi: Mention the perror module.
9473         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
9474         REPLACE_PERROR.
9475         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
9476         REPLACE_PERROR.
9477
9478 2008-09-14  Bruno Haible  <bruno@clisp.org>
9479
9480         * modules/stdio (Makefile.am): Reorder to match the order in
9481         lib/stdio.in.h.
9482         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
9483
9484 2008-09-13  Bruno Haible  <bruno@clisp.org>
9485
9486         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
9487
9488 2008-09-13  Bruno Haible  <bruno@clisp.org>
9489
9490         Extend strerror to cover the added errno values.
9491         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
9492         (rpl_strerror): Provide error messages for the added errno values and
9493         for the WSA* values.
9494         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
9495         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
9496         strerror.
9497         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
9498         * modules/strerror (Depends-on): Add errno.
9499         * doc/posix-functions/strerror.texi: Document the change.
9500         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
9501         and EOVERFLOW.
9502
9503 2008-09-13  Bruno Haible  <bruno@clisp.org>
9504
9505         * modules/EOVERFLOW: Remove file.
9506         * m4/eoverflow.m4: Remove file.
9507         * modules/EOVERFLOW-tests: Remove file.
9508         * tests/test-EOVERFLOW.c: Remove file.
9509         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
9510         * modules/ftell (Depends-on): Likewise.
9511         * modules/getdelim (Depends-on): Likewise.
9512         * modules/getugroups (Depends-on): Likewise.
9513         * modules/poll (Depends-on): Likewise.
9514         * modules/snprintf (Depends-on): Likewise.
9515         * modules/sprintf-posix (Depends-on): Likewise.
9516         * modules/vasnprintf (Depends-on): Likewise.
9517         * modules/vasprintf (Depends-on): Likewise.
9518         * modules/vfprintf-posix (Depends-on): Likewise.
9519         * modules/vsnprintf (Depends-on): Likewise.
9520         * modules/vsprintf-posix (Depends-on): Likewise.
9521         * modules/xvasprintf (Depends-on): Likewise.
9522         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
9523         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
9524         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
9525         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
9526         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
9527         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
9528         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
9529         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
9530         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
9531         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
9532         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
9533         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
9534         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
9535         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
9536         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
9537         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
9538         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
9539         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
9540         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
9541         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
9542         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
9543         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
9544         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
9545         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
9546         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
9547         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
9548         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
9549         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
9550         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
9551         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
9552         * MODULES.html.sh: Remove EOVERFLOW.
9553         * NEWS: Mention the change.
9554
9555 2008-09-13  Bruno Haible  <bruno@clisp.org>
9556
9557         * modules/errno-tests: New file.
9558         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
9559
9560         * lib/errno.in.h: New file.
9561         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
9562         * modules/errno: New file.
9563         * doc/posix-headers/errno.texi: Update documentation.
9564         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
9565
9566 2008-09-13  Bruno Haible  <bruno@clisp.org>
9567
9568         * tests/test-poll.c: Use #if for native Windows, rather than testing
9569         __MSVCRT__.
9570
9571 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9572             Bruno Haible  <bruno@clisp.org>
9573
9574         * lib/glob.c: Don't include <pwd.h> on native Windows.
9575         (WINDOWS32): New macro.
9576         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
9577
9578 2008-09-13  Bruno Haible  <bruno@clisp.org>
9579
9580         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
9581         (ETIMEDOUT): Remove macro.
9582         (glthread_cond_timedwait_multithreaded): New declaration.
9583         (glthread_cond_timedwait): Use it.
9584         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
9585         (glthread_cond_timedwait_multithreaded): New function.
9586
9587 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9588
9589         * modules/poll-tests: Do not check for io.h.
9590         * tests/test-poll.c: Check for __MSVCRT__ instead.
9591
9592 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9593
9594         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
9595         * modules/poll-tests: Add inet_pton, stdbool, sockets.
9596         * tests/test-poll.c: Use them.  Use _pipe on Windows.
9597
9598 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
9599
9600         * modules/poll-tests: New.
9601         * tests/test-poll.c: New.
9602
9603 2008-09-12  Eric Blake  <ebb9@byu.net>
9604
9605         frexp: test for NetBSD failure on -0.0
9606         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
9607         not all, bugs from NetBSD 3.0 have been fixed.
9608         * doc/posix-functions/frexp.texi (frexp): Document bug.
9609         Reported by Thomas Klausner.
9610
9611         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
9612         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
9613         literal -0.0.
9614         Reported by Jonathan C. Patschke <jp@centtech.com>.
9615
9616 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9617
9618         * lib/glthread/cond.h: Use dummy implementation also if
9619         USE_WIN32_THREADS.
9620
9621 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9622
9623         * modules/fnmatch-posix (License): Change to LGPLv2+.
9624         * modules/fnmatch-gnu (License): Likewise.
9625
9626 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
9627
9628         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
9629
9630 2008-09-11  Jim Meyering  <meyering@redhat.com>
9631
9632         * users.txt: Add gtk-vnc.
9633
9634 2008-09-08  Simon Josefsson  <simon@josefsson.org>
9635
9636         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
9637         rotate amounts.
9638
9639         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
9640         required for 16-bit and 8-bit rotates.
9641         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
9642         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
9643         UINT8_MAX instead of hard-coded constants.
9644         Suggested by Paul Eggert.
9645
9646 2008-09-07  Bruno Haible  <bruno@clisp.org>
9647
9648         * tests/test-striconveh.c (main): Check behaviour when converting from
9649         UTF-7.
9650
9651         Make striconveh work better with stateful encodings.
9652         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
9653         that iconv does not increment the inptr when returning -1/EINVAL.
9654
9655 2008-09-07  Bruno Haible  <bruno@clisp.org>
9656
9657         * build-aux/config.rpath: Update according to libtool-2.2.6.
9658         * build-aux/config.libpath: Likewise.
9659
9660 2008-09-06  Bruno Haible  <bruno@clisp.org>
9661
9662         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
9663         * lib/freadptr.c (freadptr): Likewise.
9664         * lib/freadseek.c (freadptrinc): Likewise.
9665         Reported by Simon Josefsson.
9666
9667 2008-09-06  Bruno Haible  <bruno@clisp.org>
9668
9669         * modules/freadptr (License): Change to LGPLv2+.
9670         * modules/freadseek (License): Likewise.
9671         Suggested by Eric Blake.
9672
9673         * modules/memchr2 (License): Change to LGPLv2+.
9674         Approved by Eric Blake.
9675
9676 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9677             Bruno Haible  <bruno@clisp.org>
9678
9679         Make gnulib-tool work with native 'sed' on AIX.
9680         * gnulib-tool (sed_noop): New variable.
9681         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
9682         func_add_or_update, func_create_testdir): Use it to initialize sed
9683         script variables.
9684         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
9685
9686 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
9687             Bruno Haible  <bruno@clisp.org>
9688
9689         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
9690         also works after #include directives.
9691
9692 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
9693
9694         getdate.y: reject an out-of-range timezone value
9695         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
9696         the range [-24...+24].  When specified with only one or two digits,
9697         * tests/test-getdate.c: Tests for the fix.
9698         * doc/getdate.texi: Document this change.
9699
9700 2008-09-03  Bruno Haible  <bruno@clisp.org>
9701
9702         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
9703
9704 2008-09-02  Simon Josefsson  <simon@josefsson.org>
9705
9706         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
9707         <bruce.korb@gmail.com> with ideas from Ben Pfaff
9708         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
9709         Blake <ebb9@byu.net>.
9710
9711         * tests/test-bitrotate.c: Add more test vectors.
9712
9713 2008-09-02  Eric Blake  <ebb9@byu.net>
9714
9715         vasnprintf-posix: handle large precision via %.*d
9716         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
9717         when handling it ourselves.
9718         * tests/test-vasnprintf-posix.c (test_function): Add test.
9719         * tests/test-snprintf-posix.h (test_function): Likewise.
9720         * tests/test-sprintf-posix.h (test_function): Likewise.
9721         * tests/test-vasprintf-posix.c (test_function): Likewise.
9722         Reported by Alain Guibert.
9723
9724 2008-09-01  Eric Blake  <ebb9@byu.net>
9725
9726         c-stack: make configure-time check more robust
9727         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
9728         successful sigaction call.
9729         Reported by Tom G. Christensen.
9730
9731 2008-09-01  Bruno Haible  <bruno@clisp.org>
9732
9733         New module 'findprog-lgpl'.
9734         * modules/findprog-lgpl: New file.
9735         * lib/findprog-lgpl.c: New file.
9736         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
9737         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
9738         to decide whether to use strdup or xstrdup, concatenated_filename or
9739         xconcatenated_filename.
9740
9741 2008-09-01  Bruno Haible  <bruno@clisp.org>
9742
9743         Split module 'concat-filename' into 'concat-filename' (LGPL) and
9744         'xconcat-filename' (GPL).
9745         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
9746         (License): Change to LGPLv2+.
9747         * modules/xconcat-filename: New file.
9748         * lib/concat-filename.h (concatenated_filename): Change specification.
9749         (xconcatenated_filename): New declaration.
9750         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
9751         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
9752         memory situations.
9753         * lib/xconcat-filename.c: New file.
9754         * NEWS: Mention the change.
9755         * lib/findprog.c: Include concat-filename.h, not filename.h.
9756         (find_in_path): Use xconcatenated_filename instead of
9757         concatenated_filename.
9758         * lib/javacomp.c: Include concat-filename.h, not filename.h.
9759         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
9760         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
9761         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
9762         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
9763         instead of concatenated_filename.
9764         * lib/javaexec.c: Include concat-filename.h, not filename.h.
9765         (execute_java_class): Use xconcatenated_filename instead of
9766         concatenated_filename.
9767         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
9768         * modules/javacomp (Depends-on): Likewise.
9769         * modules/javaexec (Depends-on): Likewise.
9770
9771 2008-09-01  Bruno Haible  <bruno@clisp.org>
9772
9773         Split module 'filename' into 'filename' and 'concat-filename'.
9774         * modules/filename: Keep only lib/filename.h.
9775         (License): Change to LGPLv2+.
9776         * modules/concat-filename: New file, extracted from modules/filename.
9777         * lib/filename.h (concatenated_filename): Remove declaration.
9778         * lib/concat-filename.h: New file, extracted from lib/filename.h.
9779         * lib/concat-filename.c: Include concat-filename.h.
9780         * NEWS: Mention the change.
9781
9782 2008-09-01  Simon Josefsson  <simon@josefsson.org>
9783
9784         * lib/bitrotate.h (rotl8, rotr8): Add.
9785
9786         * modules/bitrotate (configure.ac): Need
9787         AC_REQUIRE([AC_C_INLINE]).
9788         (Description): Mention stdint.h.  Reported by Bruno Haible
9789         <bruno@clisp.org>.
9790
9791         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
9792         Paolo Bonzini <bonzini@gnu.org>.
9793
9794 2008-08-31  Bruno Haible  <bruno@clisp.org>
9795
9796         Assume Solaris specific bi-arch conventions on Solaris systems.
9797         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
9798         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
9799         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
9800         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
9801         like acl_libdirstem.
9802         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
9803         acl_libdirstem.
9804         * NEWS: Mention the change.
9805         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
9806
9807 2008-08-31  Jim Meyering  <meyering@redhat.com>
9808
9809         * lib/strftime.h: Add comments describing the two added arguments.
9810
9811         remove duplicate #include directives
9812         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
9813         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
9814
9815 2008-08-31  Bruno Haible  <bruno@clisp.org>
9816
9817         New module 'sigpipe-die'.
9818         * modules/sigpipe-die: New file.
9819         * lib/sigpipe-die.h: New file.
9820         * lib/sigpipe-die.c: New file.
9821         * MODULES.html.sh (Signal handling): Add sigpipe-die.
9822
9823 2008-08-31  Bruno Haible  <bruno@clisp.org>
9824
9825         Don't override previously installed signal handlers.
9826         * lib/fatal-signal.c (saved_sigactions): New variable.
9827         (uninstall_handlers): Reset the signal to the saved handler, not
9828         to SIG_DFL (except when ignored).
9829         (install_handlers): Save the previous handlers.
9830
9831 2008-08-30  Bruno Haible  <bruno@clisp.org>
9832
9833         * gnulib-tool (func_reset_sigpipe): New function.
9834         (func_get_automake_snippet, func_modules_transitive_closure,
9835         func_import): Invoke it before a join command that reads from stdin,
9836         to avoid "echo: write error: Broken pipe" error messages on stderr.
9837         Reported by Sam Steingold <sds@gnu.org>.
9838
9839 2008-08-30  Bruno Haible  <bruno@clisp.org>
9840
9841         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
9842         Code copied from m4/open.m4.
9843         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
9844         access and the filename ends in a slash. Code copied from lib/open.c.
9845         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
9846         * tests/test-fopen.c (main): Check against bug with trailing slash.
9847
9848 2008-08-29  Bruno Haible  <bruno@clisp.org>
9849
9850         Avoid some "gcc -pedantic" warnings.
9851         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
9852         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
9853         * lib/dirent.in.h: Likewise.
9854         * lib/fcntl.in.h: Likewise.
9855         * lib/float.in.h: Likewise.
9856         * lib/iconv.in.h: Likewise.
9857         * lib/inttypes.in.h: Likewise.
9858         * lib/locale.in.h: Likewise.
9859         * lib/math.in.h: Likewise.
9860         * lib/netinet_in.in.h: Likewise.
9861         * lib/search.in.h: Likewise.
9862         * lib/signal.in.h: Likewise.
9863         * lib/stdarg.in.h: Likewise.
9864         * lib/stdint.in.h: Likewise.
9865         * lib/stdio.in.h: Likewise.
9866         * lib/stdlib.in.h: Likewise.
9867         * lib/string.in.h: Likewise.
9868         * lib/strings.in.h: Likewise.
9869         * lib/sys_select.in.h: Likewise.
9870         * lib/sys_socket.in.h: Likewise.
9871         * lib/sys_stat.in.h: Likewise.
9872         * lib/sys_time.in.h: Likewise.
9873         * lib/sysexits.in.h: Likewise.
9874         * lib/time.in.h: Likewise.
9875         * lib/unistd.in.h: Likewise.
9876         * lib/wchar.in.h: Likewise.
9877         * lib/wctype.in.h: Likewise.
9878         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
9879         * modules/fchdir (Makefile.am): Likewise.
9880         * modules/fcntl (Makefile.am): Likewise.
9881         * modules/float (Makefile.am): Likewise.
9882         * modules/iconv_open (Makefile.am): Likewise.
9883         * modules/inttypes (Makefile.am): Likewise.
9884         * modules/locale (Makefile.am): Likewise.
9885         * modules/math (Makefile.am): Likewise.
9886         * modules/netinet_in (Makefile.am): Likewise.
9887         * modules/search (Makefile.am): Likewise.
9888         * modules/signal (Makefile.am): Likewise.
9889         * modules/stdarg (Makefile.am): Likewise.
9890         * modules/stdint (Makefile.am): Likewise.
9891         * modules/stdio (Makefile.am): Likewise.
9892         * modules/stdlib (Makefile.am): Likewise.
9893         * modules/string (Makefile.am): Likewise.
9894         * modules/strings (Makefile.am): Likewise.
9895         * modules/sys_select (Makefile.am): Likewise.
9896         * modules/sys_socket (Makefile.am): Likewise.
9897         * modules/sys_stat (Makefile.am): Likewise.
9898         * modules/sys_time (Makefile.am): Likewise.
9899         * modules/sysexits (Makefile.am): Likewise.
9900         * modules/time (Makefile.am): Likewise.
9901         * modules/unistd (Makefile.am): Likewise.
9902         * modules/wchar (Makefile.am): Likewise.
9903         * modules/wctype (Makefile.am): Likewise.
9904         Reported by Reuben Thomas <rrt@sc3d.org>.
9905
9906 2008-08-29  Bruno Haible  <bruno@clisp.org>
9907
9908         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
9909         any more.
9910
9911 2008-08-29  Simon Josefsson  <simon@josefsson.org>
9912
9913         * MODULES.html.sh (Misc): Add bitrotate.
9914
9915         * modules/bitrotate: New file.
9916
9917         * lib/bitrotate.h: New file.
9918
9919         * modules/bitrotate-tests: New file.
9920
9921         * tests/test-bitrotate.c: New file.
9922
9923         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
9924         on the bitrotate module.
9925
9926         * lib/arctwo.c: Use new bitrotate module.
9927
9928 2008-08-29  Jim Meyering  <meyering@redhat.com>
9929
9930         bootstrap: merge changes from coreutils
9931         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
9932         of copied files.  Remove a kludge, now that this is fixed.
9933         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
9934         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
9935         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
9936
9937 2008-08-29  Bruno Haible  <bruno@clisp.org>
9938
9939         * MODULES.html.sh: Remove --cvs-urls option.
9940
9941 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
9942
9943         maint.mk: adjust to file name change
9944         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
9945
9946 2008-08-28  Jim Meyering  <meyering@redhat.com>
9947
9948         * modules/getndelim2 (License): Relicense to LGPLv2+.
9949         Approved by Richard Stallman for the version of 1995, and by
9950         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
9951
9952 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
9953
9954         * lib/getdelim.c (flockfile, funlockfile): Make all of them
9955         dummy if one is not available.  Do not touch them if
9956         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
9957         (getc_maybe_unlocked): New.
9958         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
9959
9960 2008-08-26  Eric Blake  <ebb9@byu.net>
9961
9962         doc/INSTALL: resync from autoconf
9963         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
9964         (INSTALL_PRELUDE): Delete; this is done more efficiently by
9965         moving...
9966         * install.texi [!autoconf]: ...here.  Resync from autoconf.
9967         * INSTALL: Regenerate.
9968         * INSTALL.ISO: New file.
9969         * INSTALL.UTF-8: Likewise.
9970
9971 2008-08-26  Jim Meyering  <meyering@redhat.com>
9972
9973         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
9974         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
9975         these definitions conditional, so that they may be overridden, too.
9976
9977 2008-08-26  Bruno Haible  <bruno@clisp.org>
9978
9979         Generate INSTALL file variants with prettier quotes.
9980         * doc/Makefile (INSTALL_PRELUDE): New macro.
9981         (INSTALL): Use it.
9982         (INSTALL.ISO, INSTALL.UTF-8): New rules.
9983
9984 2008-08-26  Bruno Haible  <bruno@clisp.org>
9985
9986         Run makeinfo in an English locale.
9987         * doc/Makefile (MAKEINFO): New variable.
9988
9989 2008-08-26  Bruno Haible  <bruno@clisp.org>
9990
9991         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
9992         Suggested by Eric Blake.
9993
9994 2008-08-25  Bruno Haible  <bruno@clisp.org>
9995
9996         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
9997
9998 2008-08-25  Eric Blake  <ebb9@byu.net>
9999
10000         c-stack: test that stack overflow can be caught
10001         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
10002         that platform allows handling stack overflow; at least OS/2 EMX
10003         has sigaltstack, but crashes before transferring control to
10004         handler on stack overflow.
10005         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
10006         check for HAVE_STACK_OVERFLOW_HANDLING.
10007         Reported by Elbert Pol.
10008
10009 2008-08-25  Bruno Haible  <bruno@clisp.org>
10010
10011         * doc/posix-functions/strftime.texi: Fix description of strftime
10012         module.
10013
10014 2008-08-24  Bruno Haible  <bruno@clisp.org>
10015
10016         * tests/uniwidth/test-uc_width2.c: New file.
10017         * tests/uniwidth/test-uc_width2.sh: New file.
10018         * modules/uniwidth/width-tests (Files): Add the new files.
10019         (TESTS): Add uniwidth/test-uc_width2.sh.
10020         (TESTS_ENVIRONMENT): New variable.
10021         (check_PROGRAMS): Add test-uc_width2.
10022         (test_uc_width2_SOURCES): New variable.
10023
10024         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
10025         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
10026         not 0x00AB.
10027         Reported by Alexander V. Lukyanov <lav@netis.ru>.
10028
10029 2008-08-22  Eric Blake  <ebb9@byu.net>
10030
10031         test-lock, test-tls: mention why a test is skipped
10032         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
10033         skipped.
10034         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
10035
10036         count-one-bits: relax license
10037         * modules/count-one-bits (License): Relicense to LGPLv2+.
10038         Suggested by Ludovic Courtès, approved by Ben Pfaff.
10039
10040 2008-08-22  Andreas Schwab  <schwab@suse.de>
10041
10042         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
10043         Remove spurious space in assignment.
10044
10045 2008-08-21  Simon Josefsson  <simon@josefsson.org>
10046
10047         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
10048         Paul Eggert <eggert@CS.UCLA.EDU>.
10049
10050 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
10051
10052         * modules/gettext: Add m4/threadlib.m4.
10053
10054 2008-08-19  Eric Blake  <ebb9@byu.net>
10055
10056         test-c-stack: fix compilation failure on FreeBSD 5.0
10057         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
10058         headers before <sys/resource.h>.
10059         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
10060         the bug.
10061         Reported by Nelson H. F. Beebe.
10062
10063         strverscmp: migrate from "strverscmp.h" to <string.h>
10064         * modules/string (Makefile.am): Add new hooks.
10065         * modules/strverscmp (Files): Remove strverscmp.h.
10066         (Depends-on): Add string.
10067         (configure.ac): Add indicator.
10068         (Include): Mention new header.
10069         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
10070         defaults.
10071         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
10072         results.
10073         * lib/strverscmp.h: Delete.
10074         * lib/string.in.h (strverscmp): Provide declaration, when needed.
10075         * tests/test-strverscmp.c (includes): Adjust client.
10076         * lib/check-version.c (includes): Likewise.
10077         * NEWS: Document the change.
10078
10079         strverscmp: add unit test
10080         * modules/strverscmp-tests: New file.
10081         * tests/test-strverscmp.c: Likewise.
10082
10083 2008-08-19  Simon Josefsson  <simon@josefsson.org>
10084
10085         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
10086         regarding Windows crypto stuff, from Mono.
10087
10088 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
10089
10090         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
10091         if present, for intel RND.  Return error on failures.
10092
10093 2008-08-18  Ben Pfaff  <blp@gnu.org>
10094
10095         gitlog-to-changelog: give better diagnostic for failed pipe-open
10096         * build-aux/gitlog-to-changelog: Improve error message: suggest
10097         that the version of Git may be too old.
10098
10099 2008-08-18  Simon Josefsson  <simon@josefsson.org>
10100
10101         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
10102         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
10103
10104 2008-08-18  Bruno Haible  <bruno@clisp.org>
10105
10106         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
10107         pthread_in_use().
10108
10109 2008-08-18  Bruno Haible  <bruno@clisp.org>
10110
10111         * lib/glthread/threadlib.c: Include <pthread.h>.
10112
10113 2008-08-18  Bruno Haible  <bruno@clisp.org>
10114
10115         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
10116         glthread_recursive_lock_* macros.
10117         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
10118         Fix syntax error.
10119
10120 2008-08-18  Bruno Haible  <bruno@clisp.org>
10121
10122         * lib/glthread/thread.c: Avoid forcing a context switch right after
10123         thread creation.
10124
10125 2008-08-17  Bruno Haible  <bruno@clisp.org>
10126
10127         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
10128         * lib/glthread/thread.h: Provide Win32 specific implementation.
10129         * modules/thread (Files): Add lib/glthread/thread.c.
10130         (Depends-on): Add lock.
10131         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
10132
10133 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10134
10135         New module 'yield'.
10136         * modules/yield: New file.
10137         * lib/glthread/yield.h: New file.
10138         * m4/yield.m4: New file.
10139         * MODULES.html.sh (Multithreading): Add yield.
10140
10141 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10142
10143         New module 'thread'.
10144         * modules/thread: New file.
10145         * lib/glthread/thread.h: New file.
10146         * m4/thread.m4: New file.
10147         * MODULES.html.sh (Multithreading): Add thread.
10148
10149 2008-08-17  Bruno Haible  <bruno@clisp.org>
10150
10151         * lib/glthread/lock.h: Include <stdlib.h> always.
10152         * lib/glthread/tls.h: Likewise.
10153         * lib/glthread/cond.h: Likewise.
10154
10155 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10156
10157         New module 'cond'.
10158         * modules/cond: New file.
10159         * lib/glthread/cond.h: New file.
10160         * lib/glthread/cond.c: New file.
10161         * m4/cond.m4: New file.
10162         * MODULES.html.sh (Multithreading): Add cond.
10163
10164 2008-08-16  Eric Blake  <ebb9@byu.net>
10165
10166         c-stack: fix regression on Irix 5.3 from 2008-06-21
10167         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
10168         sa_sigaction...
10169         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
10170         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
10171         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
10172         * modules/signal (Makefile.am): Use the value.
10173         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
10174         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
10175         * doc/posix-headers/signal.texi (signal.h): Document this
10176         portability issue.
10177         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
10178         Reported by Tom G. Christensen.
10179
10180 2008-08-17  Bruno Haible  <bruno@clisp.org>
10181
10182         New module 'threadlib'.
10183         * modules/threadlib: New file.
10184         * lib/glthread/threadlib.c: New file, extracted from
10185         lib/glthread/lock.c.
10186         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
10187         functions.
10188         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
10189         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
10190         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
10191         macros.
10192         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
10193         (gl_DISABLE_THREADS): Remove macro.
10194         * modules/lock (Files): Remove build-aux/config.rpath.
10195         (Depends-on): Remove havelib. Add threadlib.
10196         (configure.ac-early): Remove section.
10197         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
10198         * modules/tls (Depends-on): Remove lock. Add threadlib.
10199         (Link): New section, copied from threadlib.
10200         * MODULES.html.sh (Multithreading): Add threadlib.
10201
10202 2008-08-14  Bruno Haible  <bruno@clisp.org>
10203
10204         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
10205         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
10206         glthread_rwlock_unlock, glthread_rwlock_destroy,
10207         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
10208         glthread_recursive_lock_destroy): Define as macros always.
10209         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
10210         glthread_lock_lock.
10211         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
10212         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
10213         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
10214         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
10215         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
10216         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
10217         (glthread_recursive_lock_lock_func): Renamed from
10218         glthread_recursive_lock_lock.
10219         (glthread_recursive_lock_unlock_func): Renamed from
10220         glthread_recursive_lock_unlock.
10221         (glthread_recursive_lock_destroy_func): Renamed from
10222         glthread_recursive_lock_destroy.
10223
10224 2008-08-14  Bruno Haible  <bruno@clisp.org>
10225
10226         * lib/glthread/lock.h: Renamed from lib/lock.h.
10227         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
10228         * lib/glthread/tls.h: Renamed from lib/tls.h.
10229         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
10230         * lib/fstrcmp.c: Update includes.
10231         * lib/strsignal.c: Update includes.
10232         * modules/lock (Files, Makefile.am): Update.
10233         (Include): Change to "glthread/lock.h".
10234         * modules/tls (Files, Makefile.am): Update.
10235         (Include): Change to "glthread/tls.h".
10236         * tests/test-lock.c: Update includes.
10237         * tests/test-tls.c: Update includes.
10238         * NEWS: Mention the renamed header files.
10239
10240 2008-08-11  Jim Meyering  <meyering@redhat.com>
10241
10242         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
10243
10244 2008-08-11  Eric Blake  <ebb9@byu.net>
10245
10246         test-c-stack: avoid C99-ism
10247         * tests/test-c-stack.c (main): Fix whitespace, move declaration
10248         before statement.
10249         Reported by Alain Guibert.
10250
10251 2008-08-10  Jim Meyering  <meyering@redhat.com>
10252
10253         ensure that return value of uinttostr et al are not ignored
10254         * lib/inttostr.h (__GNUC_PREREQ): Define.
10255         (__attribute_warn_unused_result__): Define.
10256         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
10257
10258 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
10259
10260         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
10261         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
10262
10263 2008-08-07  Jim Meyering  <meyering@redhat.com>
10264
10265         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
10266
10267         * modules/mkstemp (License): Relicense under LGPLv2+.
10268         * modules/tempname (License): Likewise.
10269
10270 2008-08-06  Bruno Haible  <bruno@clisp.org>
10271
10272         * lib/poll.c (poll): Further micro-optimization.
10273
10274 2008-08-06  Jim Meyering  <meyering@redhat.com>
10275
10276         inet_pton.c: use locale-independent tolower
10277         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
10278         (inet_pton6): Use c_tolower rather than tolower.
10279         * modules/inet_pton (Depends-on): Add c-ctype.
10280
10281 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
10282
10283         * lib/poll.c (poll): Avoid division when timeout is 0, cache
10284         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
10285
10286 2008-08-06  Jim Meyering  <meyering@redhat.com>
10287
10288         * modules/inet_pton (License): Relicense under LGPLv2+.
10289
10290 2008-08-03  Bruno Haible  <bruno@clisp.org>
10291
10292         Additional non-aborting API for lock and tls.
10293         * lib/lock.h: Include <errno.h>.
10294         (glthread_lock_init): New macro/function.
10295         (gl_lock_init): Define as wrapper around glthread_lock_init.
10296         (glthread_lock_lock): New macro/function.
10297         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
10298         (glthread_lock_unlock): New macro/function.
10299         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
10300         (glthread_lock_destroy): New macro/function.
10301         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
10302         (glthread_rwlock_init): New macro/function.
10303         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
10304         (glthread_rwlock_rdlock): New macro/function.
10305         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
10306         (glthread_rwlock_wrlock): New macro/function.
10307         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
10308         (glthread_rwlock_unlock): New macro/function.
10309         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
10310         (glthread_rwlock_destroy): New macro/function.
10311         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
10312         (glthread_recursive_lock_init): New macro/function.
10313         (gl_recursive_lock_init): Define as wrapper around
10314         glthread_recursive_lock_init.
10315         (glthread_recursive_lock_lock): New macro/function.
10316         (gl_recursive_lock_lock): Define as wrapper around
10317         glthread_recursive_lock_lock.
10318         (glthread_recursive_lock_unlock): New macro/function.
10319         (gl_recursive_lock_unlock): Define as wrapper around
10320         glthread_recursive_lock_unlock.
10321         (glthread_recursive_lock_destroy): New macro/function.
10322         (gl_recursive_lock_destroy): Define as wrapper around
10323         glthread_recursive_lock_destroy.
10324         (glthread_once): New macro/function.
10325         (gl_once): Define as wrapper around glthread_once.
10326         Update function declarations.
10327         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
10328         glthread_rwlock_init. Return error code.
10329         (glthread_rwlock_rdlock_multithreaded): Renamed from
10330         glthread_rwlock_rdlock. Return error code.
10331         (glthread_rwlock_wrlock_multithreaded): Renamed from
10332         glthread_rwlock_wrlock. Return error code.
10333         (glthread_rwlock_unlock_multithreaded): Renamed from
10334         glthread_rwlock_unlock. Return error code.
10335         (glthread_rwlock_destroy_multithreaded): Renamed from
10336         glthread_rwlock_destroy. Return error code.
10337         (glthread_recursive_lock_init_multithreaded): Renamed from
10338         glthread_recursive_lock_init. Return error code.
10339         (glthread_recursive_lock_lock_multithreaded): Renamed from
10340         glthread_recursive_lock_lock. Return error code.
10341         (glthread_recursive_lock_unlock_multithreaded): Renamed from
10342         glthread_recursive_lock_unlock. Return error code.
10343         (glthread_recursive_lock_destroy_multithreaded): Renamed from
10344         glthread_recursive_lock_destroy. Return error code.
10345         (glthread_once_call): Make static.
10346         (glthread_once_multithreaded): Renamed from glthread_once.
10347         * lib/tls.h: Include <errno.h>.
10348         (glthread_tls_key_init): New macro/function.
10349         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
10350         (glthread_tls_set): New macro/function.
10351         (gl_tls_set): Define as wrapper around glthread_tls_set.
10352         (glthread_tls_key_destroy): New macro/function.
10353         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
10354         Update function declarations.
10355         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
10356         glthread_tls_get.
10357         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
10358
10359 2008-08-04  Eric Blake  <ebb9@byu.net>
10360
10361         gnumakefile: use space, not TAB, outside of targets
10362         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
10363
10364 2008-08-02  Jim Meyering  <meyering@redhat.com>
10365
10366         getdate.y: avoid locale-dependent date parsing failure
10367         In Turkish locales, getdate would fail to recognize keywords
10368         containing a lowercase "i".  The solution is not to rely on
10369         locale-sensitive case-conversion.
10370         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
10371         (lookup_word): Use c_toupper in place of toupper.
10372         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
10373         Reported by Vefa Bicakci <bicave@superonline.com> in
10374         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
10375         * modules/getdate (Depends-on): Add c-ctype.
10376
10377 2008-08-02  Bruno Haible  <bruno@clisp.org>
10378
10379         * gnulib-tool (func_import): When updating or creating a .gitignore
10380         file, prepend each added line with a slash, and ignore leading slashes
10381         from the existing lines.
10382         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
10383
10384 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10385
10386         Portability fix for GNU make 3.79.1.
10387         * top/GNUmakefile: Avoid 'else COND', which older GNU make
10388         versions do not understand.
10389
10390 2008-08-01  Bruno Haible  <bruno@clisp.org>
10391
10392         Work around bug of HP-UX 10.20 cc with -0.0 literal.
10393         * tests/test-isnanf.h (zero): New variable.
10394         (main): Avoid literal -0.0f.
10395         * tests/test-isnand.h (zero): New variable.
10396         (main): Avoid literal -0.0.
10397         * tests/test-isnanl.h (zero): New variable.
10398         (main): Avoid literal -0.0L.
10399         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
10400         (test_float, test_double, test_long_double): Avoid literals -0.0f,
10401         -0.0, -0.0L.
10402         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
10403         (test_signbitd): Avoid literal -0.0.
10404         (test_signbitl): Avoid literal -0.0L.
10405         * tests/test-ceilf1.c (zero): New variable.
10406         (main): Avoid literal -0.0f.
10407         * tests/test-ceill.c (zero): New variable.
10408         (main): Avoid literal -0.0L.
10409         * tests/test-floorf1.c (zero): New variable.
10410         (main): Avoid literal -0.0f.
10411         * tests/test-floorl.c (zero): New variable.
10412         (main): Avoid literal -0.0L.
10413         * tests/test-roundf1.c (zero): New variable.
10414         (main): Avoid literal -0.0f.
10415         * tests/test-round1.c (zero): New variable.
10416         (main): Avoid literal -0.0.
10417         * tests/test-roundl.c (zero): New variable.
10418         (main): Avoid literal -0.0L.
10419         * tests/test-truncf1.c (zero): New variable.
10420         (main): Avoid literal -0.0f.
10421         * tests/test-trunc1.c (zero): New variable.
10422         (main): Avoid literal -0.0.
10423         * tests/test-truncl.c (zero): New variable.
10424         (main): Avoid literal -0.0L.
10425         * tests/test-frexp.c (zero): New variable.
10426         (main): Avoid literal -0.0.
10427         * tests/test-frexpl.c (zero): New variable.
10428         (main): Avoid literal -0.0L.
10429         * tests/test-ldexpl.c (zero): New variable.
10430         (main): Avoid literal -0.0L.
10431         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
10432         (zerod, zerol): New variables.
10433         (test_function): Avoid literals -0.0, -0.0L.
10434         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
10435         (zerod, zerol): New variables.
10436         (test_function): Avoid literals -0.0, -0.0L.
10437         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
10438         (zerod, zerol): New variables.
10439         (test_function): Avoid literals -0.0, -0.0L.
10440         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
10441         (zerod, zerol): New variables.
10442         (test_function): Avoid literals -0.0, -0.0L.
10443         * tests/test-strtod.c (zero): New variable.
10444         (main): Avoid literal -0.0.
10445         Reported by Jonathan C. Patschke <jp@centtech.com>.
10446
10447 2008-07-31  Jim Meyering  <meyering@redhat.com>
10448
10449         sha256.h: correct definition of SHA224_DIGEST_SIZE
10450         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
10451         Reported by Paulie Pena IV <paulie4@gmail.com>.
10452         Define as 224 / 8, rather than as a literal.
10453         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
10454         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
10455         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
10456
10457 2008-07-31  Bruno Haible  <bruno@clisp.org>
10458
10459         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
10460         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
10461         Reported by Jonathan Patschke <jp@centtech.com>.
10462
10463 2008-07-31  Bruno Haible  <bruno@clisp.org>
10464
10465         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
10466         Reported by Paolo Bonzini <bonzini@gnu.org>.
10467
10468 2008-07-30  Eric Blake  <ebb9@byu.net>
10469
10470         test-strtod: allow compilation without -lm
10471         * tests/test-strtod.c (main): Avoid link dependence on fabs.
10472         Reported by Dennis Clarke <blastwave@gmail.com>.
10473
10474 2008-07-28  Jim Meyering  <meyering@redhat.com>
10475
10476         bootstrap: work also when there are no .po files in po/
10477         * build-aux/bootstrap (update_po_files): Complete the change
10478         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
10479
10480 2008-07-27  Jim Meyering  <meyering@redhat.com>
10481
10482         * users.txt: Add zile.
10483
10484 2008-07-26  Ben Pfaff  <blp@gnu.org>
10485
10486         Add missing dependencies on new m4/exponent[fdl].m4 files.
10487         * modules/isnanf-nolibm: Add m4/exponentf.m4.
10488         * modules/isnand-nolibm: Add m4/exponentd.m4.
10489         * modules/isnanl-nolibm: Add m4/exponentl.m4.
10490         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
10491         m4/isnan[fdl].m4, because the macros actually used moved.
10492         Reported by Jim Meyering.
10493
10494 2008-07-14  Ben Pfaff  <blp@gnu.org>
10495
10496         Add isinf module.
10497         * lib/isinf.c: New file.
10498         * lib/math.in.h: Define isinf macro if we have decided to replace
10499         it.
10500         * m4/isinf.m4: New file.
10501         * m4/math_h.m4: Initialize and substitute variables for isinf
10502         module.
10503         * modules/isinf: New file.
10504         * modules/isinf-tests: New file.
10505         * modules/math: Add substitutions for new module.
10506         * tests/test-isinf.c: New file.
10507         * doc/posix-functions/isinf.texi: Mention new module.
10508         * MODULES.html.sh: Mention new module.
10509
10510 2008-07-14  Ben Pfaff  <blp@gnu.org>
10511
10512         Factor out some macros for use by additional modules.
10513         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
10514         exponentf.m4.
10515         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
10516         exponentd.m4.
10517         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
10518         file exponentl.m4.
10519         * m4/exponentf.m4: New file.
10520         * m4/exponentd.m4: New file.
10521         * m4/exponentl.m4: New file.
10522         * modules/isnanf: Use new file m4/exponentf.m4.
10523         * modules/isnand: Use new file m4/exponentd.m4.
10524         * modules/isnanl: Use new file m4/exponentl.m4.
10525
10526 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
10527
10528         mktime.c: normalize tp->tm_isdst value to -1/0/1.
10529         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
10530         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
10531         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
10532
10533         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
10534         readlink on platforms without PATH_MAX.
10535
10536 2008-07-21  Eric Blake  <ebb9@byu.net>
10537
10538         Warn, not fail, on stale version.
10539         * top/GNUmakefile (_curr-ver): Tone down previous patch.
10540
10541         Don't allow installation with stale devel version number.
10542         * top/GNUmakefile (_is-install-target): New macro.
10543         (_curr-ver): Forbid installation with stale version number.
10544
10545 2008-07-20  Bruno Haible  <bruno@clisp.org>
10546
10547         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
10548         TESTS_ENVIRONMENT.
10549         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
10550
10551 2008-07-20  Bruno Haible  <bruno@clisp.org>
10552
10553         * lib/c-stack.h (c_stack_action): Add documentation.
10554         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
10555
10556 2008-07-20  Bruno Haible  <bruno@clisp.org>
10557
10558         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
10559         * modules/readlink (License): Likewise.
10560
10561 2008-07-17  Eric Blake  <ebb9@byu.net>
10562
10563         * modules/c-stack (Link): Fix typo.
10564
10565         Make c-stack use libsigsegv, when available.
10566         * modules/c-stack (Depends-on): Add libsigsegv.
10567         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
10568         needed.
10569         * lib/c-stack.c (SIGSTKSZ): Define fallback.
10570         (segv_handler, overflow_handler, c_stack_action)
10571         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
10572         implementation when libsigsegv is available, but only when using
10573         the library is necessary.
10574         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
10575         comment, explaining why XSI check fails on Linux.
10576         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
10577         * tests/test-c-stack2.sh: Tweak skip message.
10578         * NEWS: Document new link-time requirements.
10579
10580 2008-07-16  Eric Blake  <ebb9@byu.net>
10581
10582         c-stack: Expose false positives when not using libsigsegv.
10583         * modules/c-stack-tests (Files): Expand test.
10584         * tests/test-c-stack.c (main): Add means to conditionally trigger
10585         non-overflow SIGSEGV.
10586         * tests/test-c-stack2.sh: New file.
10587
10588 2008-07-14  Bruno Haible  <bruno@clisp.org>
10589
10590         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
10591         Reported by Eric Blake.
10592
10593 2008-07-14  Sam Steingold  <sds@gnu.org>
10594             Bruno Haible  <bruno@clisp.org>
10595
10596         New module libsigsegv.
10597         * modules/libsigsegv: New file.
10598         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
10599         modifications.
10600         * MODULES.html.sh (Signal handling): New section.
10601
10602 2008-07-14  Bruno Haible  <bruno@clisp.org>
10603
10604         * modules/unictype/ctype-* (Description): Add the word "function".
10605         Improves the resulting doc in MODULES.html.
10606
10607 2008-07-12  Ben Pfaff  <blp@gnu.org>
10608
10609         Add longlong module.
10610         * modules/longlong: New file.
10611
10612 2008-07-12  Bruno Haible  <bruno@clisp.org>
10613
10614         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
10615         to empty.
10616
10617 2008-07-10  Ben Pfaff  <blp@gnu.org>
10618
10619         Add isnan module.
10620         * doc/posix-functions/isnan.texi: Mention new module.
10621         * lib/math.in.h: Define isnan macro if we have decided to replace
10622         it.
10623         * m4/isnan.m4: New file.
10624         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
10625         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
10626         also.
10627         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
10628         redundancy.
10629         * m4/math_h.m4: Initialize and substitute variables for isnan
10630         module.
10631         * modules/isnan: New file.
10632         * modules/isnan-tests: New file.
10633         * modules/math: Add substitutions for new module.
10634         * tests/test-isnan.c: New file.
10635         * MODULES.html.sh: Mention new module.
10636
10637 2008-07-10  Ben Pfaff  <blp@gnu.org>
10638
10639         Add isnanf module.
10640         * lib/isnanf.m4: New file.
10641         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
10642         (gl_HAVE_ISNANF_IN_LIBM): New macro.
10643         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
10644         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
10645         * modules/isnanf: New file.
10646         * modules/isnanf-tests: New file.
10647         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
10648         files.
10649         * tests/test-isnanf-nolibm.c: factored most of its contents into
10650         new file tests/test-isnanf.h.
10651         * tests/test-isnanf.h: New file.
10652         * tests/test-isnanf.c: New file.
10653         * MODULES.html.sh: Mention new module.
10654         * doc/glibc-functions/isnanf.texi: Mention new module.
10655
10656 2008-07-10  Ben Pfaff  <blp@gnu.org>
10657
10658         Add isnand module.
10659         * lib/isnand.h: New file.
10660         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
10661         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
10662         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
10663         functionality also.
10664         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
10665         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
10666         (gl_HAVE_ISNAND_IN_LIBM): New macro.
10667         * modules/isnand: New file.
10668         * modules/isnand-tests: New file.
10669         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
10670         files.
10671         * tests/test-isnand-nolibm.c: factored most of its contents into
10672         new file tests/test-isnand.h.
10673         * tests/test-isnand.h: New file.
10674         * tests/test-isnand.c: New file.
10675         * MODULES.html.sh: Mention new module.
10676
10677 2008-07-10  Ben Pfaff  <blp@gnu.org>
10678
10679         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
10680         * lib/isnand.h: Rename lib/isnand-nolibm.h.
10681         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
10682         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
10683         * modules/isnanf-nolibm: Update references to renamed files.
10684         * modules/isnand-nolibm: Likewise.
10685         * modules/isnanf-nolibm-tests: Likewise.
10686         * modules/isnand-nolibm-tests: Likewise.
10687         * lib/frexp.c: Likewise.
10688         * lib/isfinite.c: Likewise.
10689         * lib/signbitd.c: Likewise.
10690         * lib/signbitf.c: Likewise.
10691         * lib/vasnprintf.c: Likewise.
10692         * tests/test-ceilf1.c: Likewise.
10693         * tests/test-ceilf2.c: Likewise.
10694         * tests/test-floorf1.c: Likewise.
10695         * tests/test-floorf2.c: Likewise.
10696         * tests/test-frexp.c: Likewise.
10697         * tests/test-round1.c: Likewise.
10698         * tests/test-round2.c: Likewise.
10699         * tests/test-roundf1.c: Likewise.
10700         * tests/test-strtod.c: Likewise.
10701         * tests/test-trunc1.c: Likewise.
10702         * tests/test-trunc2.c: Likewise.
10703         * tests/test-truncf1.c: Likewise.
10704         * tests/test-truncf2.c: Likewise.
10705         * NEWS: Mention the renamed header files.
10706
10707 2008-07-11  Jim Meyering  <meyering@redhat.com>
10708
10709         vc-list-files: make the last-resort awk code more portable
10710         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
10711         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
10712         does not support it.
10713
10714 2008-07-10  Eric Blake  <ebb9@byu.net>
10715
10716         Work with tar's bootstrap.
10717         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
10718         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
10719         an m4 comment.
10720
10721 2008-07-09  Jim Meyering  <meyering@redhat.com>
10722
10723         posix-shell.m4: fix typo that made this test malfunction
10724         * m4/posix-shell.m4: Remove capitalization in variable name.
10725
10726 2008-07-08  Bruno Haible  <bruno@clisp.org>
10727
10728         * m4/onceonly.m4: Update comments.
10729         Reported by Ben Pfaff <blp@cs.stanford.edu>.
10730
10731 2008-07-04  Jim Meyering  <meyering@redhat.com>
10732
10733         * users.txt: Add vc-dwim.
10734         (bison, coreutils): Use the gitweb URL.
10735
10736 2008-07-03  Jim Meyering  <meyering@redhat.com>
10737
10738         * users.txt: Add libffcall.  From Sam Steingold.
10739
10740 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
10741
10742         getdate.y: do not ignore TZ with relative day, month or year offset
10743         * lib/getdate.y (get_date): Move the tz-handling block to follow the
10744         relative-date-handling, since otherwise, the latter would clobber the
10745         sole output (an updated Start value) of the tz-handling block.
10746         * tests/test-getdate.c: Tests for the fix
10747
10748 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10749
10750         Recognize 'foo_LIBRARIES += libgnu.a'.
10751         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
10752         makefile snippet has already specified an installation location,
10753         also using '+='.
10754
10755 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
10756
10757         getdate.y: factor out common actions
10758         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
10759         Use them in place of open-coded actions.
10760
10761 2008-07-01  Simon Josefsson  <simon@josefsson.org>
10762
10763         Add self-test for getdate module.
10764         * modules/getdate-tests: New file.
10765         * tests/test-getdate.c: New file.
10766
10767 2008-06-29  Bruno Haible  <bruno@clisp.org>
10768
10769         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
10770         .gitignore.
10771         Reported by Sylvain Beucler <beuc@beuc.net>.
10772
10773 2008-06-29  Bruno Haible  <bruno@clisp.org>
10774
10775         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
10776         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
10777
10778 2008-06-29  Bruno Haible  <bruno@clisp.org>
10779
10780         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
10781         EXTRA_DIST.
10782         Reported by Sylvain Beucler <beuc@beuc.net>.
10783
10784 2008-06-26  Jim Meyering  <meyering@redhat.com>
10785
10786         make several modules depend on the "open" module
10787         This provides slightly increased consistency when opening-for-write
10788         the name of a non-directory spelled with a trailing slash.
10789         * modules/chdir-safer: Likewise.
10790         * modules/chown: Likewise.
10791         * modules/clean-temp: Likewise.
10792         * modules/copy-file: Likewise.
10793         * modules/fchdir: Likewise.
10794         * modules/fcntl-safer: Likewise.
10795         * modules/pipe: Likewise.
10796         * modules/utime: Likewise.
10797         Prompted by Eric Blake and Bruno Haible.
10798
10799 2008-06-24  Andreas Schwab  <schwab@suse.de>
10800
10801         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
10802         literals can be used as initializers for global variables.
10803
10804 2008-06-23  Eric Blake  <ebb9@byu.net>
10805
10806         Make gnulib-cache.m4 easier to diff.
10807         * gnulib-tool (func_import): Allow newlines when reading cached
10808         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
10809
10810 2008-06-23  Bruno Haible  <bruno@clisp.org>
10811
10812         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
10813         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
10814         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
10815         m4/signalblocking.m4.
10816         (gl_PREREQ_SIGACTION): Don't invoke it.
10817         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
10818         gl_PREREQ_SIG_HANDLER_H.
10819         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
10820         Don't check for sigaction here.
10821
10822 2008-06-23  Bruno Haible  <bruno@clisp.org>
10823
10824         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
10825         (install_handlers): Don't set the SA_RESETHAND flag.
10826
10827 2008-06-23  Bruno Haible  <bruno@clisp.org>
10828
10829         * m4/sigaction.m4: Comment fixes.
10830         * lib/signal.in.h: Likewise.
10831
10832 2008-06-23  Eric Blake  <ebb9@byu.net>
10833
10834         Fix typo.
10835         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
10836
10837         Avoid SA_ namespace.
10838         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
10839         Reported by Ralf Wildenhues.
10840
10841         Avoid test failure due to SA_RESTORER.
10842         * tests/test-sigaction.c (SA_MASK): New macro.
10843         (main): Avoid failing due to extension flags being set.
10844         Reported by Jim Meyering.
10845
10846         Revert use of sig-handler.h in sigprocmask.c.
10847         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
10848         it requires the existence of struct sigaction.
10849         * lib/sigprocmask.c (handler_t): Restore typedef.
10850         (rpl_signal, old_handlers): Use local type.
10851
10852 2008-06-22  Bruno Haible  <bruno@clisp.org>
10853
10854         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
10855         conditionally.
10856         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10857
10858 2008-06-22  Bruno Haible  <bruno@clisp.org>
10859
10860         * doc/posix-functions/siginterrupt.texi: Move note.
10861
10862         * lib/signal.in.h (SA_RESTART): New macro.
10863         * lib/sigaction.c: Update comment.
10864
10865         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
10866
10867         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
10868         (gl_PREREQ_SIGPROCMASK): Invoke it.
10869         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
10870
10871         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
10872
10873         * lib/sigprocmask.c: Update a comment.
10874
10875 2008-06-21  Eric Blake  <ebb9@byu.net>
10876
10877         Use sigaction module rather than signal().
10878         * modules/c-stack (Depends-on): Add sigaction.
10879         * modules/fatal-signal (Depends-on): Likewise.
10880         * modules/nanosleep (Depends-on): Likewise.
10881         * modules/sigprocmask (Files): Add sig-handler.h.
10882         * modules/sigaction (Files): Likewise.
10883         * lib/sig-handler.h (get_handler): New file, suggested by Paul
10884         Eggert.
10885         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
10886         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
10887         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
10888         (init_fatal_signals): Likewise.
10889         * lib/nanosleep.c (rpl_nanosleep): Likewise.
10890         (siginterrupt): Delete fallback.
10891         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
10892         instead.
10893         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
10894         siginterrupt.
10895
10896         New module sigaction, for mingw.
10897         * modules/sigaction: New module...
10898         * modules/sigaction-tests: ...and its test.
10899         * m4/sigaction.m4: New file.
10900         * lib/sigaction.c: Likewise.
10901         * tests/test-sigaction.c: Likewise.
10902         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
10903         * modules/signal (Makefile.am): Likewise.
10904         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
10905         needed.
10906         * doc/posix-headers/signal.texi (signal.h): Mention provided
10907         types.
10908         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
10909         that sigaction is preferable.
10910         * doc/posix-functions/sigaction.texi (sigaction): Mention new
10911         module.
10912         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
10913         sigaction.
10914
10915         Improve robustness of sigprocmask by overriding signal.
10916         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
10917         is in use.
10918         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
10919         (SIGKILL, SIGSTOP): Provide fallbacks.
10920         (rpl_signal): Implement.
10921         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
10922         signal can be called inside handlers.
10923
10924         Fix nanosleep module on mingw.
10925         * modules/nanosleep (Depends-on): Add sys_select.
10926         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
10927
10928         Fix licensing of sigprocmask.
10929         * modules/raise (License): Relicense as LGPL.
10930
10931 2008-06-21  Bruno Haible  <bruno@clisp.org>
10932
10933         * lib/propername.c (proper_name_utf8): Don't use the transliterated
10934         result if it contains question marks.
10935         Reported by Michael Geng <linux@michaelgeng.de>.
10936
10937 2008-06-19  Bruno Haible  <bruno@clisp.org>
10938
10939         Fix CVS-ism.
10940         * doc/gnulib.texi: Include updated-stamp.texi.
10941         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
10942         (updated-stamp.texi): New rule.
10943         (gnulib.info): Depend on it.
10944         * doc/.gitignore: Add updated-stamp.texi.
10945         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
10946
10947 2008-06-19  Bruno Haible  <bruno@clisp.org>
10948
10949         * doc/Makefile (gnulib.info): Update and simplify dependencies.
10950         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
10951
10952 2008-06-19  Eric Blake  <ebb9@byu.net>
10953
10954         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
10955         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
10956         Reported by Stepan Kasal.
10957
10958 2008-06-18  Bruno Haible  <bruno@clisp.org>
10959
10960         * lib/fatal-signal.c (init_fatal_signals): Add comment.
10961         Reported by Eric Blake.
10962
10963 2008-06-18  Eric Blake  <ebb9@byu.net>
10964
10965         Work around cygwin 1.5.25 strsignal bug.
10966         * tests/test-strsignal.c: Allow for const char *.
10967         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
10968
10969 2008-06-18  Simon Josefsson  <simon@josefsson.org>
10970
10971         * users.txt: Update URL to article and add author/date
10972         information.
10973
10974 2008-06-17  Bruno Haible  <bruno@clisp.org>
10975
10976         New macro gl_DISABLE_THREADS.
10977         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
10978         if the user did not pass --enable-threads or --disable-threads option.
10979         (gl_DISABLE_THREADS): New macro.
10980         Reported by Eric Blake <ebb9@byu.net>.
10981
10982 2008-06-17  Bruno Haible  <bruno@clisp.org>
10983
10984         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
10985         when the macro ignores it.
10986         Based on a patch by Eric Blake <ebb9@byu.net>.
10987
10988 2008-06-17  Bruno Haible  <bruno@clisp.org>
10989
10990         * modules/tls (License): Change to LGPLv2+.
10991         Reported by Eric Blake.
10992
10993 2008-06-17  Eric Blake  <ebb9@byu.net>
10994
10995         Simplify c-stack prerequisites.
10996         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
10997         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
10998         no longer requires <ucontext.h> to exist.  Optimize setrlimit
10999         check.
11000         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
11001         <sys/resource.h>.
11002
11003         Move c-stack test into testsuite.
11004         * modules/c-stack-tests: New file.
11005         * lib/c-stack.c [DEBUG]: Move test program...
11006         * tests/test-c-stack.c: ...into this new file.  Skip rather than
11007         fail test if sigaltstack is lacking.
11008         * tests/test-c-stack.sh: New driver file.
11009
11010 2008-06-16  Eric Blake  <ebb9@byu.net>
11011
11012         Use raise module consistently.
11013         * modules/fatal-signal (Depends-on): Add raise.
11014         * modules/sigprocmask (Depends-on): Likewise.
11015         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
11016         * lib/sigprocmask.c (sigprocmask): Likewise.
11017         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
11018         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
11019
11020         Fix compliance bug in sigpending.
11021         * lib/sigprocmask.c (sigpending): Return pending array via
11022         parameter, not return value.
11023
11024 2008-06-14  Eric Blake  <ebb9@byu.net>
11025
11026         Improve obstack-printf test code.
11027         * tests/test-obstack-printf.c (test_function): Fix comment, and
11028         simplify usage of obstack_* in macros.  Add a test for coverage.
11029         Reported by Bruno Haible.
11030
11031 2008-06-14  Bruno Haible  <bruno@clisp.org>
11032
11033         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
11034         array size as a constant, not as a const variable.
11035         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
11036         AC_USE_SYSTEM_EXTENSIONS.
11037         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
11038         Test whether the obstack_printf function actually exists.
11039         * modules/obstack-printf (Depends-on): Add extensions.
11040         (Include): Remove obstack.h.
11041         * modules/obstack-printf-posix (Depends-on): Add extensions.
11042         (Include): Remove obstack.h.
11043
11044 2008-06-13  Eric Blake  <ebb9@byu.net>
11045
11046         Add obstack-printf and obstack-printf-posix modules.
11047         * modules/obstack-printf: New file.
11048         * modules/obstack-printf-posix: Likewise.
11049         * MODULES.html.sh (Misc): Mention them.
11050         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
11051         Likewise.
11052         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
11053         Likewise.
11054         * modules/stdio (Makefile.am): Accomodate new modules.
11055         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11056         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
11057         Declare.
11058         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
11059         functions.
11060         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
11061         (gl_REPLACE_OBSTACK_PRINTF): New macros
11062         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
11063         * tests/test-obstack-printf.c: New file.
11064         * modules/obstack-printf-tests: Likewise.
11065         * modules/obstack-printf-posix-tests: Likewise.
11066
11067 2008-06-11  Bruno Haible  <bruno@clisp.org>
11068
11069         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
11070         * lib/open.c: Include errno.h.
11071         (open): Fail when attempting to write to a file that has a trailing
11072         slash.
11073         * tests/test-open.c (main): Test against trailing slash bug.
11074         * doc/posix-functions/open.texi: Mention the trailing slash bug.
11075
11076 2008-06-10  Bruno Haible  <bruno@clisp.org>
11077
11078         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
11079         for $? to work inside the trap command, with various /bin/sh-s.
11080         * tests/test-vc-list-files-cvs.sh: Likewise.
11081
11082 2008-06-10  Bruno Haible  <bruno@clisp.org>
11083
11084         * lib/acl-internal.h: Don't include gettext.h here.
11085         * lib/set-mode-acl.c: Include gettext.h here.
11086         * lib/copy-acl.c: Likewise.
11087
11088 2008-06-10  Bruno Haible  <bruno@clisp.org>
11089
11090         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
11091         * lib/wait-process.c (wait_subprocess): Likewise.
11092         * lib/execute.h (execute): Add termsigp argument.
11093         * lib/execute.c (execute): Likewise.
11094         * lib/csharpcomp.c (compile_csharp_using_pnet,
11095         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
11096         * lib/csharpexec.c (execute_csharp_using_pnet,
11097         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
11098         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
11099         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
11100         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
11101         is_jikes_present): Update.
11102         * lib/javaexec.c (execute_java_class): Update.
11103         * lib/javaversion.c (execute_and_read_line): Update.
11104         * NEWS: Document the changes.
11105         Reported by Eric Blake.
11106
11107 2008-06-10  Eric Blake  <ebb9@byu.net>
11108
11109         Add missing include.
11110         * tests/test-strstr.c (includes): Add <signal.h>.
11111         * tests/test-strcasestr.c (includes): Likewise.
11112         * tests/test-memmem.c (includes): Likewise.
11113
11114 2008-06-10  Bruno Haible  <bruno@clisp.org>
11115
11116         * lib/wait-process.c (wait_subprocess): Add an assertion.
11117
11118 2008-06-10  Bruno Haible  <bruno@clisp.org>
11119
11120         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
11121
11122 2008-06-10  Bruno Haible  <bruno@clisp.org>
11123
11124         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
11125         using alarm().
11126         * tests/test-strcasestr.c (main): Likewise.
11127         * tests/test-strstr.c (main): Likewise.
11128
11129 2008-06-09  Bruno Haible  <bruno@clisp.org>
11130
11131         Work around the Solaris 10 ACE ACLs ABI change.
11132         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
11133         declare if ACL_NO_TRIVIAL is present.
11134         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
11135         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
11136         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
11137         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
11138         define if ACL_NO_TRIVIAL is present.
11139         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
11140         and use the current ABI.
11141         (file_has_acl): Use same #if condition as elsewhere.
11142         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
11143         in use, and use the current ABI.
11144         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
11145         Reported by Jim Meyering.
11146
11147 2008-06-09  Eric Blake  <ebb9@byu.net>
11148
11149         Work around environments that (stupidly) ignore SIGALRM.
11150         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
11151         before using alarm().
11152         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11153         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
11154         Reported by Ian Beckwith <ianb@erislabs.net>.
11155
11156         Produce autobuild blurb earlier in log.
11157         * modules/autobuild (configure.ac-early): Move AB_INIT here.
11158
11159 2008-06-09  Jim Meyering  <meyering@redhat.com>
11160         and OndÅ™ej Vašík  <ovasik@redhat.com>
11161
11162         utimens.c: correct kernel bug work-around
11163         OndÅ™ej Vašík found that the invalid return value of 280 indicates
11164         failure, not success, and the kernel bug we're trying to work
11165         around affects not just the utimensat call, but also the fallback
11166         futimens call.
11167         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
11168         not success.
11169         [HAVE_FUTIMENS]: Use the same work-around, here.
11170
11171 2008-06-09  Jim Meyering  <meyering@redhat.com>
11172
11173         add more guards around definition of ACE_-related code
11174         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
11175         ALLOW and ACE_OWNER are also defined.
11176
11177 2008-06-08  Bruno Haible  <bruno@clisp.org>
11178
11179         * lib/acl-internal.h: Add me as co-author.
11180         * lib/file-has-acl.c: Likewise.
11181         * lib/set-mode-acl.c: Likewise.
11182         * lib/copy-acl.c: Likewise.
11183
11184 2008-06-08  Bruno Haible  <bruno@clisp.org>
11185
11186         Add support for AIX ACLs.
11187         * lib/acl-internal.h (acl_nontrivial): New declaration.
11188         * lib/file-has-acl.c (acl_nontrivial): New function.
11189         (file_has_acl): Add implementation using AIX 4 ACL API.
11190         * lib/set-mode-acl.c (qset_acl): Likewise.
11191         * lib/copy-acl.c (qcopy_acl): Likewise.
11192
11193 2008-06-08  Bruno Haible  <bruno@clisp.org>
11194
11195         Add support for HP-UX ACLs.
11196         * lib/acl-internal.h (acl_nontrivial): New declaration.
11197         * lib/file-has-acl.c (acl_nontrivial): New function.
11198         (file_has_acl): Add implementation using HP-UX 11 ACL API.
11199         * lib/set-mode-acl.c (qset_acl): Likewise.
11200         * lib/copy-acl.c (qcopy_acl): Likewise.
11201
11202 2008-06-08  Bruno Haible  <bruno@clisp.org>
11203
11204         Add support for Cygwin ACLs.
11205         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
11206         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
11207         the chmod_or_fchmod call.
11208         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
11209
11210 2008-06-08  Bruno Haible  <bruno@clisp.org>
11211
11212         Fix bug with setuid modes in Solaris 10+ code.
11213         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
11214         succeeded, when the mode contains some special bits.
11215
11216 2008-06-08  Bruno Haible  <bruno@clisp.org>
11217
11218         Add support for Solaris 7..10 ACLs.
11219         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
11220         declarations.
11221         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
11222         functions.
11223         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
11224         * lib/set-mode-acl.c (qset_acl): Likewise.
11225         * lib/copy-acl.c (qcopy_acl): Likewise.
11226
11227 2008-06-08  Bruno Haible  <bruno@clisp.org>
11228
11229         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
11230         declaration.
11231         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
11232         (acl_access_nontrivial): Remove MacOS X case.
11233         (file_has_acl): Use acl_extended_nontrivial.
11234         * lib/copy-acl.c (qcopy_acl): Likewise.
11235
11236 2008-06-08  Bruno Haible  <bruno@clisp.org>
11237
11238         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
11239
11240 2008-06-08  Jim Meyering  <meyering@redhat.com>
11241
11242         * modules/acl (Maintainer): Add Bruno Haible.
11243
11244 2008-06-07  Bruno Haible  <bruno@clisp.org>
11245
11246         Improve support for Tru64 ACLs.
11247         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
11248         ACL on OSF/1.
11249
11250 2008-06-07  Bruno Haible  <bruno@clisp.org>
11251
11252         Add support for MacOS X ACLs.
11253         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
11254         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
11255         * lib/set-mode-acl.c (qset_acl): Likewise.
11256         * lib/copy-acl.c (qcopy_acl): Likewise.
11257
11258 2008-06-07  Bruno Haible  <bruno@clisp.org>
11259
11260         Fix memory leak introduced on 2008-05-22.
11261         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
11262         use.
11263
11264 2008-06-07  Bruno Haible  <bruno@clisp.org>
11265
11266         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
11267         to construct an empty ACL.
11268
11269 2008-06-07  Bruno Haible  <bruno@clisp.org>
11270
11271         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
11272         precisely.
11273         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
11274
11275 2008-06-07  Bruno Haible  <bruno@clisp.org>
11276
11277         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
11278         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
11279
11280 2008-06-07  Bruno Haible  <bruno@clisp.org>
11281
11282         * doc/posix-functions/_setjmp.texi: Explain the use of this function
11283         regardless of POSIX.
11284         * doc/posix-functions/_longjmp.texi: Likewise.
11285         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
11286         SystemV platform in this case.
11287
11288 2008-06-06  Eric Blake  <ebb9@byu.net>
11289
11290         Document abort() bugs.
11291         * doc/posix-functions/abort.texi (abort): Mention anomalies.
11292
11293         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
11294         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
11295         sigsetjmp.
11296         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
11297         siglongjmp, but only as a macro.
11298         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
11299         is obsolete.
11300         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
11301
11302         Tweak documentation to cover cygwin argz bugs.
11303         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
11304         argz bug fix; no code change needed since no cygwin releases
11305         occurred between the last fix and the bug being tested.
11306         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
11307         module and recently fixed cygwin bugs.
11308         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
11309         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
11310         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
11311         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
11312         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
11313         Likewise.
11314         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
11315         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
11316         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
11317         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
11318         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
11319         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
11320         Likewise.
11321
11322         Avoid gcc warning on cygwin.
11323         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
11324         !ACL_NO_TRIVIAL]: Avoid unused variable.
11325
11326 2008-06-05  Eric Blake  <ebb9@byu.net>
11327
11328         Be tolerant of UNKNOWN version in gnulib-tool test dir.
11329         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
11330         git-version-gen fails to come up with a version.
11331         Reported by Simon Josefsson.
11332
11333 2008-06-05  Jim Meyering  <meyering@redhat.com>
11334             Paul Eggert  <eggert@cs.ucla.edu>
11335
11336         utimens.c: work around a probable Linux kernel bug
11337         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
11338         appears to be a kernel bug that causes utimensat to return 280
11339         instead of 0, indicating success.
11340
11341 2008-06-04  Bruno Haible  <bruno@clisp.org>
11342
11343         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
11344         2008-06-01 commit.
11345
11346 2008-06-04  Bruno Haible  <bruno@clisp.org>
11347
11348         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
11349         * lib/file-has-acl.c (acl_access_nontrivial): New function.
11350         (file_has_acl): Use it. Save errno afterwards.
11351         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
11352
11353 2008-06-03  Bruno Haible  <bruno@clisp.org>
11354
11355         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
11356         draft code. Simplify #ifs.
11357         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
11358         Put Solaris code after POSIX-draft code. Fix comments regarding
11359         Solaris 10, HP-UX. Mention Cygwin.
11360         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
11361
11362 2008-06-03  Eric Blake  <ebb9@byu.net>
11363
11364         Provide fallback for older kernels.
11365         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
11366         Provide runtime fallback if kernel lacks support.
11367         Reported by Mike Frysinger.
11368
11369 2008-06-02  Bruno Haible  <bruno@clisp.org>
11370
11371         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
11372         it exists.
11373
11374 2008-06-02  Bruno Haible  <bruno@clisp.org>
11375
11376         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
11377         * lib/copy-acl.c (qcopy_acl): Update comment.
11378
11379 2008-06-02  Bruno Haible  <bruno@clisp.org>
11380
11381         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
11382         like ACL APIs.
11383
11384 2008-06-02  Bruno Haible  <bruno@clisp.org>
11385
11386         * tests/test-file-has-acl.sh: Use different code for Cygwin.
11387         * tests/test-set-mode-acl.sh: Likewise.
11388         * tests/test-copy-acl.sh: Likewise.
11389         * tests/test-copy-file.sh: Likewise.
11390
11391 2008-06-02  Bruno Haible  <bruno@clisp.org>
11392
11393         * tests/test-file-has-acl.sh: Remove unused code.
11394
11395 2008-06-01  Bruno Haible  <bruno@clisp.org>
11396
11397         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
11398         (copy_acl): Just a wrapper around qcopy_acl that emits the error
11399         messages.
11400         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
11401
11402 2008-06-01  Bruno Haible  <bruno@clisp.org>
11403
11404         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
11405         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
11406         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
11407         APIs.
11408         * modules/acl-tests (configure.ac): Remove tests now contained in
11409         m4/acl.m4.
11410
11411 2008-06-02  Jim Meyering  <meyering@redhat.com>
11412
11413         announce-gen: use a better key-server host name
11414         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
11415         it may be more consistently reliable.  Suggested by Werner Koch
11416         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
11417
11418 2008-06-01  Bruno Haible  <bruno@clisp.org>
11419
11420         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
11421         Reported by Voroskoi Andras <voroskoi@gmail.com>.
11422
11423 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
11424
11425         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
11426
11427 2008-06-01  Bruno Haible  <bruno@clisp.org>
11428
11429         New ACL tests.
11430         * tests/test-file-has-acl.sh: New file.
11431         * tests/test-file-has-acl.c: New file.
11432         * tests/test-set-mode-acl.sh: New file.
11433         * tests/test-set-mode-acl.c: New file.
11434         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
11435         * tests/test-copy-acl.c: New file.
11436         * modules/acl-tests: New file, based on modules/copy-file-tests.
11437         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
11438         (Depends-on): Add acl-tests.
11439         (configure.ac): Remove checks.
11440         (Makefile.am): Don't create test-sameacls program here any more.
11441
11442 2008-06-01  Bruno Haible  <bruno@clisp.org>
11443
11444         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
11445         * tests/test-sameacls.c: Include progname.h.
11446         (main): Invoke set_program_name. Portability fixes for MacOS X,
11447         Solaris, HP-UX.
11448
11449 2008-06-01  Bruno Haible  <bruno@clisp.org>
11450
11451         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
11452         function.
11453         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
11454
11455 2008-06-01  Bruno Haible  <bruno@clisp.org>
11456
11457         * modules/rpmatch (Depends-on): Add strdup.
11458
11459 2008-06-01  Bruno Haible  <bruno@clisp.org>
11460
11461         * lib/pipe.c: Include unistd-safer.h.
11462         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
11463         * modules/pipe (Depends-on): Add unistd-safer.
11464
11465 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11466
11467         * modules/autobuild (configure.ac): Call AB_INIT.
11468
11469 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11470
11471         * tests/test-getaddrinfo.c: Don't print debug messages by default.
11472         Suggested by Bruno Haible <bruno@clisp.org>.
11473
11474 2008-05-30  Simon Josefsson  <simon@josefsson.org>
11475
11476         * tests/test-base64.c: Cast size_t to unsigned long when invoking
11477         printf.  Use %lu instead of %d.  Reported by Bruno Haible
11478         <bruno@clisp.org>.
11479
11480 2008-05-29  Eric Blake  <ebb9@byu.net>
11481
11482         Prefer new POSIX 200x interfaces over futimesat.
11483         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
11484         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
11485         when available.
11486         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
11487
11488 2008-05-28  Bruno Haible  <bruno@clisp.org>
11489
11490         * modules/stpcpy (License): Change to LGPLv2+.
11491         Requested by David Lutterkort <dlutter@redhat.com>.
11492
11493 2008-05-27  Bruno Haible  <bruno@clisp.org>
11494
11495         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
11496         current mingw.
11497         Reported by Jose E. Marchesi <jemarch@gnu.org>.
11498
11499 2008-05-27  Bruno Haible  <bruno@clisp.org>
11500
11501         * modules/iconv_open (Link): New section, from module 'iconv'.
11502         * modules/striconv (Link): Likewise.
11503         * modules/striconveh (Link): Likewise.
11504         * modules/xstriconv (Link): Likewise.
11505         * modules/unicodeio (Link): Likewise.
11506         * modules/propername (Link): Likewise.
11507         Reported by Jim Meyering.
11508
11509 2008-05-26  Jim Meyering  <meyering@redhat.com>
11510
11511         sha256: do not artificially restrict buffer length to be < 2^32
11512         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
11513         uint32_t to size_t.
11514         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
11515         to match.
11516
11517         avoid unaligned access errors, e.g., on sparc
11518         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
11519         direct access through a possibly-unaligned uint64* pointer.
11520         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
11521         direct access through a possibly-unaligned uint32* pointer.
11522         Prompted by this patch from Tom "spot" Callaway:
11523         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
11524
11525         sha512.c: fix typo in comment
11526         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
11527
11528 2008-05-25  Bruno Haible  <bruno@clisp.org>
11529
11530         * lib/set-mode-acl.c: Renamed from lib/acl.c.
11531         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
11532         (Makefile.am): Update lib_SOURCES.
11533
11534 2008-05-25  Bruno Haible  <bruno@clisp.org>
11535
11536         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
11537
11538 2008-05-25  Jim Meyering  <meyering@redhat.com>
11539
11540         useless-if-before-free: freed expr may have white-space differences
11541         * build-aux/useless-if-before-free: Recognize cases in which the
11542         freed expression differs from the tested one in embedded white
11543         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
11544         $1 was used, so we can't make any regexp shy.  Improved tests now
11545         detect this.
11546
11547         useless-if-before-free: accept white space in the expression.
11548         * build-aux/useless-if-before-free: For now, any white space
11549         in the expression must be identical in the free argument.
11550
11551         useless-if-before-free: efficiency tweak
11552         * build-aux/useless-if-before-free: Make the expression-matching
11553         regexp "shy".
11554         Make the *outer* regexp shy, not the expr-matching one.
11555
11556         update code-in-comment to accept cast of free arg
11557         * build-aux/useless-if-before-free: Update regexp.
11558
11559 2008-05-25  Bruno Haible  <bruno@clisp.org>
11560
11561         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
11562         * modules/copy-file-tests (Files, Makefile.am): Update.
11563         * tests/test-copy-file.c (func_test_copy): Update.
11564
11565 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
11566
11567         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
11568
11569 2008-05-23  Bruno Haible  <bruno@clisp.org>
11570
11571         Improve support for ACLs on OSF/1.
11572         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
11573         Remove fallback for unknown flavors of ACLs.
11574
11575 2008-05-22  Bruno Haible  <bruno@clisp.org>
11576
11577         Add support for ACLs on OSF/1.
11578         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
11579         replacements.
11580         (acl_free_text): New macro fallback.
11581         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
11582         acl_free.
11583         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
11584         acl_free_text function. Require AC_C_INLINE.
11585
11586 2008-05-22  Bruno Haible  <bruno@clisp.org>
11587
11588         Make copy_acl work on MacOS X 10.5.
11589         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
11590         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
11591         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
11592         If MODE_INSIDE_ACL, don't assume that every system has the same text
11593         representation for ACLs as FreeBSD.
11594         * lib/copy-acl.c (copy_acl): Add support for platforms with
11595         !MODE_INSIDE_ACL.
11596         * lib/file-has-acl.c (file_has_acl): Likewise.
11597         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
11598         FreeBSD, MacOS X, or IRIX, respectively.
11599
11600 2008-05-22  Bruno Haible  <bruno@clisp.org>
11601
11602         * lib/acl.h: Don't include <sys/acl.h>.
11603         (GETACLCNT): Move fallback to lib/acl-internal.h.
11604         * lib/acl-internal.h: Include <sys/acl.h> here.
11605         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
11606
11607 2008-05-22  Bruno Haible  <bruno@clisp.org>
11608
11609         Split off copy_acl function to separate file.
11610         * lib/copy-acl.c: New file, extracted from lib/acl.c.
11611         * lib/acl.c (copy_acl): Moved function to separate file.
11612         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
11613         * modules/acl (Files): Add lib/copy-acl.c.
11614         (Makefiles.am): Augment lib_SOURCES.
11615
11616 2008-05-22  Bruno Haible  <bruno@clisp.org>
11617
11618         * modules/copy-file-tests: New file.
11619         * tests/test-copy-file.sh: New file.
11620         * tests/test-copy-file.c: New file.
11621         * tests/test-copy-file-sameacls.c: New file.
11622
11623 2008-05-22  Eric Blake  <ebb9@byu.net>
11624
11625         Avoid gcc warning.
11626         * tests/test-memcmp.c (main): Pass NULL indirectly.
11627
11628 2008-05-21  Bruno Haible  <bruno@clisp.org>
11629
11630         Add reference doc about ACLs.
11631         * doc/acl-resources.txt: New file.
11632         * doc/acl-cygwin.txt: New file.
11633
11634 2008-05-21  Bruno Haible  <bruno@clisp.org>
11635
11636         Avoid one more warning from gcc.
11637         * lib/vasnprintf.c (IF_LINT): Update comments.
11638         (VASNPRINTF): Use it also for the 'prefix' array initializer.
11639
11640 2008-05-21  Jim Meyering  <meyering@redhat.com>
11641
11642         avoid a warning from gcc
11643         * lib/vasnprintf.c (IF_LINT): Define.
11644         (scale10_round_decimal_long_double):
11645         Use it to avoid a "may be used uninitialized" warning.
11646         (scale10_round_decimal_double): Likewise.
11647
11648 2008-05-21  Simon Josefsson  <simon@josefsson.org>
11649
11650         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
11651         declared.
11652
11653 2008-05-20  Bruno Haible  <bruno@clisp.org>
11654
11655         * tests/test-memcmp.c (main): Test also the sign of the result. Test
11656         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
11657
11658 2008-05-20  Simon Josefsson  <simon@josefsson.org>
11659
11660         * modules/memcmp-tests: New file.
11661         * tests/test-memcmp.c: New file.
11662
11663 2008-05-19  Bruno Haible  <bruno@clisp.org>
11664
11665         * modules/propername (Notice, configure.ac): Put quoted "..." into
11666         --keyword option.
11667         * lib/propername.h: Update comments accordingly.
11668         Reported by Eric Blake.
11669
11670 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
11671
11672         * modules/getpass-gnu (Depends-on): Add fseeko.
11673
11674 2008-05-19  Simon Josefsson  <simon@josefsson.org>
11675
11676         * modules/base64-tests: New file.
11677
11678 2008-05-19  Bo Borgerson <gigabo@gmail.com>
11679
11680         * lib/base64.c (base64_decode_ctx): If a decode context structure
11681         was passed in use it to ignore newlines.  If a context structure
11682         was _not_ passed in, continue to treat newlines as garbage (this
11683         is the historical behavior).  Formerly base64_decode.
11684         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
11685         takes a decode context structure.
11686         * lib/base64.h (base64_decode): Macro for four-argument calls.
11687         (base64_decode_alloc): Likewise.
11688         * lib/base64.c (base64_decode_ctx): If a decode context structure
11689         was passed in use it to ignore newlines.  If a context structure
11690         was _not_ passed in, continue to treat newlines as garbage (this
11691         is the historical behavior).  Formerly base64_decode.
11692         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
11693         takes a decode context structure.
11694         * lib/base64.h (base64_decode): Macro for four-argument calls.
11695         (base64_decode_alloc): Likewise.
11696
11697 2008-05-19  Jim Meyering  <meyering@redhat.com>
11698
11699         avoid a warning from gcc
11700         * lib/trim.c (IF_LINT): Define.
11701         (trim2): Use it to avoid a "may be used uninitialized" warning.
11702
11703         Fix doc typo.
11704         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
11705
11706 2008-05-19  Bruno Haible  <bruno@clisp.org>
11707
11708         * doc/glibc-functions/getpass.texi: Document limits of other
11709         implementations.
11710
11711 2008-05-19  Simon Josefsson  <simon@josefsson.org>
11712             Bruno Haible <bruno@clisp.org>
11713
11714         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
11715
11716 2008-05-18  Bruno Haible  <bruno@clisp.org>
11717
11718         * modules/propername: New file, from GNU gettext.
11719         * lib/propername.h: New file, from GNU gettext.
11720         * lib/propername.c: New file, from GNU gettext.
11721         * MODULES.html.sh (Internationalization functions): Add propername.
11722
11723 2008-05-16  Jim Meyering  <meyering@redhat.com>
11724             Bruno Haible  <bruno@clisp.org>
11725
11726         Avoid some warnings from "gcc -Wshadow".
11727         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
11728
11729 2008-05-15  Eric Blake  <ebb9@byu.net>
11730
11731         Extend previous patch to cygwin 1.7.0.
11732         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
11733         fast implementation in cygwin >= 1.7.0.
11734         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11735         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11736
11737 2008-05-15  Bruno Haible  <bruno@clisp.org>
11738
11739         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
11740         implementation in glibc >= 2.9.
11741         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
11742         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
11743
11744 2008-05-15  Bruno Haible  <bruno@clisp.org>
11745
11746         * MODULES.html.sh (Internationalization functions): Remove linebreak.
11747         (Unicode string functions): Add unilbrk/*.
11748         Reported by Karl Berry.
11749
11750 2008-05-15  Eric Blake  <ebb9@byu.net>
11751
11752         Fix violation of <stdbool.h> replacement in regex.
11753         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
11754         * lib/regexec.c (re_search_internal): Likewise.
11755         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
11756
11757 2008-05-15  Jim Meyering  <meyering@redhat.com>
11758
11759         avoid distracting test output when git or cvs is not found
11760         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
11761         * tests/test-vc-list-files-git.sh: Likewise.
11762
11763 2008-05-15  Eric Blake  <ebb9@byu.net>
11764
11765         Glibc finally accepted the memmem speedup code, bugzilla #5514.
11766         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
11767         glibc version.
11768         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
11769         * doc/posix-functions/strstr.texi (strstr): Likewise.
11770         * lib/str-two-way.h (MAX): Sychronize with glibc.
11771
11772 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
11773
11774         * lib/regcomp.c (optimize_utf8): Add a note on why we test
11775         opr.ctx_type.
11776         (calc_first): Initialize constraint field.
11777         (duplicate_node_closure): Use it instead of special casing ANCHORS.
11778         Fix grammar.
11779         (duplicate_node): Merge constraint field for all node types.
11780         (calc_eclosure_iter): Look at constraint field for all node types.
11781         * lib/regex_internal.c (create_cd_newstate): Don't look at
11782         opr.ctx_type.
11783
11784 2008-05-14  Bruno Haible  <bruno@clisp.org>
11785
11786         Help GCC to do better code generation.
11787         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
11788         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
11789         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
11790         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
11791         Declare with attribute 'malloc' if supported.
11792
11793 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
11794
11795         use "echo STR|wc -c" rather than unportable "expr length STR"
11796         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
11797         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
11798
11799 2008-05-14  Jim Meyering  <meyering@redhat.com>
11800
11801         use dd ibs=$n count=1 ... rather than less-portable head -c$n
11802         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
11803         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
11804         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
11805         via Collin Lasse.
11806
11807 2008-05-14  Eric Blake  <ebb9@byu.net>
11808
11809         Avoid quadratic growth in gl_LIBSOURCES.
11810         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
11811         Suggested by Bruno Haible.
11812
11813         Test xmemdup0.
11814         * modules/xmemdup0-tests: New file.
11815         * tests/test-xmemdup0.c: Likewise.
11816
11817 2008-05-13  Eric Blake  <ebb9@byu.net>
11818
11819         Split xmemdup0 into its own module.
11820         * modules/xmemdup0: New file.
11821         * lib/xmemdup0.h: Likewise.
11822         * lib/xmemdup0.c: Likewise.
11823         * MODULES.html.sh (Memory management functions): Add xmemdup0.
11824         * lib/xalloc.h (xmemdup0): Remove.
11825         * lib/xmalloc.c (xmemdup0): Likewise.
11826
11827 2008-05-13  Eric Blake  <ebb9@byu.net>
11828             Bruno Haible  <bruno@clisp.org>
11829
11830         Reduce number of forks required during autoconf.
11831         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
11832         and gl_LIBSOURCES_DIR.
11833         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
11834         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
11835         m4_syscmd per file.
11836         <m4_foreach_w>: Move...
11837         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
11838
11839 2008-05-13  Eric Blake  <ebb9@byu.net>
11840
11841         * gnulib-tool: Fix various comment typos.
11842
11843 2008-05-12  Bruno Haible  <bruno@clisp.org>
11844
11845         Tailor the linebreaking algorithm.
11846         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
11847
11848 2008-05-12  Bruno Haible  <bruno@clisp.org>
11849
11850         Update to Unicode 5.0.0.
11851         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
11852         LBP_JV, LBP_JT. Redistribute values.
11853         (unilbrk_table): Change size.
11854         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
11855         Unicode TR#14 rev. 22.
11856         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
11857         LBP_JV, LBP_JT. Redistribute values.
11858         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
11859         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
11860         Update.
11861         * lib/unilbrk/lbrkprop1.h: Regenerated.
11862         * lib/unilbrk/lbrkprop2.h: Regenerated.
11863         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
11864         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
11865         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
11866         Likewise.
11867         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
11868         Likewise.
11869         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
11870         result.
11871         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
11872         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
11873         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
11874         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
11875         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
11876         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
11877
11878 2008-05-11  Bruno Haible  <bruno@clisp.org>
11879
11880         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
11881
11882 2008-05-11  Bruno Haible  <bruno@clisp.org>
11883
11884         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
11885         * modules/unilbrk/gen-lbrk: New file.
11886
11887 2008-05-11  Bruno Haible  <bruno@clisp.org>
11888
11889         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
11890         * m4/sha512.m4 (gl_SHA512): Likewise.
11891
11892 2008-05-11  Jim Meyering  <meyering@redhat.com>
11893
11894         New modules: crypto/sha256, crypto/sha512 (from coreutils)
11895         * modules/crypto/sha256: New file.
11896         * modules/crypto/sha512: Likewise.
11897         * lib/sha256.c: Likewise.
11898         * lib/sha256.h: Likewise.
11899         * lib/sha512.c: Likewise.
11900         * lib/sha512.h: Likewise.
11901         * lib/u64.h: Likewise.
11902         * m4/sha256.m4: Likewise.
11903         * m4/sha512.m4: Likewise.
11904         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
11905
11906 2008-05-10  Bruno Haible  <bruno@clisp.org>
11907
11908         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
11909         (Input/Output <stdio.h>): Add xprintf.
11910         (Signal handling <signal.h>): Add strsignal.
11911         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
11912         (Core language properties): Add func.
11913         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
11914         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
11915         strings.
11916         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
11917         (Input/output): New section.
11918         (File system functions): Add openat-die, stat-macros.
11919         (Networking functions): Add sockets.
11920         (Unicode string functions): Add unictype/*.
11921         (Support for building libraries and executables): Add gperf.
11922         (Support for building documentation): Add agpl-3.0.
11923         (Misc): Add nocrash.
11924
11925 2008-05-10  Bruno Haible  <bruno@clisp.org>
11926
11927         * modules/unictype/gen-ctype: New file.
11928
11929 2008-05-10  Jim Meyering  <meyering@redhat.com>
11930
11931         Make chdir-safer.c more efficient on a system with no symlinks.
11932         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
11933         also if ELOOP is zero.  Suggested by Bruno Haible.
11934
11935         Make chdir-safer.c slightly safer.
11936         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
11937         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
11938
11939         Avoid compile failure on systems without ELOOP (like mingw).
11940         * lib/chdir-safer.c (ELOOP): Define if not already defined.
11941         Reported by Bruno Haible.
11942
11943 2008-05-10  Bruno Haible  <bruno@clisp.org>
11944
11945         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
11946         (is_utf8_encoding): Use a case-insensitive comparison.
11947         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
11948         streq.
11949
11950 2008-05-10  Bruno Haible  <bruno@clisp.org>
11951
11952         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
11953         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
11954         * lib/unilbrk/ulc-common.h (iconv_string_length,
11955         iconv_string_keeping_offsets): Remove declarations.
11956         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
11957         Don't include <iconv.h>, streq.h, xsize.h.
11958         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
11959         conversion.
11960         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
11961         <iconv.h>, streq.h, xsize.h.
11962         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
11963         conversion.
11964         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
11965         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
11966         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
11967         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
11968
11969 2008-05-10  Bruno Haible  <bruno@clisp.org>
11970
11971         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
11972         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
11973
11974         * modules/unilbrk/u32-width-linebreaks-tests: New file.
11975         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
11976
11977         * modules/unilbrk/u16-width-linebreaks-tests: New file.
11978         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
11979
11980         * modules/unilbrk/u8-width-linebreaks-tests: New file.
11981         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
11982
11983         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
11984         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
11985
11986         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
11987         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
11988
11989         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
11990         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
11991
11992         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
11993         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
11994
11995 2008-05-10  Bruno Haible  <bruno@clisp.org>
11996
11997         Split up 'linebreak' module.
11998         * lib/unilbrk.h: New file, based on lib/linebreak.h.
11999         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
12000         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
12001         modifications.
12002         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
12003         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
12004         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
12005         lib/linebreak.c.
12006         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
12007         lib/linebreak.c.
12008         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
12009         lib/linebreak.c.
12010         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
12011         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
12012         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
12013         lib/linebreak.c.
12014         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
12015         lib/linebreak.c.
12016         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
12017         lib/linebreak.c.
12018         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
12019         lib/linebreak.c.
12020         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
12021         lib/linebreak.c.
12022         * modules/unilbrk/base: New file.
12023         * modules/unilbrk/tables: New file.
12024         * modules/unilbrk/u8-possible-linebreaks: New file.
12025         * modules/unilbrk/u16-possible-linebreaks: New file.
12026         * modules/unilbrk/u32-possible-linebreaks: New file.
12027         * modules/unilbrk/ulc-common: New file.
12028         * modules/unilbrk/ulc-possible-linebreaks: New file.
12029         * modules/unilbrk/u8-width-linebreaks: New file.
12030         * modules/unilbrk/u16-width-linebreaks: New file.
12031         * modules/unilbrk/u32-width-linebreaks: New file.
12032         * modules/unilbrk/ulc-width-linebreaks: New file.
12033         * lib/linebreak.h: Remove file.
12034         * lib/linebreak.c: Remove file.
12035         * m4/linebreak.m4: Remove file.
12036         * modules/linebreak: Remove file.
12037         * NEWS: Mention the changes.
12038
12039 2008-05-09  Eric Blake  <ebb9@byu.net>
12040
12041         Add xmemdup0.
12042         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
12043         implementation.
12044         * lib/xmalloc.c (xmemdup0): New C implementation.
12045
12046 2008-05-08  Bruno Haible  <bruno@clisp.org>
12047
12048         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
12049
12050 2008-05-07  Eric Blake  <ebb9@byu.net>
12051
12052         Support cross-compilation of <wctype.h>.
12053         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
12054         AC_CACHE_CHECK.
12055
12056 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
12057
12058         * build-aux/vc-list-files: Add support for bzr.
12059
12060 2008-05-03  Jim Meyering  <meyering@redhat.com>
12061
12062         avoid failed assertion with tight malloc
12063         * tests/test-getndelim2.c: Correct an off-by-one assertion.
12064
12065 2008-05-03  Simon Josefsson  <simon@josefsson.org>
12066
12067         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
12068         are needed from arpa/inet.h.
12069         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
12070         Reported by Bruno Haible.
12071
12072 2008-05-02  Jim Meyering  <meyering@redhat.com>
12073
12074         avoid compilation error on FreeBSD 6
12075         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
12076
12077 2008-05-01  Jim Meyering  <meyering@redhat.com>
12078
12079         useless-if-before-free: correct --help's exit status description
12080         * build-aux/useless-if-before-free (usage): Like grep, exit 0
12081         for one or more matches, etc.  Reported by Bruno Haible.
12082
12083         vc-list-files: make the stand-alone gnulib test work
12084         * modules/vc-list-files-tests (configure.ac):
12085         Define and AC_SUBST abs_aux_dir.
12086         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
12087         $(abs_top_srcdir) to each script and having each of them
12088         duplicate the work of setting PATH, set PATH here, using
12089         the new variable, abs_aux_dir instead.
12090         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
12091         * tests/test-vc-list-files-git.sh: Likewise.
12092         Reported by Bruno Haible.
12093
12094 2008-05-01  Bruno Haible  <bruno@clisp.org>
12095
12096         * lib/getndelim2.c (getndelim2): Fix newsize computation during
12097         reallocation. Rename 'done' to 'found_delimiter'.
12098
12099 2008-05-01  Jim Meyering  <meyering@redhat.com>
12100
12101         vc-list-files: accommodate /bin/sh like the one from Solaris 10
12102         * build-aux/vc-list-files: Use `...`, not $(...).
12103
12104 2008-04-30  Jim Meyering  <meyering@redhat.com>
12105
12106         add tests for vc-list-files
12107         * modules/vc-list-files-tests: New module.
12108         * tests/test-vc-list-files-cvs.sh: New file.
12109         * tests/test-vc-list-files-git.sh: New file.
12110
12111         avoid a warning from gcc
12112         * lib/getndelim2.c (IF_LINT): Define.
12113         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
12114
12115         vc-list-files: work properly with build-aux/cvsu, too
12116         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
12117         to all cvs-based clauses.
12118
12119         vc-list-files: work properly in the CVS+awk case, too
12120         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
12121
12122         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
12123         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
12124         take more than one file argument, so .  Add quotes, just in case $dir
12125         ever contains a shell meta-character.  Prompted by Soren Hansen in
12126         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
12127
12128 2008-04-29  Eric Blake  <ebb9@byu.net>
12129
12130         Optimize getndelim2 to use block operations when possible.
12131         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
12132         freadseek, and memchr2.
12133         * lib/getndelim2.c (getndelim2): Use them for block reads.
12134
12135 2008-04-29  Bruno Haible  <bruno@clisp.org>
12136
12137         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
12138         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
12139         * modules/inet_ntop (Depends-on): Add extensions.
12140         * modules/inet_pton (Depends-on): Likewise.
12141         Reported by Simon Josefsson.
12142
12143 2008-04-29  Jim Meyering  <meyering@redhat.com>
12144
12145         When the is more than one match in a block, match all of them.
12146         * build-aux/useless-if-before-free: Iterate through each block
12147         until there are no more matches.
12148
12149         Fix broken useless-if-before-free script.
12150         * build-aux/useless-if-before-free: Fix typo: missing "?" after
12151         the expression to match cast of argument to free-like function.
12152
12153 2008-04-29  Eric Blake  <ebb9@byu.net>
12154
12155         Use new header.
12156         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
12157
12158 2008-04-29  Jim Meyering  <meyering@redhat.com>
12159
12160         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
12161         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
12162         by gnulib to exist and to declare e.g., inet_ntop.
12163         Don't include "inet_ntop.h", now removed.
12164
12165         * m4/arpa_inet_h.m4: Remove trailing blanks.
12166
12167 2008-04-29  Eric Blake  <ebb9@byu.net>
12168
12169         Silence valgrind on safe reads beyond potential array bounds.
12170         * lib/rawmemchr.valgrind: New file.
12171         * lib/strchrnul.valgrind: Likewise.
12172         * modules/rawmemchr (Files): Distribute new file.
12173         * modules/strchrnul (Files): Likewise.
12174         Suggested by Bruno Haible.
12175
12176 2008-04-29  Bruno Haible  <bruno@clisp.org>
12177
12178         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
12179         (inet_ntop, inet_pton): Change portability warning's wording.
12180         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
12181         Invoke gl_CHECK_NEXT_HEADERS.
12182         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
12183         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
12184         set ARPA_INET_H.
12185         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
12186         * modules/arpa_inet (Description): No longer only for systems that
12187         lack it.
12188         (Depends-on): Add include_next.
12189         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
12190         HAVE_ARPA_INET_H.
12191
12192 2008-04-29  Jim Meyering  <meyering@redhat.com>
12193
12194         * modules/mkdir (License): Re-license as LGPLv2+.
12195
12196 2008-04-29  Bruno Haible  <bruno@clisp.org>
12197
12198         * modules/rawmemchr (Maintainer): Set to Eric.
12199         * modules/strchrnul (Maintainer): Likewise.
12200
12201 2008-04-29  Simon Josefsson  <simon@josefsson.org>
12202
12203         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
12204         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
12205
12206         * modules/arpa_inet (arpa/inet.h): Use them.
12207
12208 2008-04-28  Eric Blake  <ebb9@byu.net>
12209
12210         Test getndelim2.
12211         * modules/getndelim2-tests: New file.
12212         * tests/test-getndelim2.c: Likewise.
12213         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
12214         stream.
12215         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
12216
12217         * MODULES.html.sh: Document new module.
12218
12219 2008-04-20  Bruno Haible  <bruno@clisp.org>
12220
12221         * lib/c-stack.c (die): Use raise.
12222         * modules/c-stack (Depends-on): Add raise.
12223
12224 2008-04-28  Bruno Haible  <bruno@clisp.org>
12225
12226         Expect rpmatch to be declared.
12227         * lib/yesno.c (rpmatch): Remove declaration.
12228
12229         Declare rpmatch.
12230         * lib/stdlib.in.h (rpmatch): New declaration.
12231         * lib/rpmatch.c: Include <stdlib.h> first.
12232         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
12233         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
12234         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
12235         HAVE_RPMATCH.
12236         * modules/rpmatch (Depends-on): Add stdlib, extensions.
12237         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12238         (Include): Set to <stdlib.h>.
12239         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
12240         HAVE_RPMATCH.
12241         * NEWS: Document the change.
12242
12243 2008-04-28  Bruno Haible  <bruno@clisp.org>
12244
12245         Change rpmatch to use nl_langinfo when appropriate.
12246         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
12247         (N_): New macro.
12248         (localized_pattern): New function/macro.
12249         (try): Remove match, nomatch arguments. Copy the pattern into safe
12250         memory before caching it.
12251         (rpmatch): Use localized_pattern. Add translator comments.
12252         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
12253         Suggested by Eric Blake.
12254         * modules/rpmatch (Depends-on): Add stdbool.
12255
12256 2008-04-28  Eric Blake  <ebb9@byu.net>
12257
12258         Add rawmemchr module, matching glibc.
12259         * modules/string (Makefile.am): New indicator.
12260         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
12261         * lib/string.in.h (rawmemchr): Declare when appropriate.
12262         * modules/rawmemchr: New file.
12263         * m4/rawmemchr.m4: Likewise.
12264         * lib/rawmemchr.c: Likewise.
12265         * modules/rawmemchr-tests: Likewise.
12266         * tests/test-rawmemchr.c: Likewise.
12267         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
12268         module.
12269         * modules/strchrnul (Depends-on): Add rawmemchr.
12270         * lib/strchrnul.c (strchrnul): Optimize a corner case.
12271
12272         Whitespace cleanup.
12273         * tests/test-strchrnul.c: Reindent.
12274         * lib/strchrnul.c: Likewise.
12275
12276         Optimize and test strchrnul.
12277         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
12278         * modules/strchrnul-tests: New file.
12279         * tests/test-strchrnul.c: Likewise.
12280
12281         Remove intprops dependency.
12282         * modules/memchr (Depends-on): Remove intprops.
12283         * modules/memrchr (Depends-on): Likewise.
12284         * modules/memchr2 (Depends-on): Likewise.
12285         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
12286         * lib/memrchr.c (__memrchr): Likewise.
12287         * lib/memrchr2.c (memchr2): Likewise.
12288         Reported by Simon Josefsson.
12289
12290 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12291
12292         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
12293         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12294
12295 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12296
12297         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
12298
12299         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
12300
12301         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
12302
12303         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
12304         declarations.
12305         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
12306
12307         * m4/inet_pton.m4: Don't check for header files.
12308
12309         * m4/inet_ntop.m4: Don't check for header files.
12310
12311 2008-04-28  Simon Josefsson  <simon@josefsson.org>
12312
12313         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
12314         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
12315         trigger for cygwin).
12316         Reported by Bruno Haible  <bruno@clisp.org>.
12317
12318 2008-04-28  Bruno Haible  <bruno@clisp.org>
12319
12320         * doc/posix-functions/strdup.texi: Mention mingw problem.
12321
12322 2008-04-27  Bruno Haible  <bruno@clisp.org>
12323
12324         * modules/stat-time-tests (Depends-on): Add sleep.
12325         * tests/test-stat-time.c (force_unlink): New function.
12326         (cleanup): Use it.
12327         (test_mtime): Remove the ctime related tests.
12328         (test_ctime): New function, containing the ctime related tests.
12329         (main): Call test_ctime, except on native Windows platforms.
12330
12331 2008-04-27  Bruno Haible  <bruno@clisp.org>
12332
12333         * lib/rpmatch.c (rpmatch): Add some comments.
12334         Reported by James Youngman <jay@gnu.org>.
12335
12336 2008-04-27  Bruno Haible  <bruno@clisp.org>
12337
12338         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
12339         quiet NaNs.
12340
12341 2008-04-27  Bruno Haible  <bruno@clisp.org>
12342
12343         Make test-yesno.sh work on mingw.
12344         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
12345         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
12346         (main): Set stdin to binary mode.
12347         * modules/yesno-tests (Depends-on): Add binary-io.
12348
12349 2008-04-27  Bruno Haible  <bruno@clisp.org>
12350
12351         Fix 'isfinite' on x86, x86_64, ia64 platforms.
12352         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
12353         argument that lie outside the IEEE 854 domain.
12354         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
12355         (gl_ISFINITE): Use it.
12356         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
12357
12358 2008-04-27  Bruno Haible  <bruno@clisp.org>
12359
12360         Allow local renaming in config.h.
12361         * lib/memrchr.c (memrchr): Don't undefine outside libc.
12362
12363 2008-04-27  Bruno Haible  <bruno@clisp.org>
12364
12365         * lib/memchr.c (__memchr): Change type of 'i'.
12366         * lib/memchr2.c (memchr2): Likewise.
12367
12368 2008-04-26  Eric Blake  <ebb9@byu.net>
12369         and Bruno Haible  <bruno@clisp.org>
12370
12371         Optimize and test memrchr.
12372         * modules/memrchr (Depends-on): Add intprops.
12373         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
12374         * modules/memrchr-tests: New file.
12375         * tests/test-memrchr.c: New file.
12376
12377 2008-04-26  Bruno Haible  <bruno@clisp.org>
12378
12379         Add tentative support for DragonFly BSD.
12380         * lib/stdio-impl.h: Add macros for DragonFly BSD.
12381         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
12382         fp.
12383         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
12384         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
12385         * lib/fpurge.c (fpurge): Likewise.
12386         * lib/freadable.c (freaadable): Likewise.
12387         * lib/freadahead.c (freadahead): Likewise.
12388         * lib/freading.c (freading): Likewise.
12389         * lib/freadptr.c (freadptr): Likewise.
12390         * lib/freadseek.c (freadptrinc): Likewise.
12391         * lib/fseeko.c (fseeko): Likewise.
12392         * lib/fseterr.c (fseterr): Likewise.
12393         * lib/fwritable.c (fwritable): Likewise.
12394         * lib/fwriting.c (fwriting): Likewise.
12395
12396 2008-04-26  Bruno Haible  <bruno@clisp.org>
12397
12398         * lib/stdio-impl.h: New file.
12399         * lib/fbufmode.c: Include stdio-impl.h.
12400         (fbufmode): Use fp_, remove redundant #defines.
12401         * lib/fflush.c: Include stdio-impl.h.
12402         (clear_ungetc_buffer): Remove redundant #defines.
12403         * lib/fpurge.c: Include stdio-impl.h.
12404         (fpurge): Remove redundant #defines.
12405         * lib/freadable.c: Include stdio-impl.h.
12406         (freadable): Remove redundant #defines.
12407         * lib/freadahead.c: Include stdio-impl.h.
12408         (freadahead): Remove redundant #defines.
12409         * lib/freading.c: Include stdio-impl.h.
12410         (freading): Remove redundant #defines.
12411         * lib/freadptr.c: Include stdio-impl.h.
12412         (freadptr): Remove redundant #defines.
12413         * lib/freadseek.c: Include stdio-impl.h.
12414         (freadptrinc): Remove redundant #defines.
12415         * lib/fseeko.c: Include stdio-impl.h.
12416         (rpl_fseeko): Remove redundant #defines.
12417         * lib/fseterr.c: Include stdio-impl.h.
12418         (fseterr): Remove redundant #defines.
12419         * lib/fwritable.c: Include stdio-impl.h.
12420         (fwritable: Remove redundant #defines.
12421         * lib/fwriting.c: Include stdio-impl.h.
12422         (fwriting): Remove redundant #defines.
12423         * modules/fbufmode (Files): Add lib/stdio-impl.h.
12424         * modules/fflush (Files): Likewise.
12425         * modules/fpurge (Files): Likewise.
12426         * modules/freadable (Files): Likewise.
12427         * modules/freadahead (Files): Likewise.
12428         * modules/freading (Files): Likewise.
12429         * modules/freadptr (Files): Likewise.
12430         * modules/freadseek (Files): Likewise.
12431         * modules/fseeko (Files): Likewise.
12432         * modules/fseterr (Files): Likewise.
12433         * modules/fwritable (Files): Likewise.
12434         * modules/fwriting (Files): Likewise.
12435
12436 2008-04-26  Bruno Haible  <bruno@clisp.org>
12437
12438         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
12439         restore_seek_optimization, update_fpos_cache): New functions, extracted
12440         from rpl_fflush.
12441         (rpl_fflush): Use them.
12442         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
12443         (gl_REPLACE_FFLUSH): Use it.
12444
12445 2008-04-26  Bruno Haible  <bruno@clisp.org>
12446
12447         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
12448         on Solaris.
12449         * tests/test-xstrtoimax.sh: Likewise.
12450         * tests/test-xstrtoumax.sh: Likewise.
12451         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12452
12453 2008-04-26  Bruno Haible  <bruno@clisp.org>
12454
12455         * modules/memchr-tests: New file.
12456         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
12457
12458 2008-04-26  Eric Blake  <ebb9@byu.net>
12459             Bruno Haible  <bruno@clisp.org>
12460
12461         * lib/memchr.c: Include intprops.h.
12462         (__memchr): Optimize parallel detection of matching bytes. Rename local
12463         variables. Add explanatory comments.
12464
12465 2008-04-26  Bruno Haible  <bruno@clisp.org>
12466
12467         Fix module 'memchr', broken since 2000-10-28.
12468         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
12469
12470 2008-04-26  Bruno Haible  <bruno@clisp.org>
12471
12472         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
12473         comments.
12474
12475 2008-04-25  Eric Blake  <ebb9@byu.net>
12476
12477         Use native fstatat on cygwin 1.7.0.
12478         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
12479         first.
12480
12481 2008-04-23  Eric Blake  <ebb9@byu.net>
12482
12483         Improve memchr2 performance.
12484         * lib/memchr2.c (memchr2): Further optimize parallel detection of
12485         NUL bytes.
12486         * modules/memchr2 (Depends-on): Use intprops.h.
12487
12488 2008-04-23  Simon Josefsson  <simon@josefsson.org>
12489
12490         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
12491         an inline function instead of a CPP macro.  Patch by Ben Pfaff
12492         <blp@cs.stanford.edu>.
12493
12494 2008-04-23  Simon Josefsson  <simon@josefsson.org>
12495
12496         * lib/arpa_inet.in.h: New file.
12497
12498         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
12499         (Makefile.am): Sed in substitute header file.
12500
12501         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
12502         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
12503
12504         * modules/inet_ntop (configure.ac): Use
12505         gl_ARPA_INET_MODULE_INDICATOR.
12506
12507         * modules/inet_pton (configure.ac): Use
12508         gl_ARPA_INET_MODULE_INDICATOR.
12509
12510 2008-04-22  Jim Meyering  <meyering@redhat.com>
12511
12512         * modules/verify (License): Re-license as LGPLv2+.
12513
12514 2008-04-22  Simon Josefsson  <simon@josefsson.org>
12515
12516         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
12517         parameter to void* as per POSIX standard (MinGW uses char*).
12518
12519 2008-04-21  Bruno Haible  <bruno@clisp.org>
12520
12521         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
12522         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
12523         Define to replacements if REPLACE_ISWCNTRL is 1.
12524         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
12525         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
12526         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
12527         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
12528         what it fixes.
12529         * doc/posix-functions/iswalpha.texi: Likewise.
12530         * doc/posix-functions/iswblank.texi: Likewise.
12531         * doc/posix-functions/iswcntrl.texi: Likewise.
12532         * doc/posix-functions/iswdigit.texi: Likewise.
12533         * doc/posix-functions/iswgraph.texi: Likewise.
12534         * doc/posix-functions/iswlower.texi: Likewise.
12535         * doc/posix-functions/iswprint.texi: Likewise.
12536         * doc/posix-functions/iswpunct.texi: Likewise.
12537         * doc/posix-functions/iswspace.texi: Likewise.
12538         * doc/posix-functions/iswupper.texi: Likewise.
12539         * doc/posix-functions/iswxdigit.texi: Likewise.
12540         Reported by Alain Guibert.
12541
12542 2008-04-21  Bruno Haible  <bruno@clisp.org>
12543
12544         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
12545         Patch by Alain Guibert.
12546
12547 2008-04-21  Bruno Haible  <bruno@clisp.org>
12548
12549         Fix test failures on mingw.
12550         * tests/test-xstrtol.c (print_no_progname): New function.
12551         (main): Install it in error_print_progname hook.
12552         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
12553         * tests/test-xstrtoimax.sh: Likewise.
12554         * tests/test-xstrtoumax.sh: Likewise.
12555
12556 2008-04-21  Bruno Haible  <bruno@clisp.org>
12557
12558         Fix test failure on mingw.
12559         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
12560
12561 2008-04-21  Bruno Haible  <bruno@clisp.org>
12562
12563         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
12564         Actually assign a value.
12565
12566 2008-04-20  Bruno Haible  <bruno@clisp.org>
12567
12568         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
12569         take 2.
12570         * lib/canonicalize.c (canonicalize_file_name): Elide if the
12571         'canonicalize-lgpl' module is also used.
12572         * lib/canonicalize-lgpl.c: Undo last change.
12573         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
12574
12575 2008-04-20  Bruno Haible  <bruno@clisp.org>
12576
12577         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
12578         config.h. Provide _mkdir based fallback for mingw.
12579         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
12580         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
12581         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
12582         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
12583         rather than defining mkdir in config.h.
12584         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
12585         (gl_SYS_STAT_H_DEFAULTS): New macro.
12586         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
12587         HAVE_IO_H any more.
12588         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
12589         HAVE_DECL_MKDIR and HAVE_IO_H.
12590
12591 2008-04-20  Bruno Haible  <bruno@clisp.org>
12592
12593         * lib/isapipe.c: Port to native Windows platforms.
12594
12595 2008-04-20  Bruno Haible  <bruno@clisp.org>
12596
12597         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
12598
12599 2008-04-21  Eric Blake  <ebb9@byu.net>
12600
12601         Work around preprocessors that don't handle UINTMAX_MAX.
12602         * lib/memchr2.c (memchr2): Avoid embedded #if.
12603         Reported by Alain Guibert, fix suggested by Bruno Haible.
12604
12605 2008-04-21  Simon Josefsson  <simon@josefsson.org>
12606
12607         * doc/posix-functions/strftime.texi (strftime): Explain better
12608         Windows incompatibility.  Suggested by Micah Cowan
12609         <micah@cowan.name>.
12610
12611 2008-04-20  Bruno Haible  <bruno@clisp.org>
12612
12613         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
12614         unistr/u8-mblen.
12615
12616 2008-04-20  Bruno Haible  <bruno@clisp.org>
12617
12618         Fix test failure on platforms with non-GNU iconv.
12619         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
12620         (U_TO_U8): Use it, rather than u16_to_u8.
12621         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
12622         units at the end of the input string.
12623         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
12624
12625 2008-04-20  Bruno Haible  <bruno@clisp.org>
12626
12627         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
12628         when the resulting length is 0.
12629         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
12630
12631 2008-04-20  Bruno Haible  <bruno@clisp.org>
12632
12633         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
12634         works.
12635         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
12636
12637 2008-04-20  Bruno Haible  <bruno@clisp.org>
12638
12639         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
12640         * modules/tsearch-tests (configure.ac): Test for initstate function.
12641
12642 2008-04-20  Bruno Haible  <bruno@clisp.org>
12643
12644         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
12645         for nlink_t if missing.
12646         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
12647
12648 2008-04-19  Bruno Haible  <bruno@clisp.org>
12649
12650         Work around snprintf bug on Linux libc5.
12651         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
12652         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
12653         gl_SNPRINTF_SIZE1.
12654         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12655         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
12656         that test failed.
12657         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
12658         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
12659         * modules/snprintf (Files): Add m4/printf.m4.
12660         * modules/vsnprintf (Files): Likewise.
12661         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
12662         * doc/posix-functions/vsnprintf.texi: Likewise.
12663
12664 2008-04-19  Bruno Haible  <bruno@clisp.org>
12665
12666         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
12667         from 0.0058 to less than 10^-7.
12668
12669 2008-04-19  Bruno Haible  <bruno@clisp.org>
12670
12671         Fix rounding when a precision is given.
12672         * lib/vasnprintf.c (is_borderline): New function.
12673         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
12674         9...9x.
12675         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
12676         %e, %g.
12677         * tests/test-vasprintf-posix.c (test_function): Likewise.
12678         * tests/test-snprintf-posix.h (test_function): Likewise.
12679         * tests/test-sprintf-posix.h (test_function): Likewise.
12680         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
12681         * tests/test-printf-posix.h (test_function): Likewise.
12682         * tests/test-printf-posix.output: Update.
12683         Reported by John Darrington <john@darrington.wattle.id.au> via
12684         Ben Pfaff <blp@cs.stanford.edu>.
12685
12686 2008-04-18  Simon Josefsson  <simon@josefsson.org>
12687
12688         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
12689         Suggested by Bruno Haible <bruno@clisp.org>.
12690
12691 2008-04-17  Bruno Haible  <bruno@clisp.org>
12692
12693         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
12694         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
12695         implementation.
12696         Patch by Bruce Merry <bmerry@gmail.com>.
12697
12698 2008-04-17  Simon Josefsson  <simon@josefsson.org>
12699
12700         * doc/posix-functions/strftime.texi (strftime): Mention that %e
12701         doesn't work under Windows.
12702
12703 2008-04-16  Bruno Haible  <bruno@clisp.org>
12704
12705         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
12706         New macros.
12707         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
12708         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
12709         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
12710         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
12711         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
12712         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
12713         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
12714         macros.
12715         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
12716         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
12717         Northern Sotho, Uighur.
12718
12719 2008-04-16  Bruno Haible  <bruno@clisp.org>
12720
12721         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
12722         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
12723         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
12724         Reported by Daniel Bergström <daniel@octocode.com>.
12725
12726 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
12727             Bruno Haible  <bruno@clisp.org>
12728
12729         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
12730         function.
12731         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
12732         New functions, mostly extracted from gl_locale_name_default.
12733         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
12734
12735 2008-04-16  Eric Blake  <ebb9@byu.net>
12736
12737         Adjust strtod detection to catch glibc 2.7 bug.
12738         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
12739         Reported by John Gatewood Ham.
12740
12741 2008-04-16  Bruno Haible  <bruno@clisp.org>
12742
12743         Add tentative support for Linux libc5.
12744         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
12745         * lib/fpurge.c (fpurge): Likewise.
12746         * lib/freadable.c (freadable): Likewise.
12747         * lib/freadahead.c (freadahead): Likewise.
12748         * lib/freading.c (freading): Likewise.
12749         * lib/freadptr.c (freadptr): Likewise.
12750         * lib/freadseek.c (freadptrinc): Likewise.
12751         * lib/fseeko.c (rpl_fseeko): Likewise.
12752         * lib/fseterr.c (fseterr): Likewise.
12753         * lib/fwritable.c (fwritable): Likewise.
12754         * lib/fwriting.c (fwriting): Likewise.
12755         Reported by Alain Guibert <alguibert+bts@free.fr>.
12756
12757 2008-04-15  Bruno Haible  <bruno@clisp.org>
12758
12759         * modules/mathl (configure.ac): Define module indicator.
12760
12761 2008-04-15  Bruno Haible  <bruno@clisp.org>
12762
12763         * lib/logl.c (logl): Remove unused variables.
12764
12765 2008-04-15  Bruno Haible  <bruno@clisp.org>
12766
12767         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
12768         fails.
12769
12770 2008-04-15  Bruno Haible  <bruno@clisp.org>
12771
12772         * lib/trim.c (trim2): Fix argument of isspace() macro.
12773
12774 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
12775
12776         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
12777         to 0.
12778         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
12779
12780 2008-04-14  Bruno Haible  <bruno@clisp.org>
12781
12782         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
12783         AC_LANG_PROGRAM argument.
12784         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
12785         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
12786         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
12787         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
12788         * m4/math_h.m4 (gl_MATH_H): Likewise.
12789         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
12790         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
12791         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
12792         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
12793         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
12794         * m4/regex.m4 (gl_REGEX): Likewise.
12795         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
12796         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
12797         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
12798         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
12799         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
12800         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
12801         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
12802         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
12803
12804 2008-04-14  Jim Meyering  <meyering@redhat.com>
12805
12806         test-strtod: fix typos: s/abs/fabs/
12807         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
12808
12809 2008-04-13  Bruno Haible  <bruno@clisp.org>
12810
12811         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
12812         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
12813         module is also used and while not building the reloc-wrapper.
12814
12815 2008-04-13  Bruno Haible  <bruno@clisp.org>
12816
12817         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
12818
12819 2008-04-13  Bruno Haible  <bruno@clisp.org>
12820
12821         Fix AIX compilation failure introduced on 2008-04-02.
12822         * tests/test-frexp.c (exp): Undefine before redefining.
12823         * tests/test-frexpl.c (exp): Likewise.
12824
12825 2008-04-13  Bruno Haible  <bruno@clisp.org>
12826
12827         Work around a HP-UX stdio bug.
12828         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
12829         * tests/test-ftello.c (main): Likewise.
12830         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
12831         * doc/posix-functions/ftello.texi: Likewise.
12832
12833 2008-04-13  Bruno Haible  <bruno@clisp.org>
12834
12835         Make test-signbit pass on HP-UX/hppa.
12836         * tests/test-signbit.c (minus_zerol): New variable.
12837         (test_signbitl): Use it.
12838
12839 2008-04-13  Bruno Haible  <bruno@clisp.org>
12840
12841         Make truncl work on OSF/1 4.0.
12842         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
12843         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
12844         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
12845         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
12846         HAVE_DECL_TRUNCL.
12847         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
12848         HAVE_DECL_TRUNCL.
12849         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
12850
12851 2008-04-13  Bruno Haible  <bruno@clisp.org>
12852
12853         * lib/unictype.h: Remove trailing comma from enumeration definitions.
12854
12855 2008-04-13  Bruno Haible  <bruno@clisp.org>
12856
12857         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
12858         expression, so as to avoid HP-UX 11 cc compiler bug.
12859
12860 2008-04-13  Bruno Haible  <bruno@clisp.org>
12861
12862         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
12863
12864 2008-04-13  Bruno Haible  <bruno@clisp.org>
12865
12866         * lib/git-merge-changelog.c: Remove empty declaration outside of
12867         functions.
12868
12869 2008-04-13  Bruno Haible  <bruno@clisp.org>
12870
12871         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
12872
12873 2008-04-13  Bruno Haible  <bruno@clisp.org>
12874
12875         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
12876         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
12877         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
12878         also if it exists but lacks definitions of the SHUT_* macros.
12879         * modules/sys_socket (Description): Update.
12880         Reported by Elbert Pol <e.pol@chello.nl>.
12881
12882 2008-04-13  Bruno Haible  <bruno@clisp.org>
12883
12884         * lib/localcharset.c (OS2): Don't redefine if already defined.
12885         Reported by Elbert Pol <e.pol@chello.nl>.
12886
12887 2008-04-13  Bruno Haible  <bruno@clisp.org>
12888
12889         * lib/binary-io.h [__EMX__]: Include <io.h>.
12890         Reported by Elbert Pol <e.pol@chello.nl>.
12891
12892 2008-04-12  Bruno Haible  <bruno@clisp.org>
12893
12894         * lib/fpucw.h: Enable the definitions also for x86_64.
12895         Needed for NetBSD/x86_64.
12896         Reported by Thomas Klausner <tk@giga.or.at>.
12897
12898 2008-04-12  Bruno Haible  <bruno@clisp.org>
12899
12900         * tests/test-strtod.c: Include isnand.h.
12901         (main): Use isnand instead of isnan.
12902         Reported by Jim Meyering.
12903
12904 2008-04-12  Bruno Haible  <bruno@clisp.org>
12905
12906         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
12907         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
12908
12909 2008-04-12  Jim Meyering  <meyering@redhat.com>
12910
12911         * m4/math_h.m4 (gl_MATH_H): Fix typos.
12912
12913 2008-04-12  Bruno Haible  <bruno@clisp.org>
12914
12915         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
12916         Reported by Elbert Pol <e.pol@chello.nl>.
12917
12918 2008-04-12  Eric Blake  <ebb9@byu.net>
12919
12920         Work around Solaris 10 math.h bug.
12921         * m4/math_h.m4 (gl_MATH_H): Check for bug.
12922         (gl_MATH_H_DEFAULTS): Set up default.
12923         * modules/math (Makefile.am): Replace new indicators.
12924         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
12925         * tests/test-math.c (main): Test this.
12926         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
12927         * doc/posix-headers/math.texi (math.h): Mention bug.
12928         Reported by Nelson H. F. Beebe and Jim Meyering.
12929
12930 2008-04-11  Bruno Haible  <bruno@clisp.org>
12931
12932         Adapt to future versions of Apple GCC.
12933         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
12934         Reported by Peter O'Gorman <peter@pogma.com>.
12935
12936 2008-04-11  Bruno Haible  <bruno@clisp.org>
12937
12938         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
12939
12940 2008-04-11  Bruno Haible  <bruno@clisp.org>
12941
12942         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
12943
12944         * modules/getaddrinfo-tests (Makefile.am): Define
12945         test_getaddrinfo_LDADD.
12946
12947 2008-04-11  Bruno Haible  <bruno@clisp.org>
12948
12949         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
12950         (init): Fix syntax error.
12951         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
12952         is declared.
12953
12954 2008-04-11  Bruno Haible  <bruno@clisp.org>
12955
12956         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
12957         * modules/glob (Depends-on): Add stdbool.
12958
12959 2008-04-11  Bruno Haible  <bruno@clisp.org>
12960
12961         * lib/trim.c: Include <string.h>.
12962
12963 2008-04-11  Eric Blake  <ebb9@byu.net>
12964
12965         Avoid compile failure on OS/2.
12966         * lib/regex_internal.h (internal_function): Disable optimization
12967         on OS/2 (__EMX__), where it caused compiler error.
12968         Reported by Elbert Pol.
12969
12970 2008-04-11  Bruno Haible  <bruno@clisp.org>
12971
12972         Flush the standard error stream before aborting. Needed on mingw.
12973         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
12974         * tests/test-array_list.c (ASSERT): Likewise.
12975         * tests/test-array_oset.c (ASSERT): Likewise.
12976         * tests/test-avltree_list.c (ASSERT): Likewise.
12977         * tests/test-avltree_oset.c (ASSERT): Likewise.
12978         * tests/test-avltreehash_list.c (ASSERT): Likewise.
12979         * tests/test-binary-io.c (ASSERT): Likewise.
12980         * tests/test-byteswap.c (ASSERT): Likewise.
12981         * tests/test-c-ctype.c (ASSERT): Likewise.
12982         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
12983         * tests/test-c-strcasestr.c (ASSERT): Likewise.
12984         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
12985         * tests/test-c-strstr.c (ASSERT): Likewise.
12986         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
12987         * tests/test-canonicalize.c (ASSERT): Likewise.
12988         * tests/test-carray_list.c (ASSERT): Likewise.
12989         * tests/test-ceilf1.c (ASSERT): Likewise.
12990         * tests/test-ceilf2.c (ASSERT): Likewise.
12991         * tests/test-ceill.c (ASSERT): Likewise.
12992         * tests/test-count-one-bits.c (ASSERT): Likewise.
12993         * tests/test-fbufmode.c (ASSERT): Likewise.
12994         * tests/test-fflush2.c (ASSERT): Likewise.
12995         * tests/test-floorf1.c (ASSERT): Likewise.
12996         * tests/test-floorf2.c (ASSERT): Likewise.
12997         * tests/test-floorl.c (ASSERT): Likewise.
12998         * tests/test-fopen.c (ASSERT): Likewise.
12999         * tests/test-fpending.c (ASSERT): Likewise.
13000         * tests/test-fprintf-posix.c (ASSERT): Likewise.
13001         * tests/test-fpurge.c (ASSERT): Likewise.
13002         * tests/test-freadable.c (ASSERT): Likewise.
13003         * tests/test-freadahead.c (ASSERT): Likewise.
13004         * tests/test-freading.c (ASSERT): Likewise.
13005         * tests/test-freadptr.c (ASSERT): Likewise.
13006         * tests/test-freadptr2.c (ASSERT): Likewise.
13007         * tests/test-freadseek.c (ASSERT): Likewise.
13008         * tests/test-freopen.c (ASSERT): Likewise.
13009         * tests/test-frexp.c (ASSERT): Likewise.
13010         * tests/test-frexpl.c (ASSERT): Likewise.
13011         * tests/test-fseek.c (ASSERT): Likewise.
13012         * tests/test-fseeko.c (ASSERT): Likewise.
13013         * tests/test-fstrcmp.c (ASSERT): Likewise.
13014         * tests/test-ftell.c (ASSERT): Likewise.
13015         * tests/test-ftello.c (ASSERT): Likewise.
13016         * tests/test-func.c (ASSERT): Likewise.
13017         * tests/test-fwritable.c (ASSERT): Likewise.
13018         * tests/test-fwriting.c (ASSERT): Likewise.
13019         * tests/test-getdelim.c (ASSERT): Likewise.
13020         * tests/test-getline.c (ASSERT): Likewise.
13021         * tests/test-i-ring.c (ASSERT): Likewise.
13022         * tests/test-iconv-utf.c (ASSERT): Likewise.
13023         * tests/test-iconv.c (ASSERT): Likewise.
13024         * tests/test-isfinite.c (ASSERT): Likewise.
13025         * tests/test-isnand.c (ASSERT): Likewise.
13026         * tests/test-isnanf.c (ASSERT): Likewise.
13027         * tests/test-isnanl.h (ASSERT): Likewise.
13028         * tests/test-ldexpl.c (ASSERT): Likewise.
13029         * tests/test-linked_list.c (ASSERT): Likewise.
13030         * tests/test-linkedhash_list.c (ASSERT): Likewise.
13031         * tests/test-localename.c (ASSERT): Likewise.
13032         * tests/test-lseek.c (ASSERT): Likewise.
13033         * tests/test-mbscasecmp.c (ASSERT): Likewise.
13034         * tests/test-mbscasestr1.c (ASSERT): Likewise.
13035         * tests/test-mbscasestr2.c (ASSERT): Likewise.
13036         * tests/test-mbscasestr3.c (ASSERT): Likewise.
13037         * tests/test-mbscasestr4.c (ASSERT): Likewise.
13038         * tests/test-mbschr.c (ASSERT): Likewise.
13039         * tests/test-mbscspn.c (ASSERT): Likewise.
13040         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
13041         * tests/test-mbspbrk.c (ASSERT): Likewise.
13042         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
13043         * tests/test-mbsrchr.c (ASSERT): Likewise.
13044         * tests/test-mbsspn.c (ASSERT): Likewise.
13045         * tests/test-mbsstr1.c (ASSERT): Likewise.
13046         * tests/test-mbsstr2.c (ASSERT): Likewise.
13047         * tests/test-mbsstr3.c (ASSERT): Likewise.
13048         * tests/test-memchr2.c (ASSERT): Likewise.
13049         * tests/test-memmem.c (ASSERT): Likewise.
13050         * tests/test-open.c (ASSERT): Likewise.
13051         * tests/test-printf-frexp.c (ASSERT): Likewise.
13052         * tests/test-printf-frexpl.c (ASSERT): Likewise.
13053         * tests/test-printf-posix.c (ASSERT): Likewise.
13054         * tests/test-quotearg.c (ASSERT): Likewise.
13055         * tests/test-rbtree_list.c (ASSERT): Likewise.
13056         * tests/test-rbtree_oset.c (ASSERT): Likewise.
13057         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
13058         * tests/test-round1.c (ASSERT): Likewise.
13059         * tests/test-roundf1.c (ASSERT): Likewise.
13060         * tests/test-roundl.c (ASSERT): Likewise.
13061         * tests/test-signbit.c (ASSERT): Likewise.
13062         * tests/test-sleep.c (ASSERT): Likewise.
13063         * tests/test-snprintf-posix.c (ASSERT): Likewise.
13064         * tests/test-snprintf.c (ASSERT): Likewise.
13065         * tests/test-sprintf-posix.c (ASSERT): Likewise.
13066         * tests/test-stat-time.c (ASSERT): Likewise.
13067         * tests/test-strcasestr.c (ASSERT): Likewise.
13068         * tests/test-strerror.c (ASSERT): Likewise.
13069         * tests/test-striconv.c (ASSERT): Likewise.
13070         * tests/test-striconveh.c (ASSERT): Likewise.
13071         * tests/test-striconveha.c (ASSERT): Likewise.
13072         * tests/test-strsignal.c (ASSERT): Likewise.
13073         * tests/test-strstr.c (ASSERT): Likewise.
13074         * tests/test-strtod.c (ASSERT): Likewise.
13075         * tests/test-trunc1.c (ASSERT): Likewise.
13076         * tests/test-trunc2.c (ASSERT): Likewise.
13077         * tests/test-truncf1.c (ASSERT): Likewise.
13078         * tests/test-truncf2.c (ASSERT): Likewise.
13079         * tests/test-truncl.c (ASSERT): Likewise.
13080         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
13081         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
13082         * tests/test-vasnprintf.c (ASSERT): Likewise.
13083         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
13084         * tests/test-vasprintf.c (ASSERT): Likewise.
13085         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
13086         * tests/test-vprintf-posix.c (ASSERT): Likewise.
13087         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
13088         * tests/test-vsnprintf.c (ASSERT): Likewise.
13089         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
13090         * tests/test-wcwidth.c (ASSERT): Likewise.
13091         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
13092         * tests/test-xprintf-posix.c (ASSERT): Likewise.
13093         * tests/test-xvasprintf.c (ASSERT): Likewise.
13094         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
13095         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
13096         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
13097         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
13098         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
13099         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
13100         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
13101         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
13102         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
13103         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
13104         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
13105         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
13106         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
13107         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
13108         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
13109         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
13110         * tests/unictype/test-block_list.c (ASSERT): Likewise.
13111         * tests/unictype/test-block_of.c (ASSERT): Likewise.
13112         * tests/unictype/test-block_test.c (ASSERT): Likewise.
13113         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
13114         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
13115         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
13116         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
13117         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
13118         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
13119         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
13120         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
13121         * tests/unictype/test-combining.c (ASSERT): Likewise.
13122         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
13123         * tests/unictype/test-digit.c (ASSERT): Likewise.
13124         * tests/unictype/test-mirror.c (ASSERT): Likewise.
13125         * tests/unictype/test-numeric.c (ASSERT): Likewise.
13126         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
13127         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
13128         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
13129         * tests/unictype/test-scripts.c (ASSERT): Likewise.
13130         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
13131         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
13132         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
13133         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
13134         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
13135         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
13136         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
13137         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
13138         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
13139         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
13140         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
13141         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
13142         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
13143         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
13144         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
13145         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
13146         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
13147         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
13148         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
13149         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
13150         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
13151         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
13152         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
13153         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
13154         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
13155         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
13156         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
13157         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
13158         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
13159         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
13160         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
13161         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
13162         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
13163         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
13164         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
13165         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
13166         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
13167         Reported by Eric Blake.
13168
13169 2008-04-11  Bruno Haible  <bruno@clisp.org>
13170
13171         * lib/wchar.in.h: Tweak comment.
13172
13173 2008-04-11  Bruno Haible  <bruno@clisp.org>
13174
13175         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
13176         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
13177         gl_COMMON.
13178         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
13179
13180 2008-04-11  Bruno Haible  <bruno@clisp.org>
13181
13182         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
13183
13184 2008-04-11  Simon Josefsson  <simon@josefsson.org>
13185
13186         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
13187         of attempting to use non-existing /dev/*random.  Based on patch
13188         from Adam Strzelecki <ono@java.pl> in
13189         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
13190
13191 2008-04-08  Bruno Haible  <bruno@clisp.org>
13192
13193         Add tentative support for emx+gcc.
13194         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
13195         * lib/fpurge.c (fpurge): Likewise.
13196         * lib/freadable.c (freadable): Likewise.
13197         * lib/freadahead.c (freadahead): Likewise.
13198         * lib/freading.c (freading): Likewise.
13199         * lib/freadptr.c (freadptr): Likewise.
13200         * lib/freadseek.c (freadptrinc): Likewise.
13201         * lib/fseeko.c (rpl_fseeko): Likewise.
13202         * lib/fseterr.c (fseterr): Likewise.
13203         * lib/fwritable.c (fwritable): Likewise.
13204         * lib/fwriting.c (fwriting): Likewise.
13205         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
13206
13207 2008-04-09  Eric Blake  <ebb9@byu.net>
13208
13209         Avoid some autoconf warnings.
13210         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
13211         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
13212         * m4/afs.m4 (gl_AFS): Likewise.
13213         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
13214         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
13215         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13216         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
13217         (gl_INTEGER_TYPE_SUFFIX): Likewise.
13218         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
13219         (AC_CHECK_DECLS_ONCE): Likewise.
13220         Rename file...
13221         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
13222         gnulib-tool requires autoconf 2.59 or better.
13223         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
13224
13225 2008-04-08  Eric Blake  <ebb9@byu.net>
13226
13227         Use 'git describe --match' if present (added in git 1.5.5).
13228         * build-aux/git-version-gen: Limit result to tags that match 'v*'
13229         if possible.
13230
13231 2008-04-08  Bruno Haible  <bruno@clisp.org>
13232
13233         Add tentative support for OpenServer.
13234         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
13235         _ptr, _cnt.
13236         * lib/fpurge.c (fpurge): Likewise.
13237         * lib/freadable.c (freadable): Likewise.
13238         * lib/freadahead.c (freadahead): Likewise.
13239         * lib/freading.c (freading): Likewise.
13240         * lib/freadptr.c (freadptr): Likewise.
13241         * lib/freadseek.c (freadptrinc): Likewise.
13242         * lib/fseeko.c (rpl_fseeko): Likewise.
13243         * lib/fseterr.c (fseterr): Likewise.
13244         * lib/fwritable.c (fwritable): Likewise.
13245         * lib/fwriting.c (fwriting): Likewise.
13246         Reported by Roger Cornelius <rac@tenzing.org> and
13247         Brian K. White <brian@aljex.com>.
13248
13249 2008-04-06  Jim Meyering  <meyering@redhat.com>
13250
13251         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
13252
13253 2008-04-06  Bruno Haible  <bruno@clisp.org>
13254
13255         Avoid possible error with non-ASCII bytes in UTF-8 locales.
13256         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
13257         * tests/test-printf-posix.sh: Likewise.
13258         * tests/test-vfprintf-posix.sh: Likewise.
13259         * tests/test-vprintf-posix.sh: Likewise.
13260         * tests/test-xprintf-posix.sh: Likewise.
13261
13262 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13263
13264         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
13265         hide error from 'ls', needed on OS/2.
13266         Report by Elbert Pol <elbert.pol@gmail.com>.
13267
13268 2008-04-04  Eric Blake  <ebb9@byu.net>
13269
13270         Make test-fseeko.c failures meaningful.
13271         * tests/test-fseeko.c: Print line number on failure.
13272         * tests/test-fseek.c: Likewise.
13273         Reported by Nelson H. F. Beebe.
13274
13275         Improve strtod bug detection check.
13276         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
13277         required for Solaris 10.
13278         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
13279
13280 2008-04-04  Bruno Haible  <bruno@clisp.org>
13281
13282         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
13283         by m4/setenv.m4.
13284
13285 2008-04-03  Eric Blake  <ebb9@byu.net>
13286
13287         Ensure sane .version contents.
13288         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
13289         version string.
13290         * build-aux/git-version-gen: Improve documentation.
13291
13292         Make GNU make output nicer.
13293         * top/GNUmakefile [!_have-Makefile]: Add dependency on
13294         MAKECMDGOALS to enforce message for all command line targets.  Set
13295         srcdir for use in maint.mk.
13296
13297         Another maintainer tweak.
13298         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
13299         a target that regenerates version.
13300
13301 2008-04-03  Jim Meyering  <meyering@redhat.com>
13302
13303         vc-list-files: don't cause coreutils "make po-check" failure
13304         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
13305
13306 2008-04-03  Eric Blake  <ebb9@byu.net>
13307
13308         Allow VPATH usage of vc-list-files.
13309         * build-aux/vc-list-files (scriptversion): Add timestamp.
13310         (options): Add --help, --version, -C.
13311         (CVS): Support installed cvsu.
13312
13313 2008-04-02  Bruno Haible  <bruno@clisp.org>
13314
13315         Avoid some "statement with no effect" warnings from gcc.
13316         * tests/test-wctype.c (main): Explicitly ignore unused values.
13317         Reported by Jim Meyering.
13318
13319 2008-04-02  Jim Meyering  <meyering@redhat.com>
13320
13321         Avoid some warnings from "gcc -Wshadow".
13322         * tests/test-frexp.c (exp): Define to a different identifier.
13323         * tests/test-frexpl.c (exp): Likewise.
13324
13325 2008-04-03  Jim Meyering  <meyering@redhat.com>
13326
13327         bootstrap: remove dangling *.[ch] symlinks from lib
13328         * build-aux/bootstrap [dangling symlink removal]: Move find's
13329         -depth option to precede all others, to avoid a warning.
13330         Remove *.[ch] files too, and from "$source_base" (usually lib/).
13331
13332 2008-04-02  Bruno Haible  <bruno@clisp.org>
13333
13334         Avoid some warnings from "gcc -Wshadow".
13335         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
13336         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
13337         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
13338         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
13339         Reported by Jim Meyering.
13340
13341 2008-04-01  Bruno Haible  <bruno@clisp.org>
13342
13343         Fix test to work on IRIX 6.5 with cc.
13344         * tests/test-math.c (numeric_equal): New function.
13345         (main): Use it.
13346
13347 2008-04-01  Bruno Haible  <bruno@clisp.org>
13348
13349         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
13350
13351 2008-04-01  Bruno Haible  <bruno@clisp.org>
13352
13353         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
13354         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13355         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
13356         (Depends-on): Remove math.
13357
13358         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
13359         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13360         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
13361         (Depends-on): Remove math.
13362
13363         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
13364         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13365         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
13366         (Depends-on): Remove math.
13367         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
13368         (Depends-on): Remove math.
13369
13370         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
13371         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
13372         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
13373         (Depends-on): Remove math.
13374         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
13375         (Depends-on): Remove math.
13376
13377         * tests/test-round1.c: Include nan.h.
13378         (main): Use NaNd instead of NAN.
13379         * modules/round-tests (Files): Add tests/nan.h.
13380
13381         * tests/test-trunc1.c: Include nan.h.
13382         (main): Use NaNd instead of NAN.
13383         * modules/trunc-tests (Files): Add tests/nan.h.
13384
13385         * tests/test-roundf1.c: Include nan.h.
13386         (main): Use NaNf instead of NAN.
13387         * modules/roundf-tests (Files): Add tests/nan.h.
13388
13389         * tests/test-truncf1.c: Include nan.h.
13390         (main): Use NaNf instead of NAN.
13391         * modules/truncf-tests (Files): Add tests/nan.h.
13392
13393         * tests/test-ceilf1.c: Include nan.h.
13394         (main): Use NaNf instead of NAN.
13395         * modules/ceilf-tests (Files): Add tests/nan.h.
13396
13397         * tests/test-floorf1.c: Include nan.h.
13398         (main): Use NaNf instead of NAN.
13399         * modules/floorf-tests (Files): Add tests/nan.h.
13400
13401         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
13402         (main): Use NaNf instead of NAN.
13403         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
13404
13405         * tests/test-isnand.c: Include nan.h instead of <math.h>.
13406         (main): Use NaNd instead of NAN.
13407         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
13408
13409         * tests/test-frexp.c: Include nan.h.
13410         (main): Use NaNd instead of NAN.
13411         * modules/frexp-tests (Files): Add tests/nan.h.
13412
13413         * lib/isnan.c: Don't include <math.h>.
13414         (FUNC): Don't use NAN macro.
13415         * modules/isnand-nolibm (Depends-on): Remove math.
13416         * modules/isnanf-nolibm (Depends-on): Remove math.
13417         * modules/isnanl (Depends-on): Remove math.
13418         * modules/isnanl-nolibm (Depends-on): Remove math.
13419
13420         * tests/nan.h: New file.
13421
13422 2008-04-01  Eric Blake  <ebb9@byu.net>
13423
13424         Fix typos.
13425         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
13426         values to be the right type.
13427
13428         For now, cater to gnulib strtod inaccuracies.
13429         * tests/test-strtod.c (main): Allow 1-ulp error on expected
13430         fractional results.  While not as nice from a QoI perspective, it
13431         is a quicker patch than correctly implementing decimal to binary
13432         rounding.
13433
13434 2008-03-31  Eric Blake  <ebb9@byu.net>
13435
13436         Guarantee a definition of NAN.
13437         * lib/math.in.h (NAN): Define if missing.
13438         * tests/test-math.c (main): Test it.
13439         * doc/posix-headers/math.texi (math.h): Document this.
13440         * lib/isnan.c (rpl_isnand): Use it.
13441         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
13442         * tests/test-floorf1.c (NaN): Likewise.
13443         * tests/test-frexp.c (NaN): Likewise.
13444         * tests/test-isnand.c (NaN): Likewise.
13445         * tests/test-isnanf.c (NaN): Likewise.
13446         * tests/test-round1.c (NaN): Likewise.
13447         * tests/test-roundf1.c (NaN): Likewise.
13448         * tests/test-snprintf-posix.h (NaN): Likewise.
13449         * tests/test-sprintf-posix.h (NaN): Likewise.
13450         * tests/test-trunc1.c (NaN): Likewise.
13451         * tests/test-truncf1.c (NaN): Likewise.
13452         * tests/test-vasnprintf-posix.c (NaN): Likewise.
13453         * tests/test-vasprintf-posix.c (NaN): Likewise.
13454         * modules/isnand-nolibm (Depends-on): Add math.
13455         * modules/isnanf-nolibm (Depends-on): Likewise.
13456         * modules/isnanl (Depends-on): Likewise.
13457         * modules/isnanl-nolibm (Depends-on): Likewise.
13458         * modules/snprintf-posix-tests (Depends-on): Likewise.
13459         * modules/sprintf-posix-tests (Depends-on): Likewise.
13460         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
13461         * modules/vsprintf-posix-tests (Depends-on): Likewise.
13462         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
13463         * modules/vasprintf-posix-tests (Depends-on): Likewise.
13464
13465 2008-03-31  Bruno Haible  <bruno@clisp.org>
13466
13467         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
13468         * doc/posix-functions/strtod.texi: Likewise.
13469
13470 2008-03-31  Bruno Haible  <bruno@clisp.org>
13471
13472         * tests/test-strtod.c (main): Don't use C99 syntax.
13473
13474 2008-03-31  Bruno Haible  <bruno@clisp.org>
13475
13476         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
13477         Reported by Eric Blake.
13478
13479 2008-03-31  Jim Meyering  <meyering@redhat.com>
13480
13481         Don't compare actual signbit return values.
13482         * tests/test-strtod.c (main): Rather, compare only their
13483         zero/non-zero nature.
13484
13485 2008-03-31  Eric Blake  <ebb9@byu.net>
13486
13487         More strtod documentation.
13488         * doc/posix-functions/strtod.texi (strtod): Interpret more test
13489         failures as distinct bugs.
13490
13491 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
13492
13493         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
13494         Problem reported by Erik Benada in
13495         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
13496
13497 2008-03-30  Bruno Haible  <bruno@clisp.org>
13498
13499         * tests/test-strtod.c: Add comments about which assertion fails on which
13500         platform.
13501         * doc/posix-functions/strtod.texi: Add info about many more platforms.
13502
13503 2008-03-30  Eric Blake  <ebb9@byu.net>
13504
13505         Test signbit behavior on zeros.
13506         * tests/test-signbit.c (test_signbitf): Add tests for zero.
13507         (test_signbitd, test_signbitl): Likewise.
13508
13509         More strtod touchups.
13510         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
13511         sign of negative underflow, for now.  Use .5, not .1.
13512         * doc/posix-functions/strtod.texi (strtod): Mention these
13513         limitations.
13514         Reported by Jim Meyering.
13515
13516 2008-03-30  Bruno Haible  <bruno@clisp.org>
13517
13518         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
13519         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
13520
13521 2008-03-30  Bruno Haible  <bruno@clisp.org>
13522
13523         Avoid failure when attempting to return empty iconv results on some
13524         platforms.
13525         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
13526         allocation, don't report ENOMEM when the resulting string is empty.
13527
13528 2008-03-30  Bruno Haible  <bruno@clisp.org>
13529
13530         Fix buffer overrun.
13531         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
13532         Don't consider the width for tmp_length. Check count against tmp_length
13533         before doing the padding. Ensure enough allocation during padding.
13534
13535 2008-03-30  Eric Blake  <ebb9@byu.net>
13536
13537         strtod touchups.
13538         * lib/strtod.c (strtod): Avoid compiler warnings.
13539         Reported by Jim Meyering.
13540
13541 2008-03-30  Bruno Haible  <bruno@clisp.org>
13542
13543         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
13544         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
13545         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
13546         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
13547         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
13548         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
13549         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
13550         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
13551
13552         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
13553         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
13554         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
13555         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
13556         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
13557         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
13558         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
13559         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
13560
13561         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
13562         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
13563         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
13564         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
13565         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
13566         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
13567         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
13568         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
13569
13570         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
13571         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
13572
13573         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
13574         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
13575
13576         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
13577         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
13578
13579         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
13580         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
13581         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
13582
13583         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
13584         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
13585         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
13586
13587         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
13588         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
13589         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
13590
13591         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
13592         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
13593         * modules/vasprintf (Depends-on): Add EOVERFLOW.
13594
13595         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
13596         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
13597         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
13598         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
13599         (Depends-on): Add EOVERFLOW.
13600         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
13601         (Depends-on): Add EOVERFLOW.
13602         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
13603         (Depends-on): Add EOVERFLOW.
13604         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
13605         (Depends-on): Add EOVERFLOW.
13606         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
13607         (Depends-on): Add EOVERFLOW.
13608         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
13609         (Depends-on): Add EOVERFLOW.
13610         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
13611         (Depends-on): Add EOVERFLOW.
13612         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
13613         (Depends-on): Add EOVERFLOW.
13614
13615         * lib/sprintf.c (EOVERFLOW): Remove fallback.
13616         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
13617         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
13618
13619         * lib/snprintf.c (EOVERFLOW): Remove fallback.
13620         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
13621         * modules/snprintf (Depends-on): Add EOVERFLOW.
13622
13623         * lib/poll.c (EOVERFLOW): Remove fallback.
13624         * modules/poll (Depends-on): Add EOVERFLOW.
13625
13626         * lib/getugroups.c (EOVERFLOW): Remove fallback.
13627         * modules/getugroups (Depends-on): Add EOVERFLOW.
13628
13629         * lib/getdelim.c (EOVERFLOW): Remove fallback.
13630         * modules/getdelim (Depends-on): Add EOVERFLOW.
13631
13632         * lib/ftell.c (EOVERFLOW): Remove fallback.
13633         * modules/ftell (Depends-on): Add EOVERFLOW.
13634
13635         * lib/fprintf.c (EOVERFLOW): Remove fallback.
13636         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
13637         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
13638
13639         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
13640
13641         * modules/EOVERFLOW-tests: New file.
13642         * tests/test-EOVERFLOW.c: New file.
13643
13644         * modules/EOVERFLOW: New file.
13645         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
13646
13647 2008-03-30  Bruno Haible  <bruno@clisp.org>
13648
13649         Fix bug introduced on 2007-06-10.
13650         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
13651         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
13652
13653 2008-03-30  Bruno Haible  <bruno@clisp.org>
13654
13655         Improve freadseek's efficiency after ungetc.
13656         * lib/freadseek.c: Include freadahead.h.
13657         (freadptrinc): New function, extracted from freadseek.
13658         (freadseek): Use it in a loop. Use freadahead to determine the number
13659         of loop iterations.
13660         * modules/freadseek (Depends-on): Add freadahead.
13661         (configure.ac): Require AC_C_INLINE.
13662
13663 2008-03-30  Bruno Haible  <bruno@clisp.org>
13664
13665         * lib/freadseek.c (freadseek): Don't ignore the return value of
13666         freadptr.
13667
13668 2008-03-29  Eric Blake  <ebb9@byu.net>
13669
13670         Add hex float support.
13671         * modules/strtod (Depends-on): Add c-ctype.
13672         (Link): Mention POW_LIB.
13673         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
13674         whitespace between 'e' and exponent.
13675         * tests/test-strtod.c (main): Enable hex float tests.
13676         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
13677         now provides.
13678
13679         Document various strtod bugs, with some fixes.
13680         * doc/posix-functions/strtod.texi (strtod): Document bugs with
13681         "-0x", "inf", "nan", and hex constants.
13682         * doc/posix-functions/atof.texi (atof): Likewise.
13683         * modules/stdlib (Makefile.am): Support strtod.
13684         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
13685         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
13686         detect additional strtod bugs.
13687         * lib/stdlib.in.h (rpl_strtod): Add declarations.
13688         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
13689         bool where appropriate.  Parse 'inf' and 'nan'.
13690         * tests/test-strtod.c: New file.
13691         * modules/strtod (Depends-on): Add stdbool, stdlib.
13692         (configure.ac): Turn on module indicator.
13693         * modules/strtod-tests: New module.
13694
13695 2008-03-29  Eric Blake  <ebb9@byu.net>
13696
13697         Fix ftell on mingw.
13698         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
13699         * modules/ftell-tests (Depends-on): Add binary-io.
13700         * modules/ftello-tests (Depends-on): Likewise.
13701         * tests/test-ftell.c (main): Enhance test to cover behavior after
13702         ungetc.  Enforce binary mode.
13703         * tests/test-ftello.c (main): Likewise.
13704
13705         Pass test-freadseek on cygwin.
13706         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
13707         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
13708         ungetc buffer.
13709
13710         * tests/test-fflush2.c (main): Fix typo.
13711
13712 2008-03-29  Bruno Haible  <bruno@clisp.org>
13713
13714         * tests/test-fflush2.c (main): Temporarily disable the contents of
13715         this test.
13716         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
13717         Reported by Eric Blake.
13718
13719 2008-03-28  Simon Josefsson  <simon@josefsson.org>
13720
13721         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
13722         (GC_SHA224_DIGEST_SIZE): Add.
13723
13724         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
13725         (gc_hash_digest_length): Likewise.
13726         (gc_hash_buffer): Likewise.
13727
13728 2008-03-25  Bruno Haible  <bruno@clisp.org>
13729
13730         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
13731         detail which gettext release to use.
13732         Reported by Simon Josefsson.
13733
13734 2008-03-26  Jim Meyering  <meyering@redhat.com>
13735
13736         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
13737         * modules/gnumakefile (clean-GNUmakefile): Also, use
13738         test ... && ... || : syntax rather than if-then ... fi.
13739
13740         gnumakefile: Don't double-quote-expand $(VPATH) value.
13741         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
13742
13743 2008-03-24  Eric Blake  <ebb9@byu.net>
13744
13745         Alter GNUmakefile to install into top directory.
13746         * modules/maintainer-makefile: Split, and add dependency...
13747         * modules/gnumakefile: to this new module.
13748         * build-aux/GNUmakefile: Move...
13749         * top/GNUmakefile: ...here.
13750         * build-aux/maint.mk: Move...
13751         * top/maint.mk: ...here.
13752         * MODULES.html.sh (Support for maintaining...): Document new
13753         module.
13754
13755 2008-03-23  Bruno Haible  <bruno@clisp.org>
13756
13757         * gnulib-tool: New options --vc-files, --no-vc-files.
13758         (func_usage): Document them.
13759         (vc_files): New variable.
13760         (func_import): Consider vc_files.
13761         (func_create_testdir): Set vc_files to empty.
13762         Suggested by Jim Meyering and Karl Berry.
13763
13764 2008-03-23  Bruno Haible  <bruno@clisp.org>
13765
13766         Fix regex compilation error on HP-UX 11.
13767         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
13768         * modules/regex (Files): Add m4/mbstate_t.m4.
13769         Reported by Ton Voon <ton.voon@altinity.com>.
13770
13771 2008-03-23  Bruno Haible  <bruno@clisp.org>
13772
13773         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
13774
13775 2008-03-23  Eric Blake  <ebb9@byu.net>
13776             Bruno Haible  <bruno@clisp.org>
13777
13778         Install files from top/ in the destination directory.
13779         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
13780         augmentation also for the files from top/.
13781         (func_import, func_create_testdir): Rewrite file names:
13782         top/filename -> filename.
13783
13784 2008-03-23  Bruno Haible  <bruno@clisp.org>
13785
13786         Tweak "gnulib --version" output.
13787         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
13788
13789 2008-03-23  Bruno Haible  <bruno@clisp.org>
13790
13791         Tweak "gnulib --version" output.
13792         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
13793         rather than contents of ChangeLog, when possible.
13794
13795 2008-03-21  Eric Blake  <ebb9@byu.net>
13796
13797         More --version tweaks.
13798         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
13799         date of last ChangeLog entry.
13800
13801 2008-03-21  Jim Meyering  <meyering@redhat.com>
13802
13803         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
13804
13805 2008-03-20  Eric Blake  <ebb9@byu.net>
13806
13807         VPATH fix.
13808         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
13809
13810 2008-03-20  Simon Josefsson  <simon@josefsson.org>
13811
13812         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
13813         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
13814
13815 2008-03-20  Eric Blake  <ebb9@byu.net>
13816
13817         Sync GNUmakefile with coreutils.
13818         * build-aux/GNUmakefile (have-Makefile): Rename...
13819         (_have-Makefile): ...to this, for namespace consideration.
13820         (GNUmakefile.cfg): Include, if present.
13821         (_autoreconf): Define a default.
13822         (_is-dist-target): New rule for rebuilds to pick up intra-release
13823         version.
13824         (maint-cfg.mk): Rename...
13825         (cfg.mk): ...to this.
13826
13827 2008-03-18  Jim Meyering  <meyering@redhat.com>
13828
13829         New script and module: mktempd
13830         * MODULES.html.sh (maint+release support): Add mktempd.
13831         * build-aux/mktempd: New file.
13832         * modules/mktempd: New file.
13833
13834 2008-03-15  Jim Meyering  <meyering@redhat.com>
13835
13836         Undo last change.
13837         * lib/sha1.c, lib/md5.c: 63 != ~63.
13838         Reported by Andreas Schwab.
13839
13840         sha1.c, md5.c: Hoist a redundant expression.
13841         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
13842         "ctx->buflen" only once, before calling *_process_block.
13843         * lib/md5.c (md5_process_bytes): Likewise.
13844
13845 2008-03-14  Eric Blake  <ebb9@byu.net>
13846
13847         Bump copyright year in files generated by gnulib-tool.
13848         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
13849         gnulib-tool, rather than hard-coding it.
13850
13851         Fix 'gnulib-tool --version' output to work with git.
13852         * gnulib-tool (func_gnulib_dir): New function, extracted from...
13853         (startup): ...here.
13854         (func_version): Use it to invoke git-version-gen, rather than
13855         relying on CVS keyword expansion.  Modernize wording.
13856         (cvsdatestamp, last_checkin_date, version): Kill unused
13857         variables.
13858
13859 2008-03-12  Jim Meyering  <meyering@redhat.com>
13860
13861         Recognize optional cast of the argument to free.
13862         * build-aux/useless-if-before-free: Update regexps.
13863
13864         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
13865
13866 2008-03-11  Bruno Haible  <bruno@clisp.org>
13867
13868         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
13869         by a single package.
13870         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
13871         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
13872         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
13873         Reported by Sam Steingold <sds@gnu.org>.
13874
13875 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13876
13877         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
13878         repositories.
13879
13880 2008-03-11  Bruno Haible  <bruno@clisp.org>
13881
13882         Avoid conflicts between local macro definitions.
13883         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
13884         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
13885
13886 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
13887             Bruno Haible  <bruno@clisp.org>
13888
13889         Make va_copy work with some version of xlc on AIX 5.1.
13890         * lib/stdarg.in.h: New file.
13891         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
13892         On AIX, use a <stdarg.h> file substitute.
13893         * modules/stdarg (Files): Add lib/stdarg.in.h.
13894         (Depends-on): Add include_next.
13895         (Makefile.am): Build a stdarg.h substitute if requested.
13896         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
13897
13898 2008-03-10  Bruno Haible  <bruno@clisp.org>
13899
13900         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
13901         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
13902         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
13903
13904 2008-03-10  Bruno Haible  <bruno@clisp.org>
13905
13906         * modules/stdlib (Depends-on): Add include_next, remove
13907         absolute-header.
13908
13909 2008-03-09  Bruno Haible  <bruno@clisp.org>
13910
13911         * lib/freadahead.h (freadahead): Document more precisely.
13912         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
13913         the sum of both buffer sizes.
13914         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
13915         * NEWS: Document the change.
13916
13917 2008-03-09  Bruno Haible  <bruno@clisp.org>
13918
13919         Extend freadptr to return also the buffer size.
13920         * lib/freadptr.h (freadptr): Add sizep argument.
13921         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
13922         (freadptr): Add sizep argument. Determine buffer size like freadahead
13923         does.
13924         * tests/test-freadptr.c: Don't include freadahead.h.
13925         (main): Adapt for new calling convention of freadptr.
13926         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
13927         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
13928         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
13929         tests/test-freadptr2.sh.
13930         (Depends): Remove freadahead.
13931         (TESTS): Add test-freadptr2.sh.
13932         (check_PROGRAMS): Add test-freadptr2.
13933
13934 2008-03-09  Bruno Haible  <bruno@clisp.org>
13935
13936         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
13937         Report and solution by Simon Josefsson.
13938
13939 2008-03-06  Bruno Haible  <bruno@clisp.org>
13940
13941         Make fflush after ungetc work on BSD platforms.
13942         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
13943         * tests/test-fflush2.c: New file.
13944         * tests/test-fflush2.sh: New file.
13945         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
13946         tests/test-fflush2.c.
13947         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
13948         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
13949
13950 2008-03-06  Eric Blake  <ebb9@byu.net>
13951
13952         Likewise for ftello.
13953         * modules/ftello (Dependencies): Add extensions.
13954         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
13955
13956 2008-03-06  Bruno Haible  <bruno@clisp.org>
13957
13958         * modules/fseeko (Dependencies): Add extensions.
13959         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
13960         Needed on glibc systems.
13961
13962 2008-03-06  Bruno Haible  <bruno@clisp.org>
13963
13964         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
13965         email address.
13966         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
13967
13968 2008-03-06  Bruno Haible  <bruno@clisp.org>
13969
13970         * users.txt: Add libgnupdf.
13971
13972 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
13973
13974         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
13975         (Header File Substitutes, Function Substitutes,
13976         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
13977         (Build robot for gnulib): Fix typo.
13978
13979 2008-03-06  Bruno Haible  <bruno@clisp.org>
13980
13981         * doc/gnulib-tool.texi (VCS Issues): Small updates.
13982         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
13983
13984 2008-03-06  Bruno Haible  <bruno@clisp.org>
13985
13986         * doc/func.texi: New file, extracted from doc/gnulib.texi.
13987         * doc/gnulib.texi: Include it.
13988
13989 2008-03-06  Simon Josefsson  <simon@josefsson.org>
13990
13991         * modules/func (License): Change license to unlimited; there was
13992         no LGPL parts in the module anyway.
13993
13994 2008-03-06  Simon Josefsson  <simon@josefsson.org>
13995
13996         * modules/__func__: Renamed to modules/func.
13997         * modules/__func__-tests: Renamed to modules/func-tests.
13998         * tests/test-__func__.c: Renamed to tests/test-func.c.
13999         * m4/__func__.m4: Renamed to m4/func.m4.
14000         * doc/gnulib.texi (__func__): Section renamed to func.
14001         Suggested by Eric Blake <ebb9@byu.net>.
14002
14003 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14004
14005         * doc/gnulib.texi (__func__): Use C99 terminology when talking
14006         about __func__.  Make example self-contained.  Suggested by Eric
14007         Blake <ebb9@byu.net>.
14008
14009         * tests/test-__func__.c (main): Avoid extraneous () around __func.
14010         Suggested by Eric Blake <ebb9@byu.net>.
14011
14012 2008-03-06  Simon Josefsson  <simon@josefsson.org>
14013
14014         * modules/__func__: New file.
14015         * modules/__func__-tests: New file.
14016         * tests/test-__func__.c: New file.
14017         * m4/__func__.m4: New file.
14018         * doc/gnulib.texi (__func__): Document __func__ module.
14019
14020 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14021
14022         * modules/byteswap (License): Re-license as LGPLv2+.
14023
14024 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14025
14026         * doc/Makefile: Add pdf target.
14027
14028 2008-03-05  Simon Josefsson  <simon@josefsson.org>
14029
14030         * modules/inline (License): Use 'unlimited', since there are only
14031         *.m4 files in this module.
14032
14033 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
14034             Bruno Haible  <bruno@clisp.org>
14035
14036         Add support for HP C 7.1 on OpenVMS 8.3.
14037         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
14038
14039 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
14040
14041         Update VMS specifics.
14042         * lib/getopt.c [VMS]: Remove include of unixlib.h.
14043
14044 2008-03-02  Jim Meyering  <meyering@redhat.com>
14045
14046         Remove the last dependency on the "free" module.
14047         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
14048         Reported by Bob Proulx.
14049
14050         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
14051
14052         Remove useless "if" tests before free.  Deprecate "free" module.
14053         * doc/posix-functions/free.texi: Mention that this
14054         module is no longer useful.
14055         * modules/free (Notice): Say this module is obsolete.
14056         * modules/readutmp (Depends-on): Remove free.
14057         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
14058         * lib/putenv.c (putenv): Likewise.
14059         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
14060         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
14061         * tests/test-c-strcasestr.c (main): Likewise.
14062         * tests/test-c-strstr.c (main): Likewise.
14063         * tests/test-mbscasestr1.c (main): Likewise.
14064         * tests/test-mbscasestr2.c (main): Likewise.
14065         * tests/test-mbsstr1.c (main): Likewise.
14066         * tests/test-mbsstr2.c (main): Likewise.
14067         * tests/test-memmem.c (main): Likewise.
14068         * tests/test-strcasestr.c (main): Likewise.
14069         * tests/test-striconv.c (main): Likewise.
14070         * tests/test-striconveh.c (main): Likewise.
14071         * tests/test-striconveha.c (main): Likewise.
14072         * tests/test-strstr.c (main): Likewise.
14073
14074         * build-aux/git-version-gen: Adjust a comment and the Usage string.
14075
14076         bootstrap: sync from coreutils again
14077         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
14078
14079 2008-03-01  Jim Meyering  <meyering@redhat.com>
14080
14081         bootstrap: sync from coreutils
14082         * build-aux/bootstrap (update_po_files): Copy a .po file into place
14083         also when the target doesn't exist.
14084
14085 2008-03-01  Eric Blake  <ebb9@byu.net>
14086
14087         Fix bugs in last patch.
14088         * lib/memchr2.c (memchr2): Fix typo.
14089         * tests/test-memchr2.c: Test previous bug, and don't use GNU
14090         extension.
14091         Reported by Bruce Korb.
14092
14093         New module 'memchr2'.
14094         * modules/memchr2: New file.
14095         * modules/memchr2-tests: Likewise.
14096         * lib/memchr2.h: Likewise.
14097         * lib/memchr2.c: Likewise, based on memchr.c.
14098         * tests/test-memchr2.c: New test.
14099         * MODULES.html.sh (String handling): Add memchr2.
14100
14101 2008-02-29  Bruno Haible  <bruno@clisp.org>
14102
14103         * modules/freadseek-tests: New file.
14104         * tests/test-freadseek.sh: New file.
14105         * tests/test-freadseek.c: New file.
14106
14107         New module 'freadseek'.
14108         * modules/freadseek: New file.
14109         * lib/freadseek.h: New file.
14110         * lib/freadseek.c: New file.
14111         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
14112
14113 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
14114
14115         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
14116         wydawca.
14117
14118         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
14119         program_invocation_name and program_invocation_short_name are
14120         present.
14121
14122 2008-02-28  Bruno Haible  <bruno@clisp.org>
14123
14124         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
14125         * tests/test-freadptr.sh: Also test non-seekable stdin.
14126
14127 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
14128
14129         * build-aux/bootstrap (source_base, m4_base)
14130         (doc_base, tests_base): New variables.
14131         (gnulib_tool_options): Do not hardcode base directories, use
14132         the above variables instead.
14133
14134 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
14135
14136         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
14137
14138 2008-02-28  Bruno Haible  <bruno@clisp.org>
14139
14140         * modules/freadptr-tests: New file.
14141         * tests/test-freadptr.sh: New file.
14142         * tests/test-freadptr.c: New file.
14143
14144         New module 'freadptr'.
14145         * modules/freadptr: New file.
14146         * lib/freadptr.h: New file.
14147         * lib/freadptr.c: New file.
14148         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
14149
14150 2008-02-26  Karl Berry  <karl@freefriends.org>
14151
14152         Sync from Libtool:
14153         * libltdl/argz.c (argz_add, argz_count): New functions.
14154         * libltdl/argz.in.h: Declare them.
14155         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
14156
14157 2008-02-22  Bruno Haible  <bruno@clisp.org>
14158
14159         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
14160         is a pointer type.  Needed for HP-UX 10.
14161         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
14162         * doc/posix-functions/gmtime_r.texi: Likewise.
14163         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
14164
14165 2008-02-24  Bruno Haible  <bruno@clisp.org>
14166
14167         * modules/environ-tests: New file.
14168         * tests/test-environ.c: New file.
14169
14170         New module 'environ'.
14171         * modules/environ: New file.
14172         * lib/unistd.in.h (environ): New declaration.
14173         * m4/environ.m4: New file.
14174         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
14175         after use.
14176         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
14177         HAVE_DECL_ENVIRON.
14178         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
14179         HAVE_DECL_ENVIRON.
14180         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
14181         wrong claim that 'environ' is missing on some systems.
14182         * modules/execute (Depends-on): Add environ.
14183         * lib/execute.c (environ): Remove fallback declaration.
14184         * modules/pipe (Depends-on): Add environ.
14185         * lib/pipe.c (environ): Remove fallback declaration.
14186         * modules/setenv (Depends-on): Add environ.
14187         * lib/setenv.c (environ): Remove fallback declaration.
14188         * modules/unsetenv (Depends-on): Add environ.
14189         * lib/unsetenv.c (environ): Remove fallback declaration.
14190         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
14191         m4/environ.m4.
14192         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
14193         (gl_PREREQ_UNSETENV): Likewise.
14194
14195 2008-02-24  Bruno Haible  <bruno@clisp.org>
14196
14197         * doc/posix-functions/environ.texi: Document the MacOS X problem.
14198
14199 2008-02-20  Bob Proulx  <bob@proulx.com>
14200
14201         Enable use of older two part flavor 'git describe'.
14202         * build-aux/git-version-gen: If using the older two part flavor of
14203         git version then recreate the third part now present in the
14204         newer three part flavor of git describe.
14205
14206 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
14207
14208         * lib/fts.c (fts_build): Typo correction to comment.
14209
14210 2008-02-17  Bruno Haible  <bruno@clisp.org>
14211
14212         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
14213         generating no-op conflicts.
14214
14215 2008-02-17  Bruno Haible  <bruno@clisp.org>
14216
14217         Speed up by 10%.
14218         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
14219         result_entries, rather than an index-based loop.
14220
14221 2008-02-17  Bruno Haible  <bruno@clisp.org>
14222
14223         Speed up by 25%.
14224         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
14225         'hashcode_cached'.
14226         (entry_create): New function.
14227         (entry_hashcode): Use the cached hashcode if possible.
14228         (read_changelog_file, try_split_merged_entry): Use entry_create.
14229
14230 2008-02-17  Bruno Haible  <bruno@clisp.org>
14231
14232         Speed up from O(n^2) to O(n) for long ChangeLog files.
14233         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
14234         (read_changelog_file): Change implementation of entries_reversed list
14235         to rbtreehash.
14236         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
14237
14238 2008-02-17  Bruno Haible  <bruno@clisp.org>
14239
14240         New option --split-merged-entry.
14241         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
14242         (find_paragraph_end, try_split_merged_entry): New functions.
14243         (long_options): Add option --split-merged-entry.
14244         (usage): Document option --split-merged-entry.
14245         (main): Implement option --split-merged-entry.
14246         Reported by Eric Blake.
14247
14248 2008-02-17  Bruno Haible  <bruno@clisp.org>
14249
14250         * lib/git-merge-changelog.c: Include c-strstr.h.
14251         (main): Support the "git pull --rebase" situation.
14252         * modules/git-merge-changelog (Depends-on): Add c-strstr.
14253         Reported by Eric Blake.
14254
14255 2008-02-16  Eric Blake  <ebb9@byu.net>
14256
14257         Avoid doubling \ in common case of "c-maybe" quoting style.
14258         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
14259         eliding outer quotes.
14260         * lib/quotearg.h: Document this.
14261         * tests/test-quotearg.c (result_strings, inputs, results_g)
14262         (flag_results, locale_results): Test it by adding a new string to
14263         each test group.
14264         (compare_strings): Test new string.
14265
14266 2008-02-13  Eric Blake  <ebb9@byu.net>
14267
14268         Avoid trigraph quoting in default output.
14269         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
14270         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
14271         unless explicitly requested.
14272         * tests/test-quotearg.c (flag_results, main): Add additional tests.
14273
14274 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
14275
14276         Don't rely on signed integer overflowing to negative value.
14277         * lib/getugroups.c (getugroups): Include <limits.h>.
14278         Instead, compare against INT_MAX, and increment only if the test passes.
14279
14280 2008-02-13  Jim Meyering  <meyering@redhat.com>
14281         and Eric Blake  <ebb9@byu.net>
14282
14283         Avoid shadowing warning and compile errors on Linux.
14284         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
14285         forwarding macros on Linux.
14286         (dcgettext): Define a stub, for Linux.
14287         (results_g, main): Avoid warnings.
14288
14289 2008-02-12  Eric Blake  <ebb9@byu.net>
14290
14291         Silence warning in last patch.
14292         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
14293
14294         Quotearg part 4: add tests, fix c-maybe colon quoting.
14295         * lib/quotearg.h: Improve documentation.
14296         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
14297         escapes when adding outer quotes.  When quoting trigraphs, use
14298         valid C notation.  When quoting NUL, omit extra characters if next
14299         character is not digit.  Alter prototype.
14300         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
14301         callers.
14302         * modules/quotearg-tests: New module.
14303         * tests/test-quotearg.c: New test.
14304
14305 2008-02-07  Eric Blake  <ebb9@byu.net>
14306
14307         Quotearg part 3: add flag to control outer quote elision.
14308         * lib/quotearg.h (c_maybe_quoting_style): New style.
14309         (enum quoting_flags): Better documentation of flags.
14310         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
14311         c-maybe style.
14312         (quotearg_buffer_restyled): Handle new flag to elide outer
14313         quotes.
14314
14315         Quotearg part 2: add flag that can control NUL elision.
14316         * lib/quotearg.h (set_quoting_flags): New prototype.
14317         * lib/quotearg.c (struct quoting_options): Add flag field.
14318         (set_quoting_flags): New function.
14319         (quotearg_buffer_restyled): Add flags parameter.
14320         (quotearg_alloc_mem): Set the flag if length cannot be returned.
14321         (quotearg_n_options): Set the flag, since length cannot be
14322         returned.
14323         (quoting_options_from_style): Default flags correctly.
14324
14325         Quotearg part 1: more wrappers, restore quotearg_char state.
14326         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
14327         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
14328         (quotearg_colon_mem): New wrappers.
14329         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
14330         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
14331         functions.
14332         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
14333         (quotearg_colon_mem): New functions.
14334
14335 2008-02-11  Bruno Haible  <bruno@clisp.org>
14336
14337         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
14338         library in the current directory: it does not work with parallel make.
14339         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14340
14341 2008-02-11  Bruno Haible  <bruno@clisp.org>
14342
14343         * .gitattributes: New file.
14344
14345 2008-02-11  Jim Meyering  <meyering@redhat.com>
14346
14347         useless-if-before-free: Fix reversed exit values.
14348         * build-aux/useless-if-before-free: Use correct values
14349         for EXIT_MATCH and EXIT_NO_MATCH.
14350
14351         * build-aux/useless-if-before-free: Close stdout carefully.
14352
14353 2008-02-10  Bruno Haible  <bruno@clisp.org>
14354
14355         New module 'git-merge-changelog'.
14356         * modules/git-merge-changelog: New file.
14357         * lib/git-merge-changelog.c: New file.
14358
14359 2008-02-10  Jim Meyering  <meyering@redhat.com>
14360
14361         useless-if-before-free: New option: --list (-l).
14362
14363         useless-if-before-free: Don't exit immediately upon open failure.
14364         * build-aux/useless-if-before-free: Exit 2 for errors.
14365         Upon failure to open a file, don't exit immediately.
14366         Rather, just warn and continue with any remaining files.
14367
14368 2008-02-10  Bruno Haible  <bruno@clisp.org>
14369
14370         New abstract list operation 'node_set_value'.
14371         * lib/gl_list.h (gl_list_node_set_value): New function.
14372         (struct gl_list_implementation): New field node_set_value.
14373         * lib/gl_list.c (gl_list_node_set_value): New function.
14374         * lib/gl_array_list.c (gl_array_node_set_value): New function.
14375         (gl_array_list_implementation): Update.
14376         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
14377         (gl_carray_list_implementation): Update.
14378         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
14379         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
14380         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
14381         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
14382         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
14383         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
14384         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
14385         Update.
14386         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
14387         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
14388         (gl_sublist_list_implementation): Update.
14389
14390 2008-02-10  Bruno Haible  <bruno@clisp.org>
14391
14392         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
14393         Needed when ELEMENT is #defined to 'some_type *'.
14394
14395 2008-02-10  Jim Meyering  <meyering@redhat.com>
14396
14397         New script and module: useless-if-before-free
14398         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
14399         * build-aux/useless-if-before-free: New file.
14400         * modules/useless-if-before-free: New file.
14401
14402         * build-aux/gitlog-to-changelog: Use committer date, not author date.
14403
14404         xstrtol_error: Fix typo.
14405         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
14406         s/exit_failure/exit_status/.
14407
14408 2008-02-09  Jim Meyering  <meyering@redhat.com>
14409
14410         New script and module: gitlog-to-changelog
14411         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
14412         * modules/gitlog-to-changelog: New file.
14413         * build-aux/gitlog-to-changelog: New file.
14414
14415 2008-02-08  Jim Meyering  <meyering@redhat.com>
14416
14417         Avoid two "parameter unused" warnings.
14418         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
14419         Mark "st" as used.
14420
14421         Use "git COMMAND", not "git-COMMAND".
14422         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
14423         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
14424         * build-aux/git-version-gen: Use "git status", not "git-status".
14425
14426 2008-02-07  Bruno Haible  <bruno@clisp.org>
14427
14428         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
14429         Avoids a crash on Windows Vista.
14430         Reported by Adam Strzelecki <ono@java.pl> via
14431         Simon Josefsson <simon@josefsson.org>.
14432
14433 2008-02-06  Bruno Haible  <bruno@clisp.org>
14434
14435         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
14436         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
14437         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
14438         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
14439         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
14440         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
14441         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
14442         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
14443         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
14444         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
14445         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
14446         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
14447         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
14448         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
14449         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
14450         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
14451         left-adjust flag.
14452         * tests/test-snprintf-posix.h (test_function): Likewise.
14453         * tests/test-sprintf-posix.h (test_function): Likewise.
14454         * tests/test-vasprintf-posix.c (test_function): Likewise.
14455         * doc/posix-functions/fprintf.texi: Update.
14456         * doc/posix-functions/printf.texi: Update.
14457         * doc/posix-functions/snprintf.texi: Update.
14458         * doc/posix-functions/sprintf.texi: Update.
14459         * doc/posix-functions/vfprintf.texi: Update.
14460         * doc/posix-functions/vprintf.texi: Update.
14461         * doc/posix-functions/vsnprintf.texi: Update.
14462         * doc/posix-functions/vsprintf.texi: Update.
14463         Reported by Peter Fales <psfales@alcatel-lucent.com>.
14464
14465 2008-02-06  Bruno Haible  <bruno@clisp.org>
14466
14467         Fix bug introduced on 2008-01-26.
14468         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
14469
14470 2008-02-06  Bruno Haible  <bruno@clisp.org>
14471
14472         Fix bug introduced on 2007-06-10.
14473         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
14474         !NEED_PRINTF_FLAG_ZERO.
14475
14476 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
14477
14478         getloadavg: use libperfstat on AIX5
14479         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
14480
14481 2008-02-03  Bruno Haible  <bruno@clisp.org>
14482
14483         * lib/diffseq.h: Add comments about required #includes.
14484         Reported by Michael Biggs <gnulib@doubleplum.net>.
14485
14486 2008-02-01  Bruno Haible  <bruno@clisp.org>
14487
14488         * users.txt: Add gnuit.
14489
14490 2008-01-31  Bruno Haible  <bruno@clisp.org>
14491
14492         * lib/md4.c (set_uint32): Mark as inline.
14493         * lib/md5.c (set_uint32): Likewise.
14494         * lib/sha1.c (set_uint32): Likewise.
14495         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
14496         * m4/md5.m4 (gl_MD5): Likewise.
14497         * m4/sha1.m4 (gl_SHA1): Likewise.
14498
14499 2008-01-31  Jim Meyering  <meyering@redhat.com>
14500
14501         Use "sizeof VAR", rather than a literal "4".
14502         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
14503         * lib/md4.c (md4_read_ctx): Likewise.
14504         * lib/sha1.c (sha1_read_ctx): Likewise.
14505
14506 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14507
14508         * tests/test-sha1.c: New file, based on test-md5.c.
14509
14510         * modules/crypto/sha1-tests: New file.
14511
14512 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14513
14514         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
14515
14516 2008-01-31  Jim Meyering  <meyering@redhat.com>
14517
14518         Prefer "sizeof v" over the equivalent "4".
14519         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
14520         * lib/md5.c (set_uint32): Likewise.
14521         * lib/sha1.c (set_uint32): Likewise.
14522
14523 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14524
14525         * lib/sha1.c (set_uint32): Mark function as static.
14526
14527 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14528
14529         md2: clarify comments to say that alignment is not required.
14530         * lib/md2.h: Remove warning about alignment in comment.
14531         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
14532         never been required.
14533
14534 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14535
14536         md4: adapt alignment constraint fix from sha1.
14537         * lib/md4.c (set_uint32): New function, from sha1.c
14538         (md4_read_ctx): Use it.
14539         (md4_finish_ctx): Doc fix.
14540         * lib/md4.h: Doc fix.
14541
14542 2008-01-31  Simon Josefsson  <simon@josefsson.org>
14543
14544         md5: adapt alignment constraint fix from sha1.
14545         * lib/md5.c (set_uint32): New function, from sha1.c
14546         (md5_read_ctx): Use it.
14547         (md5_finish_ctx): Doc fix.
14548         * lib/md5.h: Doc fix.
14549
14550 2008-01-30  Peter Palfrader  <weasel@debian.org>
14551
14552         sha1: remove the result buffer alignment constraint
14553         * lib/sha1.c (set_uint32): New function.
14554         (sha1_read_ctx): Rewrite to remove the result buffer alignment
14555         constraint.
14556         (sha1_finish_ctx): Remove comment warning about alignment constraint.
14557         * lib/sha1.h: Likewise.
14558
14559 2008-01-30  Andreas Schwab  <schwab@suse.de>
14560             Bruno Haible  <bruno@clisp.org>
14561
14562         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
14563         correct definition of LDBL_MIN_EXP.
14564
14565 2008-01-30  Karl Berry  <karl@gnu.org>
14566
14567         * config/srclist-update: try to preserve x bit on updates.
14568         * config/srclistvars.sh: update for karl.
14569
14570 2008-01-29  Jim Meyering  <meyering@redhat.com>
14571
14572         vasnprintf.c: Avoid warning about unused label
14573         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
14574         "overflow" label definition and associated code with the
14575         same cpp condition that guards the sole use of that label.
14576
14577 2008-01-26  Bruno Haible  <bruno@clisp.org>
14578
14579         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
14580         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
14581         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
14582         * lib/isnanl-nolibm.h (isnanl): Likewise.
14583         Reported by Paul Eggert <eggert@cs.ucla.edu>.
14584
14585 2008-01-26  Bruno Haible  <bruno@clisp.org>
14586
14587         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
14588         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
14589
14590 2008-01-26  Bruno Haible  <bruno@clisp.org>
14591
14592         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
14593         GCC >= 4.0 built-in.
14594         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
14595
14596 2008-01-26  Bruno Haible  <bruno@clisp.org>
14597
14598         Rename isnan, applicable to 'double' only, to isnand.
14599         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
14600         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
14601         (configure.ac): Update.
14602         (Include): Replace "isnan.h" with "isnand.h".
14603         * m4/isnand.m4: Renamed from m4/isnan.m4.
14604         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
14605         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
14606         instead of isnan.c.
14607         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
14608         instead of HAVE_ISNAN_IN_LIBC.
14609         (isnand): Renamed from isnan.
14610         * lib/isnand.c: New file.
14611         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
14612         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
14613         (Makefile.am): Update.
14614         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
14615         Include isnand.h instead of isnan.h.
14616         (main): Test isnand instead of isnan.
14617         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
14618         isnan-nolibm.
14619         * modules/frexp (Depends-on): Likewise.
14620         * modules/frexp-tests (Depends-on): Likewise.
14621         * modules/frexp-nolibm (Depends-on): Likewise.
14622         * modules/frexp-nolibm-tests (Depends-on): Likewise.
14623         * modules/isfinite (Depends-on): Likewise.
14624         * modules/round-tests (Depends-on): Likewise.
14625         * modules/signbit (Depends-on): Likewise.
14626         * modules/signbit-tests (Depends-on): Likewise.
14627         * modules/snprintf-posix (Depends-on): Likewise.
14628         * modules/sprintf-posix (Depends-on): Likewise.
14629         * modules/trunc-tests (Depends-on): Likewise.
14630         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
14631         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
14632         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
14633         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
14634         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
14635         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
14636         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
14637         * modules/vasnprintf-posix (Depends-on): Likewise.
14638         * modules/vasprintf-posix (Depends-on): Likewise.
14639         * modules/vfprintf-posix (Depends-on): Likewise.
14640         * modules/vsnprintf-posix (Depends-on): Likewise.
14641         * modules/vsprintf-posix (Depends-on): Likewise.
14642         * lib/frexp.c: Include isnand.h instead of isnan.h.
14643         (ISNAN): Set to isnand instead of isnan.
14644         * lib/isfinite.c: Include isnand.h instead of isnan.h.
14645         (gl_isfinited): Use isnand instead of isnan.
14646         * lib/signbitd.c: Include isnand.h instead of isnan.h.
14647         (gl_signbitd): Use isnand instead of isnan.
14648         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
14649         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
14650         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
14651         (main): Use isnand instead of isnan.
14652         * tests/test-round1.c: Include isnand.h.
14653         (main): Use isnand instead of isnan.
14654         * tests/test-round2.c: Include isnand.h instead of isnan.h.
14655         (ISNAN): Set to isnand instead of isnan.
14656         * tests/test-trunc1.c: Include isnand.h.
14657         (main): Use isnand instead of isnan.
14658         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
14659         (equal): Use isnand instead of isnan.
14660         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
14661         isnand-nolibm.
14662         * NEWS: Mention the change.
14663
14664 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
14665             Bruno Haible  <bruno@clisp.org>
14666
14667         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
14668         the GCC builtins for signbits are present and set
14669         REPLACE_SIGNBIT_USING_GCC if so.
14670         * lib/math.in.h (signbit): Define using GCC builtins if
14671         REPLACE_SIGNBIT_USING_GCC is set.
14672         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
14673         REPLACE_SIGNBIT_USING_GCC.
14674         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
14675
14676 2008-01-25  Jim Meyering  <meyering@redhat.com>
14677
14678         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
14679         * lib/poll.c: Include <config.h>, not "config.h".
14680         * tests/test-getaddrinfo.c: Likewise.
14681
14682 2008-01-25  Simon Josefsson  <simon@josefsson.org>
14683
14684         * modules/sockets-tests: New file.
14685
14686 2008-01-24  Simon Josefsson  <simon@josefsson.org>
14687
14688         * modules/sockets: New module, can be used to call WSA_Startup and
14689         WSA_Cleanup when needed.
14690
14691         * lib/sockets.h, lib/sockets.c: New files.
14692
14693         * m4/sockets.m4: New file.
14694
14695         * tests/test-sockets.c: New file.
14696
14697 2008-01-19  Bruno Haible  <bruno@clisp.org>
14698
14699         * doc/posix-headers: Renamed from doc/headers.
14700         * doc/posix-functions: Renamed from doc/functions.
14701         * doc/gnulib.texi: Update.
14702
14703 2008-01-19  Bruno Haible  <bruno@clisp.org>
14704
14705         * doc/glibc-functions/strcasestr.texi: Include contents of
14706         doc/functions/strcasestr.texi, fixing the list of platforms.
14707         * doc/functions/strcasestr.texi: Remove file.
14708
14709 2008-01-19  Bruno Haible  <bruno@clisp.org>
14710
14711         * doc/glibc-functions/memmem.texi: Include contents of
14712         doc/functions/memmem.texi.
14713         * doc/functions/memmem.texi: Remove file.
14714
14715 2008-01-18  Bruno Haible  <bruno@clisp.org>
14716
14717         * doc/glibc-functions/*.texi: New files.
14718         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
14719         to use the new files.
14720
14721 2008-01-17  Bruno Haible  <bruno@clisp.org>
14722
14723         * tests/test-gethostname.c (main): Fix printf statement.
14724
14725 2008-01-17  Simon Josefsson  <simon@josefsson.org>
14726
14727         * modules/gethostname-tests: New file.
14728
14729         * tests/test-gethostname.c: New file.
14730
14731 2008-01-17  Simon Josefsson  <simon@josefsson.org>
14732
14733         * lib/gethostname.c: Include string.h unconditionally, strncpy is
14734         used by the UNAME case.  Reported by Bruno Haible
14735         <bruno@clisp.org>.
14736
14737 2008-01-17  Eric Blake  <ebb9@byu.net>
14738
14739         Convert c-strcasestr to be more efficient.
14740         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
14741         (Depends-on): Add c-strcase, remove malloca, strnlen.
14742         * tests/test-c-strcasestr.c (main): Enhance test.
14743         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
14744
14745 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
14746
14747         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
14748         Use it in creating po/Makevars.
14749
14750 2008-01-15  Simon Josefsson  <simon@josefsson.org>
14751
14752         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
14753         Applications that requires it should initialize libgcrypt
14754         manually.
14755
14756 2008-01-16  Simon Josefsson  <simon@josefsson.org>
14757
14758         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
14759
14760 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
14761
14762         Fix problem with getdate on mingw32 reported by Simon Josefsson
14763         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
14764         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
14765         tzname", when deciding whether to declare tzname.
14766         * lib/strftime.c (tzname): Likewise.
14767
14768 2008-01-15  Bruno Haible  <bruno@clisp.org>
14769
14770         Work around a MacOS X 10.5 bug in frexpl().
14771         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
14772         * doc/functions/frexpl.texi: Document the bug.
14773         Reported by Elias Pipping <pipping@gentoo.org>.
14774
14775 2008-01-14  Eric Blake  <ebb9@byu.net>
14776
14777         Touch up previous patch.
14778         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
14779         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
14780
14781         Convert strcasestr module to use Two-Way algorithm.
14782         * modules/strcasestr-simple: New module, based on the old
14783         strcasestr, but with Two-Way rather than KMP.
14784         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
14785         * lib/string.in.h (rpl_strcasestr): Declare.
14786         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
14787         performance.
14788         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
14789         * modules/string (Makefile.am): Support strcasestr.
14790         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
14791         * modules/strcasestr-tests (Depends-on): Check for alarm.
14792         * tests/test-strcasestr.c: Augment test.
14793         * lib/str-two-way.h: Clean up stray macro.
14794         * NEWS: Document new module.
14795         * MODULES.html.sh (string handling): Likewise.
14796         * doc/functions/strcasestr.texi: New file.
14797         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
14798         here, since it is not a POSIX function.
14799
14800 2008-01-14  Colin Watson  <cjwatson@debian.org>
14801             Bruno Haible  <bruno@clisp.org>
14802
14803         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
14804         works fine; if not, set REPLACE_STRSIGNAL.
14805         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
14806         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14807         REPLACE_STRSIGNAL.
14808         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
14809         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
14810         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
14811
14812 2008-01-14  Bruno Haible  <bruno@clisp.org>
14813
14814         * modules/strsignal (Include): Change to <string.h>.
14815
14816 2008-01-14  Colin Watson  <cjwatson@debian.org>
14817
14818         * modules/argp (Notice): Add a notice recommending to change
14819         XGETTEXT_OPTIONS.
14820         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
14821
14822 2008-01-13  Colin Watson  <cjwatson@debian.org>
14823
14824         * modules/strsignal-tests: New file.
14825         * tests/test-strsignal.c: New file.
14826
14827         * lib/strsignal.c: New file, from glibc with modifications.
14828         * lib/siglist.h: New file, from glibc with modifications.
14829         * lib/string.in.h (strsignal): New declaration.
14830         * m4/strsignal.m4: New file.
14831         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14832         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
14833         * modules/strsignal: New file.
14834         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
14835         HAVE_DECL_STRSIGNAL.
14836
14837 2008-01-13  Bruno Haible  <bruno@clisp.org>
14838
14839         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
14840         locale encoding is not ASCII. Needed for OpenBSD 4.0.
14841         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
14842         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
14843
14844 2008-01-13  Bruno Haible  <bruno@clisp.org>
14845
14846         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
14847         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
14848         * lib/argp.h (__attribute__): Likewise.
14849         * lib/c-stack.c (__attribute__): Likewise.
14850         * lib/error.h (__attribute__): Likewise.
14851         * lib/fts.c (__attribute__): Likewise.
14852         * lib/openat.h (__attribute__): Likewise.
14853         * lib/stdio.in.h (__attribute__): Likewise.
14854         * lib/string.in.h (__attribute__): Likewise.
14855         * lib/utimens.c (__attribute__): Likewise.
14856         * lib/vasnprintf.h (__attribute__): Likewise.
14857         * lib/xalloc.h (__attribute__): Likewise.
14858         * lib/xprintf.h (__attribute__): Likewise.
14859         * lib/xstrtol.h (__attribute__): Likewise.
14860         * lib/xvasprintf.h (__attribute__): Likewise.
14861
14862 2008-01-12  Bruno Haible  <bruno@clisp.org>
14863
14864         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
14865         * doc/glibc-headers/a.out.texi: New file.
14866         * doc/glibc-headers/aliases.texi: New file.
14867         * doc/glibc-headers/alloca.texi: New file.
14868         * doc/glibc-headers/ar.texi: New file.
14869         * doc/glibc-headers/argp.texi: New file.
14870         * doc/glibc-headers/argz.texi: New file.
14871         * doc/glibc-headers/byteswap.texi: New file.
14872         * doc/glibc-headers/crypt.texi: New file.
14873         * doc/glibc-headers/endian.texi: New file.
14874         * doc/glibc-headers/envz.texi: New file.
14875         * doc/glibc-headers/err.texi: New file.
14876         * doc/glibc-headers/error.texi: New file.
14877         * doc/glibc-headers/execinfo.texi: New file.
14878         * doc/glibc-headers/fpu_control.texi: New file.
14879         * doc/glibc-headers/fstab.texi: New file.
14880         * doc/glibc-headers/fts.texi: New file.
14881         * doc/glibc-headers/getopt.texi: New file.
14882         * doc/glibc-headers/ieee754.texi: New file.
14883         * doc/glibc-headers/ifaddrs.texi: New file.
14884         * doc/glibc-headers/libintl.texi: New file.
14885         * doc/glibc-headers/mcheck.texi: New file.
14886         * doc/glibc-headers/mntent.texi: New file.
14887         * doc/glibc-headers/obstack.texi: New file.
14888         * doc/glibc-headers/paths.texi: New file.
14889         * doc/glibc-headers/printf.texi: New file.
14890         * doc/glibc-headers/pty.texi: New file.
14891         * doc/glibc-headers/resolv.texi: New file.
14892         * doc/glibc-headers/shadow.texi: New file.
14893         * doc/glibc-headers/sysexits.texi: New file.
14894         * doc/glibc-headers/ttyent.texi: New file.
14895
14896 2008-01-12  Jim Meyering  <meyering@redhat.com>
14897
14898         announce-gen: emit Gnulib's git-based version string.
14899         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
14900         New option --gnulib-version=V, where V is expected to be
14901         the output of running git describe in the gnulib directory.
14902         (get_tool_versions): Request feedback on xdelta.  I suspect it's
14903         not useful, and plan to stop publishing an xdelta file with each
14904         coreutils release.
14905
14906         * build-aux/announce-gen: Also check for lzma-compressed files.
14907
14908 2008-01-11  Bruno Haible  <bruno@clisp.org>
14909
14910         * tests/test-memmem.c (main): Increase maximum allowed time.
14911         * tests/test-strstr.c (main): Likewise.
14912
14913 2008-01-11  Bruno Haible  <bruno@clisp.org>
14914
14915         * doc/functions/memmem.texi: Add more precisions about platforms.
14916         * doc/functions/strstr.texi: Likewise.
14917
14918 2008-01-10  Eric Blake  <ebb9@byu.net>
14919
14920         * m4/strstr.m4: Delete cruft from copy-n-paste.
14921         Reported by Bruno Haible.
14922
14923 2008-01-10  Bruno Haible  <bruno@clisp.org>
14924
14925         Make c-strstr rely on strstr.
14926         * lib/c-strstr.c: Don't include str-kmp.h.
14927         (c_strstr): Define in terms of strstr.
14928         * modules/c-strstr (Files): Remove lib/str-kmp.h.
14929         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
14930
14931 2008-01-10  Bruno Haible  <bruno@clisp.org>
14932
14933         * doc/gnulib.texi (String Functions in C Locale): New section.
14934         * doc/c-ctype.texi: New file.
14935         * doc/c-strcase.texi: New file.
14936         * doc/c-strcaseeq.texi: New file.
14937         * doc/c-strcasestr.texi: New file.
14938         * doc/c-strstr.texi: New file.
14939         * doc/c-strtod.texi: New file.
14940         * doc/c-strtold.texi: New file.
14941
14942 2008-01-10  Eric Blake  <ebb9@byu.net>
14943
14944         * lib/relocatable.h: Fix a comment.
14945
14946 2008-01-10  Eric Blake  <ebb9@byu.net>
14947
14948         Share two-way algorithm.
14949         * lib/str-two-way.h: New file, merged from...
14950         * lib/memmem.c: ...here...
14951         * lib/strstr.c: ...and here.
14952         * modules/memmem (Files): Use it.
14953         * modules/strstr (Files): Likewise.
14954
14955         Avoid quadratic strstr implementations.
14956         * lib/strstr.c: New file.
14957         * m4/strstr.m4: Likewise.
14958         * modules/strstr: Likewise.
14959         * modules/strstr-tests: Likewise.
14960         * tests/test-strstr.c: Likewise.
14961         * lib/string.in.h (rpl_strstr): Declare.
14962         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
14963         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
14964         * modules/string (Makefile.am): Likewise.
14965         * MODULES.html.sh (string handling): Mention new module.
14966         * doc/functions/strstr.texi (strstr): Document the bug.
14967
14968 2008-01-10  Bruno Haible  <bruno@clisp.org>
14969
14970         * lib/relocatable.h (relocate): State whether result is freshly
14971         allocated or not.
14972         * lib/relocatable.c (relocate): Return a freshly allocated string
14973         instead of a pointer to a privately held string.
14974         Reported by Sylvain Beucler <beuc@gnu.org>.
14975
14976 2008-01-10  Colin Watson  <cjwatson@debian.org>
14977
14978         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
14979         s/S_ISNLK/S_ISLNK/.
14980
14981 2008-01-09  Bruno Haible  <bruno@clisp.org>
14982
14983         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
14984         and other files.
14985         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
14986         if it's only a guess.
14987         * modules/memmem: Simplify by depending on memmem-simple.
14988
14989 2008-01-09  Bruno Haible  <bruno@clisp.org>
14990
14991         Work around OpenBSD 4.0 tdelete() bug.
14992         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
14993         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
14994         macros and don't redefine the enum values.
14995         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
14996         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
14997         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
14998
14999 2008-01-09  Bruno Haible  <bruno@clisp.org>
15000
15001         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
15002         (main): Don't perform the tests if setlocale did not install a UTF-8
15003         locale. Needed on OpenBSD 4.0.
15004         * modules/wcwidth-tests (Depends-on): Add localcharset.
15005
15006 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
15007
15008         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
15009         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
15010         * NEWS: announce this.
15011         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
15012
15013 2008-01-09  Simon Josefsson  <simon@josefsson.org>
15014         and Eric Blake  <ebb9@byu.net>
15015
15016         Add memmem-simple module.
15017         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
15018         (gl_FUNC_MEMMEM): Separate performance from presence checks.
15019         * modules/memmem-simple: New file.
15020         * modules/memmem (Description): Tweak.
15021         * MODULES.html.sh (string handling): Mention new module.
15022         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
15023         addressed by memmem-simple.
15024         * NEWS: Document the difference.
15025
15026 2008-01-09  Eric Blake  <ebb9@byu.net>
15027
15028         Give gcc some memmem optimization hints.
15029         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
15030         (strcasestr): Declare as pure.
15031         * modules/memmem (Maintainer): Claim my implementation.
15032
15033 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15034
15035         Support AIX 6.1 and higher.
15036         * build-aux/config.libpath: Likewise.
15037         * build-aux/config.rpath: Likewise.
15038
15039 2008-01-08  Jim Meyering  <meyering@redhat.com>
15040             Bruno Haible  <bruno@clisp.org>
15041
15042         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
15043         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
15044         Reported by Peter Fales in
15045         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
15046
15047 2008-01-08  Bruno Haible  <bruno@clisp.org>
15048
15049         * modules/unictype/category-of (Depends-on): Add
15050         unictype/category-none.
15051         * modules/unictype/category-and-tests (Depends-on): Add
15052         unictype/category-{L,N,Lu,Nd}.
15053         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
15054         * modules/unictype/category-or-tests (Depends-on): Add
15055         unictype/category-{L,N}.
15056         * modules/unictype/category-name-tests (Depends-on): Add
15057         unictype/category-{Z,Nl}.
15058         Reported by Simon Josefsson.
15059
15060 2008-01-08  Bruno Haible  <bruno@clisp.org>
15061
15062         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
15063         convention better.
15064         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
15065         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
15066         Reported by Peter Miller <millerp@canb.auug.org.au>.
15067
15068 2008-01-08  Eric Blake  <ebb9@byu.net>
15069
15070         Rewrite memmem to guarantee linear complexity without malloc.
15071         * lib/memmem.c (memmem): Use Two-Way rather than
15072         Knuth-Morris-Pratt, to allow O(1) space usage.
15073         (critical_factorization, two_way_short_needle)
15074         (two_way_long_needle): New functions.
15075         (knuth_morris_pratt): Delete.
15076         * modules/memmem (Depends-on): No longer need malloca or stdbool.
15077         Add stdint.
15078         * tests/test-memmem.c (main): Add tests for periodic needle and
15079         sublinear performance.
15080         * doc/functions/memmem.texi (memmem): Document other deficiencies
15081         in cygwin and older glibc.
15082
15083 2008-01-08  Bruno Haible  <bruno@clisp.org>
15084
15085         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
15086         augmentation.
15087
15088 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
15089
15090         Add a configure time option: --disable-acl.
15091         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
15092         AC_ARG_ENABLE(acl).
15093
15094 2008-01-06  Simon Josefsson  <simon@josefsson.org>
15095
15096         * tests/test-localename.c: Don't include obsolete "setenv.h".
15097
15098         * modules/localename-tests (Depends-on): Need unsetenv.
15099
15100 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15101
15102         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
15103
15104 2008-01-06  Colin Watson  <cjwatson@debian.org>
15105
15106         * users.txt: Add man-db.
15107
15108 2008-01-07  Bruno Haible  <bruno@clisp.org>
15109
15110         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
15111         previous section name.
15112
15113 2008-01-07  Bruno Haible  <bruno@clisp.org>
15114
15115         * lib/progname.c (set_program_name): Don't strip off a leading
15116         "lt-" prefix outside a .libs directory.
15117         Suggested by Paul Eggert.
15118
15119 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
15120             Bruno Haible  <bruno@clisp.org>
15121
15122         Improve memory cleanup in 'relocatable' module.
15123         * lib/relocatable.h (compute_curr_prefix): Change return type to
15124         'char *'.
15125         * lib/relocatable.c (compute_curr_prefix): Change return type to
15126         'char *'. Free curr_installdir after use.
15127         (relocate): Free curr_prefix_better after use.
15128         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
15129
15130 2008-01-01  Bruno Haible  <bruno@clisp.org>
15131
15132         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
15133         failure on older glibc systems.
15134         Reported by Peter Fales <psfales@alcatel-lucent.com>.
15135
15136 2008-01-05  Eric Blake  <ebb9@byu.net>
15137
15138         Avoid quadratic system memmem.
15139         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
15140         Reported by Ralf Wildenhues.
15141
15142         Fix memmem test for mingw.
15143         * modules/memmem-tests (configure.ac): Check for alarm.
15144         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
15145         it.
15146         * doc/functions/memmem.texi: New file.
15147         * doc/gnulib.texi (Function Substitutes): Add memmem.
15148         Reported by Bruno Haible.
15149
15150 2008-01-04  Bruno Haible  <bruno@clisp.org>
15151
15152         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
15153         Require gl_HEADER_STRINGS_H_DEFAULTS, not
15154         gl_HEADER_STRING_H_DEFAULTS.
15155
15156 2008-01-04  Eric Blake  <ebb9@byu.net>
15157
15158         Shorten duration of memmem test.
15159         * tests/test-memmem.c (main): Use alarm to declare failure if test
15160         is taking too long.
15161         Reported by Ralf Wildenhues.
15162
15163 2007-12-21  Simon Josefsson  <simon@josefsson.org>
15164
15165         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
15166         string, needed by strerror.
15167
15168 2008-01-03  Colin Watson  <cjwatson@debian.org>
15169             Bruno Haible  <bruno@clisp.org>
15170
15171         * doc/gnulib-tool.texi (Localization): New section.
15172
15173 2008-01-02  Bruno Haible  <bruno@clisp.org>
15174
15175         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
15176         variables to 'unsigned char *' type.
15177         Reported by Paul Eggert.
15178
15179 2008-01-02  Jim Meyering  <jim@meyering.net>
15180
15181         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
15182
15183 2007-12-31  Jim Meyering  <jim@meyering.net>
15184
15185         Avoid use of private FTS type name.
15186         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
15187
15188 2007-12-30  Karl Berry  <karl@gnu.org>
15189
15190         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
15191         work around defect in Texinfo and/or the standalone Info browser.
15192
15193 2007-12-30  Bruno Haible  <bruno@clisp.org>
15194
15195         Unify 5 copies of the KMP code.
15196         * lib/str-kmp.h: New file.
15197         * lib/c-strcasestr.c: Include str-kmp.h.
15198         (knuth_morris_pratt): Remove function.
15199         (c_strcasestr): Update.
15200         * lib/c-strstr.c: Include str-kmp.h.
15201         (knuth_morris_pratt): Remove function.
15202         (c_strcasestr): Update.
15203         * lib/mbscasestr.c: Include str-kmp.h.
15204         (knuth_morris_pratt_unibyte): Remove function.
15205         * lib/mbsstr.c: Include str-kmp.h.
15206         (knuth_morris_pratt_unibyte): Remove function.
15207         * lib/strcasestr.c: Include str-kmp.h.
15208         (knuth_morris_pratt): Remove function.
15209         (strcasestr): Update.
15210         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
15211         * modules/c-strstr (Files): Likewise.
15212         * modules/mbscasestr (Files): Likewise.
15213         * modules/mbsstr (Files): Likewise.
15214         * modules/strcasestr (Files): Likewise.
15215         Suggested by Paul Eggert.
15216
15217 2007-12-30  Bruno Haible  <bruno@clisp.org>
15218
15219         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
15220         defined.
15221
15222 2007-12-30  Bruno Haible  <bruno@clisp.org>
15223
15224         * lib/xmalloca.h: Include xalloc.h.
15225         (xnmalloca): New macro.
15226
15227 2007-12-30  Bruno Haible  <bruno@clisp.org>
15228
15229         * lib/malloca.h (nmalloca): New macro.
15230         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
15231         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
15232         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
15233         knuth_morris_pratt_multibyte): Likewise.
15234         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
15235         knuth_morris_pratt_multibyte): Likewise.
15236         * lib/memmem.c (knuth_morris_pratt): Likewise.
15237         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
15238
15239 2007-12-25  Bruno Haible  <bruno@clisp.org>
15240
15241         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
15242         * lib/glob.c: Don't include openat.h.
15243         (link_exists2_p): Add back the code that deals with the
15244         !GLOB_ALTDIRFUNC case.
15245         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
15246         let it do the filename concatenation.
15247         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
15248         * modules/glob (Depends-on): Remove openat.
15249
15250 2007-12-31  Bruno Haible  <bruno@clisp.org>
15251
15252         * modules/dirfd (License): Change to LGPLv2+.
15253         Approved by Jim Meyering.
15254
15255 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
15256
15257         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
15258         when multiplying M by sizeof (size_t).
15259
15260 2007-12-10  Martin Lambers  <marlam@marlam.de>
15261
15262         Override getpagesize on mingw.
15263         * lib/getpagesize.c: New file.
15264         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
15265         * modules/getpagesize (Files): Add lib/getpagesize.c.
15266         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
15267         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
15268         REPLACE_GETPAGESIZE.
15269         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
15270
15271 2007-12-25  Bruno Haible  <bruno@clisp.org>
15272
15273         * modules/localcharset (Notice): New field.
15274         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
15275         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
15276
15277 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
15278             Bruno Haible  <bruno@clisp.org>
15279
15280         Avoid using the syntax symbol() in formatted documentation.
15281         * MODULES.html.sh (func_module): When replacing symbol() with a
15282         hyperlink, remove the parentheses. Show an error if some remain.
15283         Recognize and render the '...' syntax.
15284         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
15285         Rework. Add paragraph about GCC's inlining.
15286         * doc/alloca.texi: Likewise.
15287         * doc/error.texi: Remove parentheses from symbol reference.
15288         * doc/gnulib-intro.texi: Likewise.
15289         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
15290         * modules/fnmatch (Description): Reword to say "the ... function".
15291         * modules/full-read (Description): Likewise.
15292         * modules/full-write (Description): Likewise.
15293         * modules/safe-read (Description): Likewise.
15294         * modules/safe-write (Description): Likewise.
15295         * modules/strchrnul (Description): Likewise.
15296         * modules/trim (Description): Likewise.
15297         * modules/error (Description): Remove parentheses from symbol
15298         references.
15299         * modules/verror (Description): Likewise.
15300         Reported by Karl Berry.
15301
15302 2007-12-25  Bruno Haible  <bruno@clisp.org>
15303
15304         Fixup after 2007-10-16 commit.
15305         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
15306
15307 2007-12-24  Bruno Haible  <bruno@clisp.org>
15308
15309         Make --enable-relocatable work with DESTDIR.
15310         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
15311         to compute installdir from destprog.
15312         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
15313         also set the RELOC_DESTDIR variable.
15314         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15315
15316 2007-12-24  Bruno Haible  <bruno@clisp.org>
15317
15318         Fix link error due to xalloc_die().
15319         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
15320         of xreadlink.
15321         * lib/relocwrapper.c: Update comments.
15322         * build-aux/install-reloc: Remove xreadlink.c from file list.
15323         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
15324         xreadlink.c.
15325         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15326
15327 2007-12-24  Bruno Haible  <bruno@clisp.org>
15328
15329         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
15330         * lib/setenv.h: Remove file.
15331         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
15332         lib/setenv.h.
15333         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
15334         (Depends-on): Add stdlib.
15335         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
15336         gl_FUNC_UNSETENV.
15337         (Include): Replace setenv.h with <stdlib.h>.
15338         * modules/unsetenv: New file.
15339         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
15340         * lib/unsetenv.c: Include <stdlib.h> first.
15341         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
15342         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
15343         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
15344         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
15345         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
15346         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
15347         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
15348         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
15349         * doc/functions/unsetenv.texi: Update.
15350         * modules/xsetenv (Depends-on): Add unsetenv.
15351         * modules/getdate (Depends-on): Likewise.
15352         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
15353         * lib/xsetenv.c: Don't include setenv.h.
15354         * lib/getdate.y: Likewise.
15355         * lib/relocwrapper.c: Likewise.
15356         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
15357         (Depends-on): Add stdlib.
15358         * NEWS: Mention the changes.
15359         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
15360
15361 2007-12-23  Bruno Haible  <bruno@clisp.org>
15362
15363         * lib/memmem.c (memmem): Use lowercase variable names. Tab
15364         indentation.
15365
15366 2007-12-23  Bruno Haible  <bruno@clisp.org>
15367
15368         * lib/c-strcasestr.c: Add more comments.
15369         * lib/c-strstr.c: Likewise.
15370         * lib/mbscasestr.c: Likewise.
15371         * lib/mbsstr.c: Likewise.
15372         * lib/strcasestr.c: Likewise.
15373         * lib/memmem.c: Likewise.
15374
15375 2007-12-23  Bruno Haible  <bruno@clisp.org>
15376
15377         * tests/test-memmem.c: Include <string.h> first.
15378
15379 2007-12-22  Bruno Haible  <bruno@clisp.org>
15380
15381         * gnulib-tool (func_create_testdir): Change $auxdir while generating
15382         the contents of $testsbase.
15383         Reported by Ralf Wildenhues.
15384
15385 2007-12-22  Bruno Haible  <bruno@clisp.org>
15386
15387         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
15388         two variables local_ldadd_before, local_ldadd_last.
15389
15390 2007-12-20  Eric Blake  <ebb9@byu.net>
15391
15392         Work around circular library issue when cross-compiling.
15393         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
15394         that progname.o does not need to pull in rpl_memcmp.
15395
15396 2007-12-19  Eric Blake  <ebb9@byu.net>
15397
15398         Fix memmem to avoid O(n^2) worst-case complexity.
15399         * lib/memmem.c (knuth_morris_pratt): New function.
15400         (memmem): Use it if first few naive iterations fail.
15401         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
15402         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
15403         * modules/memchr (License): Likewise.
15404         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
15405         malloca.
15406         * tests/test-memmem.c: Rewrite, borrowing ideas from
15407         test-mbsstr1.c; the old version wouldn't even compile!
15408         * modules/memmem-tests: New file.
15409         * lib/string.in.h (rpl_memmem): Add declaration.
15410         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
15411         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
15412         REPLACE_MEMMEM.
15413
15414 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15415
15416         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
15417         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
15418         before any system include files, and undef after them all.  This
15419         should fix a problem on VMS reported by John E. Malmberg in
15420         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
15421
15422 2007-12-17  Eric Blake  <ebb9@byu.net>
15423
15424         Revert addition of verify, for BSD/OS.
15425         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
15426         can't handle large files, for the sake of obsolete platforms.
15427         * modules/fseeko (Depends-on): Remove verify.
15428         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
15429         * doc/functions/ftello.texi (ftello): Likewise.
15430         * doc/functions/fgetpos.texi (fgetpos): Likewise.
15431         Reported by Larry Jones.
15432
15433 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
15434
15435         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
15436         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
15437
15438 2007-12-17  Jim Meyering  <meyering@redhat.com>
15439
15440         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
15441         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
15442         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
15443         * modules/getcwd (Depends-on): Add openat.
15444         Reported by Petr Salinger.
15445
15446 2007-12-17  Bruno Haible  <bruno@clisp.org>
15447
15448         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
15449         avoid a segmentation fault of the configure test on x86_64 systems.
15450
15451 2007-12-15  Jim Meyering  <meyering@redhat.com>
15452
15453         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
15454
15455 2007-12-13  Eric Blake  <ebb9@byu.net>
15456
15457         Another fseek test.
15458         * tests/test-fseek.c (main): Also test ungetc handling.
15459         * tests/test-fseeko.c (main): Likewise.
15460         * modules/fseeko (Depends-on): Add verify.
15461         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
15462         large.
15463         Reported by Larry Jones.
15464
15465         Fix fseeko on mingw.
15466         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
15467         seek.
15468
15469         Beef up fseek tests.
15470         * tests/test-fseek.c (main): Also test eof handling.
15471         * tests/test-fseeko.c (main): Likewise.
15472         Reported by Larry Jones.
15473
15474 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
15475
15476         Fix fseeko on BSD-based platforms.
15477         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
15478         successful seek.
15479
15480 2007-12-12  Eric Blake  <ebb9@byu.net>
15481
15482         Allow circular dependency of separate libtests.a
15483         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
15484         when use_libtests.
15485
15486 2007-12-11  Eric Blake  <ebb9@byu.net>
15487
15488         Fix bug with -0.0L in previous patch.
15489         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
15490         * tests/test-isnan.c (main): Also test on zeroes.
15491         * tests/test-isnanf.c (main): Likewise.
15492         * tests/test-isnanl.h (main): Likewise.
15493
15494         Detect pseudo-denormals on x86 even when cross-compiling.
15495         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
15496         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
15497         invalid bit patterns that happen to satisfy ==.
15498
15499         Avoid link failures with separate libtests.a.
15500         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
15501         last, to satisfy circular dependencies.
15502
15503 2007-12-11  Eric Blake  <ebb9@byu.net>
15504         and Bruno Haible  <bruno@clisp.org>
15505
15506         Fix OpenBSD 4.0 <float.h> handling of long double.
15507         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
15508         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
15509         * doc/headers/float.texi (float.h): Document OpenBSD bug.
15510
15511 2007-12-11  Jim Meyering  <meyering@redhat.com>
15512
15513         * users.txt: Add libvirt.
15514
15515         Support versions of autoconf prior to 2.59c.
15516         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
15517         if it is not already defined.
15518
15519 2007-12-09  Bruno Haible  <bruno@clisp.org>
15520
15521         Let 'gnulib-tool --import' collect sources needed for the tests in
15522         tests/ rather than in lib/.
15523         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
15524         argument. If true, add rules to generate libtests.a, and put libtests.a
15525         into $(LDADD). Consider source files in subdirectories and set
15526         uses_subdirs.
15527         (func_emit_initmacro_start, func_emit_initmacro_end,
15528         func_emit_initmacro_done): Pass all arguments explicitly.
15529         (func_import): Determine two module lists main_modules,
15530         testsrelated_modules. Determine use_libtests. Determine two variables
15531         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
15532         instead of just sed_transform_lib_file. Determine two variables
15533         main_files and testsrelated_files. Compute 'files' as the union of
15534         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
15535         func_add_or_update. In the generated gnulib-comp.m4, collect the
15536         object files for tests/ in different variables than those for lib/.
15537         Substitute LIBTESTS_LIBDEPS.
15538         (func_create_testdir): Combine the uses_subdirs results from
15539         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
15540
15541 2007-12-09  Bruno Haible  <bruno@clisp.org>
15542
15543         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
15544         the build-aux directory.
15545
15546 2007-12-09  Bruno Haible  <bruno@clisp.org>
15547
15548         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
15549         introduced on 2006-09-09.
15550
15551 2007-12-07  Jim Meyering  <meyering@redhat.com>
15552
15553         Let these macros work also with autoconf-2.59.
15554         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
15555         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
15556         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
15557
15558 2007-12-06  Jim Meyering  <meyering@redhat.com>
15559
15560         Avoid a configure-time syntax error in gl_FUNC_ACL.
15561         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
15562         function in each branch, before testing the cache variable.
15563
15564 2007-12-04  Eric Blake  <ebb9@byu.net>
15565
15566         Make scripts executable.
15567         * build-aux/config.guess: Add execute permissions.
15568         * build-aux/config.sub: Likewise.
15569         * build-aux/gendocs.sh: Likewise.
15570
15571         Fix frexp on mingw.
15572         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
15573         cross-compiling.
15574         * doc/functions/frexp.texi (frexp): Document the bug.
15575
15576         Make cygwin fseeko check more reliable.
15577         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
15578         version numbers, rather than unrelated feature check.
15579         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
15580         * doc/functions/ftello.texi (ftello): Likewise.
15581         Reported by Bruno Haible.
15582
15583         * m4/strerror.m4: Bump version number.
15584
15585 2007-12-03  Bruno Haible  <bruno@clisp.org>
15586
15587         * doc/functions/mprotect.texi: Mention the mingw problem.
15588
15589 2007-12-03  Eric Blake  <ebb9@byu.net>
15590
15591         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
15592         REPLACE_STRERROR is initialized before this macro.
15593
15594 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
15595
15596         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
15597         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
15598         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
15599         put -lsec in even for programs other than 'ls'.  This fixes a problem
15600         for gettext reported by Bruno Haible in
15601         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
15602         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
15603         Add support for Solaris 10.  This isn't efficient, but should get the
15604         job done for now.
15605
15606 2007-12-03  James Youngman  <jay@gnu.org>
15607
15608         * doc/regexprops-generic.texi: change "an close-group" to "a
15609         close-group" and "illegal" to "not allowed".
15610
15611 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15612
15613         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
15614         pr_byname.h. Needed for the rare case when the maintainer has done
15615         "make maintainer-clean" in the source directory and then attempts a
15616         build outside the source directory.
15617         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
15618         scripts_byname.h.
15619
15620 2007-12-02  Martin Lambers <marlam@marlam.de>
15621             Bruno Haible  <bruno@clisp.org>
15622
15623         * lib/getpagesize.h: Remove file.
15624         * lib/unistd.in.h: Include declaration of getpagesize here.
15625         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
15626         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
15627         HAVE_SYS_PARAM_H.
15628         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
15629         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
15630         * modules/getpagesize (Files): Remove lib/getpagesize.h.
15631         (Depends-on): Add unistd.
15632         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
15633         (Include): Use <unistd.h> instead of getpagesize.h.
15634         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
15635         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
15636         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
15637         gl_GETPAGESIZE invocation, already handled by module dependency.
15638         * lib/pagealign_alloc.c: Don't include getpagesize.h.
15639
15640 2007-12-02  Bruno Haible  <bruno@clisp.org>
15641
15642         * modules/strings-tests: New file.
15643         * tests/test-strings.c: New file.
15644
15645         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
15646         * lib/strings.in.h: New file.
15647         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
15648         * m4/strings_h.m4: New file.
15649         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
15650         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
15651         * modules/strings: New file.
15652         * modules/string (Makefile.am): Update.
15653         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
15654         Reported by Karl Berry.
15655
15656 2007-12-01  Eric Blake  <ebb9@byu.net>
15657
15658         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
15659         accomodate fix in cygwin 1.5.25.
15660
15661 2007-12-01  Jim Meyering  <meyering@redhat.com>
15662
15663         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
15664         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
15665         that would inhibit utf8-optimization of a regexp containing line-
15666         or buffer-anchors, e.g., `^', `$'.
15667
15668 2007-11-30  Bruno Haible  <bruno@clisp.org>
15669
15670         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
15671         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
15672         glthread_recursive_lock_init.
15673         * lib/lock.c (glthread_recursive_lock_init)
15674         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
15675         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15676
15677 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
15678
15679         New function qset_acl, like set_acl but with syscall semantics.
15680         * lib/acl.h (qset_acl): New decl.
15681         * lib/acl.c (qset_acl): New function.
15682         (set_acl): Use new function.  Use more-consistent diagnostics.
15683
15684 2007-11-28  Jim Meyering  <meyering@redhat.com>
15685
15686         * modules/physmem (License): Change from GPL to LGPLv2+.
15687
15688 2007-11-26  Bruno Haible  <bruno@clisp.org>
15689
15690         * lib/vasnprintf.c (decode_long_double): Don't abort if the
15691         'long double' type has excess precision.
15692         Reported by Jim Meyering in
15693         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
15694
15695 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15696
15697         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
15698         Sync from <http://gnu.org/licenses>.
15699         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
15700         with license text from same location.
15701         * doc/maintain.texi, doc/standards.texi:  Sync from
15702         <http://savannah.gnu.org/projects/gnustandards>.
15703
15704 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
15705         and Jim Meyering  <meyering@redhat.com>
15706
15707         Adjust getdate' grammar to accept a slightly more regular language.
15708         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
15709         Before, the former was rejected.
15710         * lib/getdate.y (digits_to_date_time): New function, factored
15711         out of ...
15712         (number): ...here.  Just call digits_to_date_time.
15713         (hybrid): New non-terminal to handle an <unsigned number,
15714         signed relative offset> sequence consistently.
15715
15716 2007-11-18  Jim Meyering  <meyering@redhat.com>
15717
15718         Pull my changes from coreutils:
15719         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
15720         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
15721         use of $gnulib_tool_option_extras, so that it's separated from the
15722         preceding argument.
15723
15724         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
15725         * build-aux/bootstrap (cp_mark_as_generated): Create any required
15726         parent destination directories before copying a file into place.
15727
15728 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
15729
15730         bootstrap: work also with 4-argument variant of AC_INIT
15731         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
15732
15733 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15734
15735         Port test-getaddrinfo to Solaris.
15736         Problem reported by Bruno Haible in
15737         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
15738         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
15739         explanation of setting 'hints'.
15740         Don't reject an implementation merely because it returns EAI_SERVICE.
15741         (EAI_SERVICE): Define to 0 if not defined.
15742
15743 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
15744
15745         The license of gnu-make and posix-shell is now "GPLed build tool".
15746         * modules/gnu-make (License): Likewise.
15747         * modules/posix-shell (License): Likewise.
15748
15749         New module posix-shell, for determining a POSIX shell
15750         or perhaps something that is close enough to a POSIX shell.
15751         * m4/posix-shell.m4: New file.
15752         * modules/posix-shell: New file.
15753
15754         * MODULES.html.sh: Mention new module.
15755
15756         New module gnu-make, for determining whether we're using GNU Make.
15757         * m4/gnu-make.m4: New file.
15758         * modules/gnu-make: New file.
15759         * MODULES.html.sh: Mention new module.
15760
15761 2007-11-14  Jim Meyering  <meyering@redhat.com>
15762
15763         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
15764         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
15765         use this macro to create a function _definition_.
15766         Remove useless "#undef ARGMATCH_DIE".
15767
15768 2007-11-14  Bruno Haible  <bruno@clisp.org>
15769
15770         * lib/config.charset: Update for OpenBSD 4.1.
15771         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
15772
15773 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
15774
15775         Document 64-bit #if problems in stdint.texi.
15776         * doc/headers/stdint.texi (stdint.h): Mention problems with
15777         64-bit-#if, and how to work around them.
15778
15779         Don't insist on 'long long int' support in the preprocessor.  It
15780         breaks too many things.  For example, PRIdMAX still uses a 'long
15781         long int' format with the latest Sun compiler, even though
15782         HAVE_LONG_LONG_INT isn't defined due to that compiler's
15783         preprocessor problem.  This causes the latest coreutils to dump
15784         core on Solaris 10 sparc with the Sun C compiler.
15785         Instead, fix the 2007-10-16 problem in a different way, by evaluating
15786         the troublesome expressions at configure-time, not at #if-time.
15787         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
15788         preprocessor.
15789         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
15790         compile-time C checks, done at 'configure'-time.
15791         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
15792         * modules/inttypes (Makefile): Substitute the new symbols that
15793         gl_INTTYPES_H now generates.
15794         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
15795
15796 2007-11-12  Bruno Haible  <bruno@clisp.org>
15797
15798         Tests for Unicode character classification functions.
15799
15800         * modules/unictype/bidicategory-byname-tests: New file.
15801         * modules/unictype/bidicategory-name-tests: New file.
15802         * modules/unictype/bidicategory-of-tests: New file.
15803         * modules/unictype/bidicategory-test-tests: New file.
15804         * modules/unictype/block-list-tests: New file.
15805         * modules/unictype/block-of-tests: New file.
15806         * modules/unictype/block-test-tests: New file.
15807         * modules/unictype/category-C-tests: New file.
15808         * modules/unictype/category-Cc-tests: New file.
15809         * modules/unictype/category-Cf-tests: New file.
15810         * modules/unictype/category-Cn-tests: New file.
15811         * modules/unictype/category-Co-tests: New file.
15812         * modules/unictype/category-Cs-tests: New file.
15813         * modules/unictype/category-L-tests: New file.
15814         * modules/unictype/category-Ll-tests: New file.
15815         * modules/unictype/category-Lm-tests: New file.
15816         * modules/unictype/category-Lo-tests: New file.
15817         * modules/unictype/category-Lt-tests: New file.
15818         * modules/unictype/category-Lu-tests: New file.
15819         * modules/unictype/category-M-tests: New file.
15820         * modules/unictype/category-Mc-tests: New file.
15821         * modules/unictype/category-Me-tests: New file.
15822         * modules/unictype/category-Mn-tests: New file.
15823         * modules/unictype/category-N-tests: New file.
15824         * modules/unictype/category-Nd-tests: New file.
15825         * modules/unictype/category-Nl-tests: New file.
15826         * modules/unictype/category-No-tests: New file.
15827         * modules/unictype/category-P-tests: New file.
15828         * modules/unictype/category-Pc-tests: New file.
15829         * modules/unictype/category-Pd-tests: New file.
15830         * modules/unictype/category-Pe-tests: New file.
15831         * modules/unictype/category-Pf-tests: New file.
15832         * modules/unictype/category-Pi-tests: New file.
15833         * modules/unictype/category-Po-tests: New file.
15834         * modules/unictype/category-Ps-tests: New file.
15835         * modules/unictype/category-S-tests: New file.
15836         * modules/unictype/category-Sc-tests: New file.
15837         * modules/unictype/category-Sk-tests: New file.
15838         * modules/unictype/category-Sm-tests: New file.
15839         * modules/unictype/category-So-tests: New file.
15840         * modules/unictype/category-Z-tests: New file.
15841         * modules/unictype/category-Zl-tests: New file.
15842         * modules/unictype/category-Zp-tests: New file.
15843         * modules/unictype/category-Zs-tests: New file.
15844         * modules/unictype/category-and-not-tests: New file.
15845         * modules/unictype/category-and-tests: New file.
15846         * modules/unictype/category-byname-tests: New file.
15847         * modules/unictype/category-name-tests: New file.
15848         * modules/unictype/category-none-tests: New file.
15849         * modules/unictype/category-of-tests: New file.
15850         * modules/unictype/category-or-tests: New file.
15851         * modules/unictype/category-test-withtable-tests: New file.
15852         * modules/unictype/combining-class-tests: New file.
15853         * modules/unictype/ctype-alnum-tests: New file.
15854         * modules/unictype/ctype-alpha-tests: New file.
15855         * modules/unictype/ctype-blank-tests: New file.
15856         * modules/unictype/ctype-cntrl-tests: New file.
15857         * modules/unictype/ctype-digit-tests: New file.
15858         * modules/unictype/ctype-graph-tests: New file.
15859         * modules/unictype/ctype-lower-tests: New file.
15860         * modules/unictype/ctype-print-tests: New file.
15861         * modules/unictype/ctype-punct-tests: New file.
15862         * modules/unictype/ctype-space-tests: New file.
15863         * modules/unictype/ctype-upper-tests: New file.
15864         * modules/unictype/ctype-xdigit-tests: New file.
15865         * modules/unictype/decimal-digit-tests: New file.
15866         * modules/unictype/digit-tests: New file.
15867         * modules/unictype/mirror-tests: New file.
15868         * modules/unictype/numeric-tests: New file.
15869         * modules/unictype/property-alphabetic-tests: New file.
15870         * modules/unictype/property-ascii-hex-digit-tests: New file.
15871         * modules/unictype/property-bidi-arabic-digit-tests: New file.
15872         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
15873         * modules/unictype/property-bidi-block-separator-tests: New file.
15874         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
15875         * modules/unictype/property-bidi-common-separator-tests: New file.
15876         * modules/unictype/property-bidi-control-tests: New file.
15877         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
15878         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
15879         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
15880         * modules/unictype/property-bidi-european-digit-tests: New file.
15881         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
15882         * modules/unictype/property-bidi-left-to-right-tests: New file.
15883         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
15884         * modules/unictype/property-bidi-other-neutral-tests: New file.
15885         * modules/unictype/property-bidi-pdf-tests: New file.
15886         * modules/unictype/property-bidi-segment-separator-tests: New file.
15887         * modules/unictype/property-bidi-whitespace-tests: New file.
15888         * modules/unictype/property-byname-tests: New file.
15889         * modules/unictype/property-combining-tests: New file.
15890         * modules/unictype/property-composite-tests: New file.
15891         * modules/unictype/property-currency-symbol-tests: New file.
15892         * modules/unictype/property-dash-tests: New file.
15893         * modules/unictype/property-decimal-digit-tests: New file.
15894         * modules/unictype/property-default-ignorable-code-point-tests: New file.
15895         * modules/unictype/property-deprecated-tests: New file.
15896         * modules/unictype/property-diacritic-tests: New file.
15897         * modules/unictype/property-extender-tests: New file.
15898         * modules/unictype/property-format-control-tests: New file.
15899         * modules/unictype/property-grapheme-base-tests: New file.
15900         * modules/unictype/property-grapheme-extend-tests: New file.
15901         * modules/unictype/property-grapheme-link-tests: New file.
15902         * modules/unictype/property-hex-digit-tests: New file.
15903         * modules/unictype/property-hyphen-tests: New file.
15904         * modules/unictype/property-id-continue-tests: New file.
15905         * modules/unictype/property-id-start-tests: New file.
15906         * modules/unictype/property-ideographic-tests: New file.
15907         * modules/unictype/property-ids-binary-operator-tests: New file.
15908         * modules/unictype/property-ids-trinary-operator-tests: New file.
15909         * modules/unictype/property-ignorable-control-tests: New file.
15910         * modules/unictype/property-iso-control-tests: New file.
15911         * modules/unictype/property-join-control-tests: New file.
15912         * modules/unictype/property-left-of-pair-tests: New file.
15913         * modules/unictype/property-line-separator-tests: New file.
15914         * modules/unictype/property-logical-order-exception-tests: New file.
15915         * modules/unictype/property-lowercase-tests: New file.
15916         * modules/unictype/property-math-tests: New file.
15917         * modules/unictype/property-non-break-tests: New file.
15918         * modules/unictype/property-not-a-character-tests: New file.
15919         * modules/unictype/property-numeric-tests: New file.
15920         * modules/unictype/property-other-alphabetic-tests: New file.
15921         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
15922         * modules/unictype/property-other-grapheme-extend-tests: New file.
15923         * modules/unictype/property-other-id-continue-tests: New file.
15924         * modules/unictype/property-other-id-start-tests: New file.
15925         * modules/unictype/property-other-lowercase-tests: New file.
15926         * modules/unictype/property-other-math-tests: New file.
15927         * modules/unictype/property-other-uppercase-tests: New file.
15928         * modules/unictype/property-paired-punctuation-tests: New file.
15929         * modules/unictype/property-paragraph-separator-tests: New file.
15930         * modules/unictype/property-pattern-syntax-tests: New file.
15931         * modules/unictype/property-pattern-white-space-tests: New file.
15932         * modules/unictype/property-private-use-tests: New file.
15933         * modules/unictype/property-punctuation-tests: New file.
15934         * modules/unictype/property-quotation-mark-tests: New file.
15935         * modules/unictype/property-radical-tests: New file.
15936         * modules/unictype/property-sentence-terminal-tests: New file.
15937         * modules/unictype/property-soft-dotted-tests: New file.
15938         * modules/unictype/property-space-tests: New file.
15939         * modules/unictype/property-terminal-punctuation-tests: New file.
15940         * modules/unictype/property-test-tests: New file.
15941         * modules/unictype/property-titlecase-tests: New file.
15942         * modules/unictype/property-unassigned-code-value-tests: New file.
15943         * modules/unictype/property-unified-ideograph-tests: New file.
15944         * modules/unictype/property-uppercase-tests: New file.
15945         * modules/unictype/property-variation-selector-tests: New file.
15946         * modules/unictype/property-white-space-tests: New file.
15947         * modules/unictype/property-xid-continue-tests: New file.
15948         * modules/unictype/property-xid-start-tests: New file.
15949         * modules/unictype/property-zero-width-tests: New file.
15950         * modules/unictype/scripts-tests: New file.
15951         * modules/unictype/syntax-c-ident-tests: New file.
15952         * modules/unictype/syntax-c-whitespace-tests: New file.
15953         * modules/unictype/syntax-java-ident-tests: New file.
15954         * modules/unictype/syntax-java-whitespace-tests: New file.
15955         * tests/unictype/test-bidi_byname.c: New file.
15956         * tests/unictype/test-bidi_name.c: New file.
15957         * tests/unictype/test-bidi_of.c: New file.
15958         * tests/unictype/test-bidi_test.c: New file.
15959         * tests/unictype/test-block_list.c: New file.
15960         * tests/unictype/test-block_of.c: New file.
15961         * tests/unictype/test-block_test.c: New file.
15962         * tests/unictype/test-categ_and.c: New file.
15963         * tests/unictype/test-categ_and_not.c: New file.
15964         * tests/unictype/test-categ_byname.c: New file.
15965         * tests/unictype/test-categ_name.c: New file.
15966         * tests/unictype/test-categ_none.c: New file.
15967         * tests/unictype/test-categ_of.c: New file.
15968         * tests/unictype/test-categ_or.c: New file.
15969         * tests/unictype/test-categ_test_withtable.c: New file.
15970         * tests/unictype/test-combining.c: New file.
15971         * tests/unictype/test-decdigit.c: New file.
15972         * tests/unictype/test-digit.c: New file.
15973         * tests/unictype/test-mirror.c: New file.
15974         * tests/unictype/test-numeric.c: New file.
15975         * tests/unictype/test-pr_byname.c: New file.
15976         * tests/unictype/test-pr_test.c: New file.
15977         * tests/unictype/test-predicate-part1.h: New file.
15978         * tests/unictype/test-predicate-part2.h: New file.
15979         * tests/unictype/test-scripts.c: New file.
15980         * tests/unictype/test-sy_c_ident.c: New file.
15981         * tests/unictype/test-sy_java_ident.c: New file.
15982
15983         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
15984         for Unicode 5.0.0.
15985         * tests/unictype/test-categ_Cc.c: Likewise.
15986         * tests/unictype/test-categ_Cf.c: Likewise.
15987         * tests/unictype/test-categ_Cn.c: Likewise.
15988         * tests/unictype/test-categ_Co.c: Likewise.
15989         * tests/unictype/test-categ_Cs.c: Likewise.
15990         * tests/unictype/test-categ_L.c: Likewise.
15991         * tests/unictype/test-categ_Ll.c: Likewise.
15992         * tests/unictype/test-categ_Lm.c: Likewise.
15993         * tests/unictype/test-categ_Lo.c: Likewise.
15994         * tests/unictype/test-categ_Lt.c: Likewise.
15995         * tests/unictype/test-categ_Lu.c: Likewise.
15996         * tests/unictype/test-categ_M.c: Likewise.
15997         * tests/unictype/test-categ_Mc.c: Likewise.
15998         * tests/unictype/test-categ_Me.c: Likewise.
15999         * tests/unictype/test-categ_Mn.c: Likewise.
16000         * tests/unictype/test-categ_N.c: Likewise.
16001         * tests/unictype/test-categ_Nd.c: Likewise.
16002         * tests/unictype/test-categ_Nl.c: Likewise.
16003         * tests/unictype/test-categ_No.c: Likewise.
16004         * tests/unictype/test-categ_P.c: Likewise.
16005         * tests/unictype/test-categ_Pc.c: Likewise.
16006         * tests/unictype/test-categ_Pd.c: Likewise.
16007         * tests/unictype/test-categ_Pe.c: Likewise.
16008         * tests/unictype/test-categ_Pf.c: Likewise.
16009         * tests/unictype/test-categ_Pi.c: Likewise.
16010         * tests/unictype/test-categ_Po.c: Likewise.
16011         * tests/unictype/test-categ_Ps.c: Likewise.
16012         * tests/unictype/test-categ_S.c: Likewise.
16013         * tests/unictype/test-categ_Sc.c: Likewise.
16014         * tests/unictype/test-categ_Sk.c: Likewise.
16015         * tests/unictype/test-categ_Sm.c: Likewise.
16016         * tests/unictype/test-categ_So.c: Likewise.
16017         * tests/unictype/test-categ_Z.c: Likewise.
16018         * tests/unictype/test-categ_Zl.c: Likewise.
16019         * tests/unictype/test-categ_Zp.c: Likewise.
16020         * tests/unictype/test-categ_Zs.c: Likewise.
16021         * tests/unictype/test-ctype_alnum.c: Likewise.
16022         * tests/unictype/test-ctype_alpha.c: Likewise.
16023         * tests/unictype/test-ctype_blank.c: Likewise.
16024         * tests/unictype/test-ctype_cntrl.c: Likewise.
16025         * tests/unictype/test-ctype_digit.c: Likewise.
16026         * tests/unictype/test-ctype_graph.c: Likewise.
16027         * tests/unictype/test-ctype_lower.c: Likewise.
16028         * tests/unictype/test-ctype_print.c: Likewise.
16029         * tests/unictype/test-ctype_punct.c: Likewise.
16030         * tests/unictype/test-ctype_space.c: Likewise.
16031         * tests/unictype/test-ctype_upper.c: Likewise.
16032         * tests/unictype/test-ctype_xdigit.c: Likewise.
16033         * tests/unictype/test-decdigit.h: Likewise.
16034         * tests/unictype/test-digit.h: Likewise.
16035         * tests/unictype/test-numeric.h: Likewise.
16036         * tests/unictype/test-pr_alphabetic.c: Likewise.
16037         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
16038         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
16039         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
16040         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
16041         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
16042         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
16043         * tests/unictype/test-pr_bidi_control.c: Likewise.
16044         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
16045         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
16046         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
16047         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
16048         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
16049         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
16050         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
16051         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
16052         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
16053         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
16054         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
16055         * tests/unictype/test-pr_combining.c: Likewise.
16056         * tests/unictype/test-pr_composite.c: Likewise.
16057         * tests/unictype/test-pr_currency_symbol.c: Likewise.
16058         * tests/unictype/test-pr_dash.c: Likewise.
16059         * tests/unictype/test-pr_decimal_digit.c: Likewise.
16060         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
16061         * tests/unictype/test-pr_deprecated.c: Likewise.
16062         * tests/unictype/test-pr_diacritic.c: Likewise.
16063         * tests/unictype/test-pr_extender.c: Likewise.
16064         * tests/unictype/test-pr_format_control.c: Likewise.
16065         * tests/unictype/test-pr_grapheme_base.c: Likewise.
16066         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
16067         * tests/unictype/test-pr_grapheme_link.c: Likewise.
16068         * tests/unictype/test-pr_hex_digit.c: Likewise.
16069         * tests/unictype/test-pr_hyphen.c: Likewise.
16070         * tests/unictype/test-pr_id_continue.c: Likewise.
16071         * tests/unictype/test-pr_id_start.c: Likewise.
16072         * tests/unictype/test-pr_ideographic.c: Likewise.
16073         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
16074         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
16075         * tests/unictype/test-pr_ignorable_control.c: Likewise.
16076         * tests/unictype/test-pr_iso_control.c: Likewise.
16077         * tests/unictype/test-pr_join_control.c: Likewise.
16078         * tests/unictype/test-pr_left_of_pair.c: Likewise.
16079         * tests/unictype/test-pr_line_separator.c: Likewise.
16080         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
16081         * tests/unictype/test-pr_lowercase.c: Likewise.
16082         * tests/unictype/test-pr_math.c: Likewise.
16083         * tests/unictype/test-pr_non_break.c: Likewise.
16084         * tests/unictype/test-pr_not_a_character.c: Likewise.
16085         * tests/unictype/test-pr_numeric.c: Likewise.
16086         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
16087         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
16088         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
16089         * tests/unictype/test-pr_other_id_continue.c: Likewise.
16090         * tests/unictype/test-pr_other_id_start.c: Likewise.
16091         * tests/unictype/test-pr_other_lowercase.c: Likewise.
16092         * tests/unictype/test-pr_other_math.c: Likewise.
16093         * tests/unictype/test-pr_other_uppercase.c: Likewise.
16094         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
16095         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
16096         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
16097         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
16098         * tests/unictype/test-pr_private_use.c: Likewise.
16099         * tests/unictype/test-pr_punctuation.c: Likewise.
16100         * tests/unictype/test-pr_quotation_mark.c: Likewise.
16101         * tests/unictype/test-pr_radical.c: Likewise.
16102         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
16103         * tests/unictype/test-pr_soft_dotted.c: Likewise.
16104         * tests/unictype/test-pr_space.c: Likewise.
16105         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
16106         * tests/unictype/test-pr_titlecase.c: Likewise.
16107         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
16108         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
16109         * tests/unictype/test-pr_uppercase.c: Likewise.
16110         * tests/unictype/test-pr_variation_selector.c: Likewise.
16111         * tests/unictype/test-pr_white_space.c: Likewise.
16112         * tests/unictype/test-pr_xid_continue.c: Likewise.
16113         * tests/unictype/test-pr_xid_start.c: Likewise.
16114         * tests/unictype/test-pr_zero_width.c: Likewise.
16115         * tests/unictype/test-sy_c_whitespace.c: Likewise.
16116         * tests/unictype/test-sy_java_whitespace.c: Likewise.
16117
16118 2007-11-12  Bruno Haible  <bruno@clisp.org>
16119
16120         Unicode character classification functions.
16121         * lib/unictype.h: New file.
16122         * modules/unictype/base: New file.
16123         * modules/unictype/category-L: New file.
16124         * modules/unictype/category-Lu: New file.
16125         * modules/unictype/category-Ll: New file.
16126         * modules/unictype/category-Lt: New file.
16127         * modules/unictype/category-Lm: New file.
16128         * modules/unictype/category-Lo: New file.
16129         * modules/unictype/category-M: New file.
16130         * modules/unictype/category-Mn: New file.
16131         * modules/unictype/category-Mc: New file.
16132         * modules/unictype/category-Me: New file.
16133         * modules/unictype/category-N: New file.
16134         * modules/unictype/category-Nd: New file.
16135         * modules/unictype/category-Nl: New file.
16136         * modules/unictype/category-No: New file.
16137         * modules/unictype/category-P: New file.
16138         * modules/unictype/category-Pc: New file.
16139         * modules/unictype/category-Pd: New file.
16140         * modules/unictype/category-Ps: New file.
16141         * modules/unictype/category-Pe: New file.
16142         * modules/unictype/category-Pi: New file.
16143         * modules/unictype/category-Pf: New file.
16144         * modules/unictype/category-Po: New file.
16145         * modules/unictype/category-S: New file.
16146         * modules/unictype/category-Sm: New file.
16147         * modules/unictype/category-Sc: New file.
16148         * modules/unictype/category-Sk: New file.
16149         * modules/unictype/category-So: New file.
16150         * modules/unictype/category-Z: New file.
16151         * modules/unictype/category-Zs: New file.
16152         * modules/unictype/category-Zl: New file.
16153         * modules/unictype/category-Zp: New file.
16154         * modules/unictype/category-C: New file.
16155         * modules/unictype/category-Cc: New file.
16156         * modules/unictype/category-Cf: New file.
16157         * modules/unictype/category-Cs: New file.
16158         * modules/unictype/category-Co: New file.
16159         * modules/unictype/category-Cn: New file.
16160         * modules/unictype/category-or: New file.
16161         * modules/unictype/category-of: New file.
16162         * modules/unictype/category-test: New file.
16163         * modules/unictype/category-test-withtable: New file.
16164         * modules/unictype/category-byname: New file.
16165         * modules/unictype/category-none: New file.
16166         * modules/unictype/category-and: New file.
16167         * modules/unictype/category-and-not: New file.
16168         * modules/unictype/category-name: New file.
16169         * modules/unictype/combining-class: New file.
16170         * modules/unictype/category-all: New file.
16171         * modules/unictype/bidicategory-all: New file.
16172         * modules/unictype/bidicategory-byname: New file.
16173         * modules/unictype/bidicategory-name: New file.
16174         * modules/unictype/bidicategory-of: New file.
16175         * modules/unictype/bidicategory-test: New file.
16176         * modules/unictype/decimal-digit: New file.
16177         * modules/unictype/digit: New file.
16178         * modules/unictype/numeric: New file.
16179         * modules/unictype/mirror: New file.
16180         * modules/unictype/property-white-space: New file.
16181         * modules/unictype/property-alphabetic: New file.
16182         * modules/unictype/property-other-alphabetic: New file.
16183         * modules/unictype/property-not-a-character: New file.
16184         * modules/unictype/property-default-ignorable-code-point: New file.
16185         * modules/unictype/property-other-default-ignorable-code-point: New
16186         file.
16187         * modules/unictype/property-deprecated: New file.
16188         * modules/unictype/property-logical-order-exception: New file.
16189         * modules/unictype/property-variation-selector: New file.
16190         * modules/unictype/property-private-use: New file.
16191         * modules/unictype/property-unassigned-code-value: New file.
16192         * modules/unictype/property-uppercase: New file.
16193         * modules/unictype/property-other-uppercase: New file.
16194         * modules/unictype/property-lowercase: New file.
16195         * modules/unictype/property-other-lowercase: New file.
16196         * modules/unictype/property-titlecase: New file.
16197         * modules/unictype/property-soft-dotted: New file.
16198         * modules/unictype/property-id-start: New file.
16199         * modules/unictype/property-other-id-start: New file.
16200         * modules/unictype/property-id-continue: New file.
16201         * modules/unictype/property-other-id-continue: New file.
16202         * modules/unictype/property-xid-start: New file.
16203         * modules/unictype/property-xid-continue: New file.
16204         * modules/unictype/property-pattern-white-space: New file.
16205         * modules/unictype/property-pattern-syntax: New file.
16206         * modules/unictype/property-join-control: New file.
16207         * modules/unictype/property-grapheme-base: New file.
16208         * modules/unictype/property-grapheme-extend: New file.
16209         * modules/unictype/property-other-grapheme-extend: New file.
16210         * modules/unictype/property-grapheme-link: New file.
16211         * modules/unictype/property-bidi-control: New file.
16212         * modules/unictype/property-bidi-left-to-right: New file.
16213         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
16214         * modules/unictype/property-bidi-arabic-right-to-left: New file.
16215         * modules/unictype/property-bidi-european-digit: New file.
16216         * modules/unictype/property-bidi-eur-num-separator: New file.
16217         * modules/unictype/property-bidi-eur-num-terminator: New file.
16218         * modules/unictype/property-bidi-arabic-digit: New file.
16219         * modules/unictype/property-bidi-common-separator: New file.
16220         * modules/unictype/property-bidi-block-separator: New file.
16221         * modules/unictype/property-bidi-segment-separator: New file.
16222         * modules/unictype/property-bidi-whitespace: New file.
16223         * modules/unictype/property-bidi-non-spacing-mark: New file.
16224         * modules/unictype/property-bidi-boundary-neutral: New file.
16225         * modules/unictype/property-bidi-pdf: New file.
16226         * modules/unictype/property-bidi-embedding-or-override: New file.
16227         * modules/unictype/property-bidi-other-neutral: New file.
16228         * modules/unictype/property-hex-digit: New file.
16229         * modules/unictype/property-ascii-hex-digit: New file.
16230         * modules/unictype/property-ideographic: New file.
16231         * modules/unictype/property-unified-ideograph: New file.
16232         * modules/unictype/property-radical: New file.
16233         * modules/unictype/property-ids-binary-operator: New file.
16234         * modules/unictype/property-ids-trinary-operator: New file.
16235         * modules/unictype/property-zero-width: New file.
16236         * modules/unictype/property-space: New file.
16237         * modules/unictype/property-non-break: New file.
16238         * modules/unictype/property-iso-control: New file.
16239         * modules/unictype/property-format-control: New file.
16240         * modules/unictype/property-dash: New file.
16241         * modules/unictype/property-hyphen: New file.
16242         * modules/unictype/property-punctuation: New file.
16243         * modules/unictype/property-line-separator: New file.
16244         * modules/unictype/property-paragraph-separator: New file.
16245         * modules/unictype/property-quotation-mark: New file.
16246         * modules/unictype/property-sentence-terminal: New file.
16247         * modules/unictype/property-terminal-punctuation: New file.
16248         * modules/unictype/property-currency-symbol: New file.
16249         * modules/unictype/property-math: New file.
16250         * modules/unictype/property-other-math: New file.
16251         * modules/unictype/property-paired-punctuation: New file.
16252         * modules/unictype/property-left-of-pair: New file.
16253         * modules/unictype/property-combining: New file.
16254         * modules/unictype/property-composite: New file.
16255         * modules/unictype/property-decimal-digit: New file.
16256         * modules/unictype/property-numeric: New file.
16257         * modules/unictype/property-diacritic: New file.
16258         * modules/unictype/property-extender: New file.
16259         * modules/unictype/property-ignorable-control: New file.
16260         * modules/unictype/property-test: New file.
16261         * modules/unictype/property-byname: New file.
16262         * modules/unictype/property-all: New file.
16263         * modules/unictype/scripts: New file.
16264         * modules/unictype/scripts-all: New file.
16265         * modules/unictype/block-of: New file.
16266         * modules/unictype/block-test: New file.
16267         * modules/unictype/block-list: New file.
16268         * modules/unictype/block-all: New file.
16269         * modules/unictype/syntax-c-whitespace: New file.
16270         * modules/unictype/syntax-java-whitespace: New file.
16271         * modules/unictype/syntax-c-ident: New file.
16272         * modules/unictype/syntax-java-ident: New file.
16273         * modules/unictype/ctype-alnum: New file.
16274         * modules/unictype/ctype-alpha: New file.
16275         * modules/unictype/ctype-cntrl: New file.
16276         * modules/unictype/ctype-digit: New file.
16277         * modules/unictype/ctype-graph: New file.
16278         * modules/unictype/ctype-lower: New file.
16279         * modules/unictype/ctype-print: New file.
16280         * modules/unictype/ctype-punct: New file.
16281         * modules/unictype/ctype-space: New file.
16282         * modules/unictype/ctype-upper: New file.
16283         * modules/unictype/ctype-xdigit: New file.
16284         * modules/unictype/ctype-blank: New file.
16285         * lib/unictype/bidi_byname.c: New file.
16286         * lib/unictype/bidi_name.c: New file.
16287         * lib/unictype/bidi_of.c: New file.
16288         * lib/unictype/bidi_test.c: New file.
16289         * lib/unictype/bitmap.h: New file.
16290         * lib/unictype/block_test.c: New file.
16291         * lib/unictype/blocks.c: New file.
16292         * lib/unictype/categ_C.c: New file.
16293         * lib/unictype/categ_Cc.c: New file.
16294         * lib/unictype/categ_Cf.c: New file.
16295         * lib/unictype/categ_Cn.c: New file.
16296         * lib/unictype/categ_Co.c: New file.
16297         * lib/unictype/categ_Cs.c: New file.
16298         * lib/unictype/categ_L.c: New file.
16299         * lib/unictype/categ_Ll.c: New file.
16300         * lib/unictype/categ_Lm.c: New file.
16301         * lib/unictype/categ_Lo.c: New file.
16302         * lib/unictype/categ_Lt.c: New file.
16303         * lib/unictype/categ_Lu.c: New file.
16304         * lib/unictype/categ_M.c: New file.
16305         * lib/unictype/categ_Mc.c: New file.
16306         * lib/unictype/categ_Me.c: New file.
16307         * lib/unictype/categ_Mn.c: New file.
16308         * lib/unictype/categ_N.c: New file.
16309         * lib/unictype/categ_Nd.c: New file.
16310         * lib/unictype/categ_Nl.c: New file.
16311         * lib/unictype/categ_No.c: New file.
16312         * lib/unictype/categ_P.c: New file.
16313         * lib/unictype/categ_Pc.c: New file.
16314         * lib/unictype/categ_Pd.c: New file.
16315         * lib/unictype/categ_Pe.c: New file.
16316         * lib/unictype/categ_Pf.c: New file.
16317         * lib/unictype/categ_Pi.c: New file.
16318         * lib/unictype/categ_Po.c: New file.
16319         * lib/unictype/categ_Ps.c: New file.
16320         * lib/unictype/categ_S.c: New file.
16321         * lib/unictype/categ_Sc.c: New file.
16322         * lib/unictype/categ_Sk.c: New file.
16323         * lib/unictype/categ_Sm.c: New file.
16324         * lib/unictype/categ_So.c: New file.
16325         * lib/unictype/categ_Z.c: New file.
16326         * lib/unictype/categ_Zl.c: New file.
16327         * lib/unictype/categ_Zp.c: New file.
16328         * lib/unictype/categ_Zs.c: New file.
16329         * lib/unictype/categ_and.c: New file.
16330         * lib/unictype/categ_and_not.c: New file.
16331         * lib/unictype/categ_byname.c: New file.
16332         * lib/unictype/categ_name.c: New file.
16333         * lib/unictype/categ_none.c: New file.
16334         * lib/unictype/categ_of.c: New file.
16335         * lib/unictype/categ_or.c: New file.
16336         * lib/unictype/categ_test.c: New file.
16337         * lib/unictype/combining.c: New file.
16338         * lib/unictype/ctype_alnum.c: New file.
16339         * lib/unictype/ctype_alpha.c: New file.
16340         * lib/unictype/ctype_blank.c: New file.
16341         * lib/unictype/ctype_cntrl.c: New file.
16342         * lib/unictype/ctype_digit.c: New file.
16343         * lib/unictype/ctype_graph.c: New file.
16344         * lib/unictype/ctype_lower.c: New file.
16345         * lib/unictype/ctype_print.c: New file.
16346         * lib/unictype/ctype_punct.c: New file.
16347         * lib/unictype/ctype_space.c: New file.
16348         * lib/unictype/ctype_upper.c: New file.
16349         * lib/unictype/ctype_xdigit.c: New file.
16350         * lib/unictype/decdigit.c: New file.
16351         * lib/unictype/digit.c: New file.
16352         * lib/unictype/identsyntaxmap.h: New file.
16353         * lib/unictype/mirror.c: New file.
16354         * lib/unictype/numeric.c: New file.
16355         * lib/unictype/pr_alphabetic.c: New file.
16356         * lib/unictype/pr_ascii_hex_digit.c: New file.
16357         * lib/unictype/pr_bidi_arabic_digit.c: New file.
16358         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
16359         * lib/unictype/pr_bidi_block_separator.c: New file.
16360         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
16361         * lib/unictype/pr_bidi_common_separator.c: New file.
16362         * lib/unictype/pr_bidi_control.c: New file.
16363         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
16364         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
16365         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
16366         * lib/unictype/pr_bidi_european_digit.c: New file.
16367         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
16368         * lib/unictype/pr_bidi_left_to_right.c: New file.
16369         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
16370         * lib/unictype/pr_bidi_other_neutral.c: New file.
16371         * lib/unictype/pr_bidi_pdf.c: New file.
16372         * lib/unictype/pr_bidi_segment_separator.c: New file.
16373         * lib/unictype/pr_bidi_whitespace.c: New file.
16374         * lib/unictype/pr_byname.c: New file.
16375         * lib/unictype/pr_byname.gperf: New file.
16376         * lib/unictype/pr_combining.c: New file.
16377         * lib/unictype/pr_composite.c: New file.
16378         * lib/unictype/pr_currency_symbol.c: New file.
16379         * lib/unictype/pr_dash.c: New file.
16380         * lib/unictype/pr_decimal_digit.c: New file.
16381         * lib/unictype/pr_default_ignorable_code_point.c: New file.
16382         * lib/unictype/pr_deprecated.c: New file.
16383         * lib/unictype/pr_diacritic.c: New file.
16384         * lib/unictype/pr_extender.c: New file.
16385         * lib/unictype/pr_format_control.c: New file.
16386         * lib/unictype/pr_grapheme_base.c: New file.
16387         * lib/unictype/pr_grapheme_extend.c: New file.
16388         * lib/unictype/pr_grapheme_link.c: New file.
16389         * lib/unictype/pr_hex_digit.c: New file.
16390         * lib/unictype/pr_hyphen.c: New file.
16391         * lib/unictype/pr_id_continue.c: New file.
16392         * lib/unictype/pr_id_start.c: New file.
16393         * lib/unictype/pr_ideographic.c: New file.
16394         * lib/unictype/pr_ids_binary_operator.c: New file.
16395         * lib/unictype/pr_ids_trinary_operator.c: New file.
16396         * lib/unictype/pr_ignorable_control.c: New file.
16397         * lib/unictype/pr_iso_control.c: New file.
16398         * lib/unictype/pr_join_control.c: New file.
16399         * lib/unictype/pr_left_of_pair.c: New file.
16400         * lib/unictype/pr_line_separator.c: New file.
16401         * lib/unictype/pr_logical_order_exception.c: New file.
16402         * lib/unictype/pr_lowercase.c: New file.
16403         * lib/unictype/pr_math.c: New file.
16404         * lib/unictype/pr_non_break.c: New file.
16405         * lib/unictype/pr_not_a_character.c: New file.
16406         * lib/unictype/pr_numeric.c: New file.
16407         * lib/unictype/pr_other_alphabetic.c: New file.
16408         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
16409         * lib/unictype/pr_other_grapheme_extend.c: New file.
16410         * lib/unictype/pr_other_id_continue.c: New file.
16411         * lib/unictype/pr_other_id_start.c: New file.
16412         * lib/unictype/pr_other_lowercase.c: New file.
16413         * lib/unictype/pr_other_math.c: New file.
16414         * lib/unictype/pr_other_uppercase.c: New file.
16415         * lib/unictype/pr_paired_punctuation.c: New file.
16416         * lib/unictype/pr_paragraph_separator.c: New file.
16417         * lib/unictype/pr_pattern_syntax.c: New file.
16418         * lib/unictype/pr_pattern_white_space.c: New file.
16419         * lib/unictype/pr_private_use.c: New file.
16420         * lib/unictype/pr_punctuation.c: New file.
16421         * lib/unictype/pr_quotation_mark.c: New file.
16422         * lib/unictype/pr_radical.c: New file.
16423         * lib/unictype/pr_sentence_terminal.c: New file.
16424         * lib/unictype/pr_soft_dotted.c: New file.
16425         * lib/unictype/pr_space.c: New file.
16426         * lib/unictype/pr_terminal_punctuation.c: New file.
16427         * lib/unictype/pr_test.c: New file.
16428         * lib/unictype/pr_titlecase.c: New file.
16429         * lib/unictype/pr_unassigned_code_value.c: New file.
16430         * lib/unictype/pr_unified_ideograph.c: New file.
16431         * lib/unictype/pr_uppercase.c: New file.
16432         * lib/unictype/pr_variation_selector.c: New file.
16433         * lib/unictype/pr_white_space.c: New file.
16434         * lib/unictype/pr_xid_continue.c: New file.
16435         * lib/unictype/pr_xid_start.c: New file.
16436         * lib/unictype/pr_zero_width.c: New file.
16437         * lib/unictype/scripts.c: New file.
16438         * lib/unictype/sy_c_ident.c: New file.
16439         * lib/unictype/sy_c_whitespace.c: New file.
16440         * lib/unictype/sy_java_ident.c: New file.
16441         * lib/unictype/sy_java_whitespace.c: New file.
16442
16443         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
16444         Unicode 5.0.0.
16445         * lib/unictype/blocks.h: Likewise.
16446         * lib/unictype/categ_C.h: Likewise.
16447         * lib/unictype/categ_Cc.h: Likewise.
16448         * lib/unictype/categ_Cf.h: Likewise.
16449         * lib/unictype/categ_Cn.h: Likewise.
16450         * lib/unictype/categ_Co.h: Likewise.
16451         * lib/unictype/categ_Cs.h: Likewise.
16452         * lib/unictype/categ_L.h: Likewise.
16453         * lib/unictype/categ_Ll.h: Likewise.
16454         * lib/unictype/categ_Lm.h: Likewise.
16455         * lib/unictype/categ_Lo.h: Likewise.
16456         * lib/unictype/categ_Lt.h: Likewise.
16457         * lib/unictype/categ_Lu.h: Likewise.
16458         * lib/unictype/categ_M.h: Likewise.
16459         * lib/unictype/categ_Mc.h: Likewise.
16460         * lib/unictype/categ_Me.h: Likewise.
16461         * lib/unictype/categ_Mn.h: Likewise.
16462         * lib/unictype/categ_N.h: Likewise.
16463         * lib/unictype/categ_Nd.h: Likewise.
16464         * lib/unictype/categ_Nl.h: Likewise.
16465         * lib/unictype/categ_No.h: Likewise.
16466         * lib/unictype/categ_P.h: Likewise.
16467         * lib/unictype/categ_Pc.h: Likewise.
16468         * lib/unictype/categ_Pd.h: Likewise.
16469         * lib/unictype/categ_Pe.h: Likewise.
16470         * lib/unictype/categ_Pf.h: Likewise.
16471         * lib/unictype/categ_Pi.h: Likewise.
16472         * lib/unictype/categ_Po.h: Likewise.
16473         * lib/unictype/categ_Ps.h: Likewise.
16474         * lib/unictype/categ_S.h: Likewise.
16475         * lib/unictype/categ_Sc.h: Likewise.
16476         * lib/unictype/categ_Sk.h: Likewise.
16477         * lib/unictype/categ_Sm.h: Likewise.
16478         * lib/unictype/categ_So.h: Likewise.
16479         * lib/unictype/categ_Z.h: Likewise.
16480         * lib/unictype/categ_Zl.h: Likewise.
16481         * lib/unictype/categ_Zp.h: Likewise.
16482         * lib/unictype/categ_Zs.h: Likewise.
16483         * lib/unictype/categ_of.h: Likewise.
16484         * lib/unictype/combining.h: Likewise.
16485         * lib/unictype/ctype_alnum.h: Likewise.
16486         * lib/unictype/ctype_alpha.h: Likewise.
16487         * lib/unictype/ctype_blank.h: Likewise.
16488         * lib/unictype/ctype_cntrl.h: Likewise.
16489         * lib/unictype/ctype_digit.h: Likewise.
16490         * lib/unictype/ctype_graph.h: Likewise.
16491         * lib/unictype/ctype_lower.h: Likewise.
16492         * lib/unictype/ctype_print.h: Likewise.
16493         * lib/unictype/ctype_punct.h: Likewise.
16494         * lib/unictype/ctype_space.h: Likewise.
16495         * lib/unictype/ctype_upper.h: Likewise.
16496         * lib/unictype/ctype_xdigit.h: Likewise.
16497         * lib/unictype/decdigit.h: Likewise.
16498         * lib/unictype/digit.h: Likewise.
16499         * lib/unictype/mirror.h: Likewise.
16500         * lib/unictype/numeric.h: Likewise.
16501         * lib/unictype/pr_alphabetic.h: Likewise.
16502         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
16503         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
16504         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
16505         * lib/unictype/pr_bidi_block_separator.h: Likewise.
16506         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
16507         * lib/unictype/pr_bidi_common_separator.h: Likewise.
16508         * lib/unictype/pr_bidi_control.h: Likewise.
16509         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
16510         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
16511         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
16512         * lib/unictype/pr_bidi_european_digit.h: Likewise.
16513         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
16514         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
16515         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
16516         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
16517         * lib/unictype/pr_bidi_pdf.h: Likewise.
16518         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
16519         * lib/unictype/pr_bidi_whitespace.h: Likewise.
16520         * lib/unictype/pr_combining.h: Likewise.
16521         * lib/unictype/pr_composite.h: Likewise.
16522         * lib/unictype/pr_currency_symbol.h: Likewise.
16523         * lib/unictype/pr_dash.h: Likewise.
16524         * lib/unictype/pr_decimal_digit.h: Likewise.
16525         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
16526         * lib/unictype/pr_deprecated.h: Likewise.
16527         * lib/unictype/pr_diacritic.h: Likewise.
16528         * lib/unictype/pr_extender.h: Likewise.
16529         * lib/unictype/pr_format_control.h: Likewise.
16530         * lib/unictype/pr_grapheme_base.h: Likewise.
16531         * lib/unictype/pr_grapheme_extend.h: Likewise.
16532         * lib/unictype/pr_grapheme_link.h: Likewise.
16533         * lib/unictype/pr_hex_digit.h: Likewise.
16534         * lib/unictype/pr_hyphen.h: Likewise.
16535         * lib/unictype/pr_id_continue.h: Likewise.
16536         * lib/unictype/pr_id_start.h: Likewise.
16537         * lib/unictype/pr_ideographic.h: Likewise.
16538         * lib/unictype/pr_ids_binary_operator.h: Likewise.
16539         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
16540         * lib/unictype/pr_ignorable_control.h: Likewise.
16541         * lib/unictype/pr_iso_control.h: Likewise.
16542         * lib/unictype/pr_join_control.h: Likewise.
16543         * lib/unictype/pr_left_of_pair.h: Likewise.
16544         * lib/unictype/pr_line_separator.h: Likewise.
16545         * lib/unictype/pr_logical_order_exception.h: Likewise.
16546         * lib/unictype/pr_lowercase.h: Likewise.
16547         * lib/unictype/pr_math.h: Likewise.
16548         * lib/unictype/pr_non_break.h: Likewise.
16549         * lib/unictype/pr_not_a_character.h: Likewise.
16550         * lib/unictype/pr_numeric.h: Likewise.
16551         * lib/unictype/pr_other_alphabetic.h: Likewise.
16552         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
16553         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
16554         * lib/unictype/pr_other_id_continue.h: Likewise.
16555         * lib/unictype/pr_other_id_start.h: Likewise.
16556         * lib/unictype/pr_other_lowercase.h: Likewise.
16557         * lib/unictype/pr_other_math.h: Likewise.
16558         * lib/unictype/pr_other_uppercase.h: Likewise.
16559         * lib/unictype/pr_paired_punctuation.h: Likewise.
16560         * lib/unictype/pr_paragraph_separator.h: Likewise.
16561         * lib/unictype/pr_pattern_syntax.h: Likewise.
16562         * lib/unictype/pr_pattern_white_space.h: Likewise.
16563         * lib/unictype/pr_private_use.h: Likewise.
16564         * lib/unictype/pr_punctuation.h: Likewise.
16565         * lib/unictype/pr_quotation_mark.h: Likewise.
16566         * lib/unictype/pr_radical.h: Likewise.
16567         * lib/unictype/pr_sentence_terminal.h: Likewise.
16568         * lib/unictype/pr_soft_dotted.h: Likewise.
16569         * lib/unictype/pr_space.h: Likewise.
16570         * lib/unictype/pr_terminal_punctuation.h: Likewise.
16571         * lib/unictype/pr_titlecase.h: Likewise.
16572         * lib/unictype/pr_unassigned_code_value.h: Likewise.
16573         * lib/unictype/pr_unified_ideograph.h: Likewise.
16574         * lib/unictype/pr_uppercase.h: Likewise.
16575         * lib/unictype/pr_variation_selector.h: Likewise.
16576         * lib/unictype/pr_white_space.h: Likewise.
16577         * lib/unictype/pr_xid_continue.h: Likewise.
16578         * lib/unictype/pr_xid_start.h: Likewise.
16579         * lib/unictype/pr_zero_width.h: Likewise.
16580         * lib/unictype/scripts.h: Likewise.
16581         * lib/unictype/scripts_byname.gperf: Likewise.
16582         * lib/unictype/sy_c_ident.h: Likewise.
16583         * lib/unictype/sy_c_whitespace.h: Likewise.
16584         * lib/unictype/sy_java_ident.h: Likewise.
16585         * lib/unictype/sy_java_whitespace.h: Likewise.
16586
16587         * lib/unictype/Makefile: New file.
16588         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
16589         glibc.
16590         * lib/unictype/3level.h: New file, copied from glibc.
16591         * lib/unictype/3levelbit.h: New file.
16592
16593 2007-11-11  Bruno Haible  <bruno@clisp.org>
16594
16595         * modules/gperf: New file.
16596         * modules/iconv_open (Depends-on): Add it.
16597         (Makefile.am): Remove the GPERF definition.
16598
16599 2007-11-11  Bruno Haible  <bruno@clisp.org>
16600
16601         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
16602         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
16603
16604 2007-11-11  Bruno Haible  <bruno@clisp.org>
16605
16606         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
16607         (usage): Remove function.
16608
16609 2007-11-11  Bruno Haible  <bruno@clisp.org>
16610
16611         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
16612         gl_FUNC_CEILF_LIBS.
16613         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
16614         gl_FUNC_CEIL_LIBS.
16615         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
16616         gl_FUNC_CEILL_LIBS.
16617         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
16618         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
16619         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
16620
16621 2007-11-11  Bruno Haible  <bruno@clisp.org>
16622
16623         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
16624         roundf were declared but do not exist on functions.
16625         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
16626         roundl were declared but do not exist on functions.
16627         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
16628         HAVE_FLOORL_AND_CEILL, respectively.
16629         Needed for Sun C on Solaris 10.
16630
16631 2007-11-11  Bruno Haible  <bruno@clisp.org>
16632
16633         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
16634         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
16635         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
16636         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
16637         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
16638         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
16639         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
16640         HAVE_DECL_ROUNDF.
16641         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
16642         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
16643         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
16644         of HAVE_DECL_ROUND*.
16645         * modules/math (Makefile.am): Update.
16646
16647 2007-11-10  Bruno Haible  <bruno@clisp.org>
16648
16649         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
16650         ptrdiff_t as m4/intl.m4.
16651
16652 2007-11-10  Jim Meyering  <meyering@redhat.com>
16653
16654         Avoid link failure for the argmatch test.
16655         * tests/test-argmatch.c (usage): Define function to avoid a link
16656         failure: argmatch_die requires a usage function.
16657
16658 2007-11-09  Bruno Haible  <bruno@clisp.org>
16659
16660         * doc/functions/snprintf.texi: Mention BeOS deficiency.
16661         * doc/functions/vsnprintf.texi: Likewise.
16662         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
16663         with a size argument < 2.
16664
16665 2007-11-09  Bruno Haible  <bruno@clisp.org>
16666
16667         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
16668         buffer. Fixes an inefficiency introduced on 2007-11-03.
16669
16670 2007-11-09  Bruno Haible  <bruno@clisp.org>
16671
16672         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
16673         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
16674
16675 2007-11-08  Jim Meyering  <meyering@redhat.com>
16676
16677         Change cache variable name prefix "jm_" to "gl_" everywhere.
16678         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
16679         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
16680         * m4/uptime.m4: s/gl_/jm_/
16681
16682 2007-11-07  Bruno Haible  <bruno@clisp.org>
16683
16684         Update to GNU gettext 0.17.
16685         * m4/intl.m4: Update to GNU gettext 0.17.
16686         * m4/po.m4: Likewise.
16687         * modules/gettext (Files): Remove m4/ulonglong.m4.
16688         (configure.ac): Require gettext infrastructure from version 0.17.
16689
16690 2007-11-06  Bruno Haible  <bruno@clisp.org>
16691
16692         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
16693         symbolic values are not defined in a public header.
16694         * lib/freadable.c (freadable) [QNX]: Likewise.
16695         * lib/freadahead.c (freadahead) [QNX]: Likewise.
16696         * lib/freading.c (freading) [QNX]: Likewise.
16697         * lib/fseterr.c (fseterr) [QNX]: Likewise.
16698         * lib/fwritable.c (fwritable) [QNX]: Likewise.
16699         * lib/fwriting.c (fwriting) [QNX]: Likewise.
16700         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
16701         Reported by Alain Magloire.
16702
16703         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
16704
16705 2007-11-05  Bruno Haible  <bruno@clisp.org>
16706
16707         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
16708         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
16709         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
16710         Reported by Eric Blake.
16711
16712 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16713             Bruno Haible  <bruno@clisp.org>
16714
16715         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
16716         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
16717         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
16718         (malloc): Undefine also before including <stdlib.h>.
16719         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
16720         Needed on OSF/1 4.0.
16721
16722 2007-11-05  Jim Meyering  <meyering@redhat.com>
16723
16724         git-version-gen: sync from coreutils.
16725         * build-aux/git-version-gen: Add comments.
16726         Change the first '-' to '.' in the snapshot version string,
16727         e.g., 6.9-377-08144 -> 6.9.377-08144
16728         Remove first parameter.
16729         Don't declare a version "-dirty" merely because a time
16730         stamp has changed.
16731
16732 2007-11-04  Bruno Haible  <bruno@clisp.org>
16733
16734         * lib/lock.h: Protect all macro definitions containing an 'if'
16735         statement through a "do { ... } while (0)".
16736         * lib/tls.h: Likewise.
16737
16738 2007-11-04  Bruno Haible  <bruno@clisp.org>
16739
16740         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
16741
16742 2007-11-04  Bruno Haible  <bruno@clisp.org>
16743
16744         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
16745         * modules/fprintf-posix (Depends-on): Add nocrash.
16746         * modules/snprintf-posix (Depends-on): Likewise.
16747         * modules/sprintf-posix (Depends-on): Likewise.
16748         * modules/vasnprintf-posix (Depends-on): Likewise.
16749         * modules/vasprintf-posix (Depends-on): Likewise.
16750         * modules/vfprintf-posix (Depends-on): Likewise.
16751         * modules/vsnprintf-posix (Depends-on): Likewise.
16752         * modules/vsprintf-posix (Depends-on): Likewise.
16753         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
16754         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
16755         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
16756         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
16757         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
16758         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
16759         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
16760
16761 2007-11-04  Bruno Haible  <bruno@clisp.org>
16762
16763         * modules/nocrash: New file.
16764         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
16765         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
16766
16767 2007-11-04  Bruno Haible  <bruno@clisp.org>
16768
16769         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
16770         precision handling.
16771         * tests/test-vasprintf-posix.c (test_function): Likewise.
16772         * tests/test-snprintf-posix.h (test_function): Likewise.
16773         * tests/test-sprintf-posix.h (test_function): Likewise.
16774
16775         Fix *printf behaviour for large precisions on mingw and BeOS.
16776         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
16777         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
16778         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
16779         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16780         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16781         gl_PRINTF_PRECISION and test its result. Invoke
16782         gl_PREREQ_VASNPRINTF_PRECISION.
16783         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16784         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16785         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16786         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16787         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16788         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16789         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16790         * doc/functions/fprintf.texi: Update.
16791         * doc/functions/printf.texi: Update.
16792         * doc/functions/snprintf.texi: Update.
16793         * doc/functions/sprintf.texi: Update.
16794         * doc/functions/vfprintf.texi: Update.
16795         * doc/functions/vprintf.texi: Update.
16796         * doc/functions/vsnprintf.texi: Update.
16797         * doc/functions/vsprintf.texi: Update.
16798
16799 2007-11-04  Bruno Haible  <bruno@clisp.org>
16800
16801         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
16802
16803 2007-11-04  Bruno Haible  <bruno@clisp.org>
16804
16805         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
16806         Reported by Sylvain Beucler <beuc@gnu.org>.
16807
16808 2007-11-03  Bruno Haible  <bruno@clisp.org>
16809
16810         * tests/test-fprintf-posix2.sh: New file.
16811         * tests/test-fprintf-posix2.c: New file.
16812         * modules/fprintf-posix-tests (Files): Add them.
16813         (TESTS): Add test-fprintf-posix2.sh.
16814         (configure.ac): Check for getrlimit and setrlimit.
16815         (check_PROGRAMS): Add test-fprintf-posix2.
16816
16817         * tests/test-printf-posix2.sh: New file.
16818         * tests/test-printf-posix2.c: New file.
16819         * modules/printf-posix-tests (Files): Add them.
16820         (TESTS): Add test-printf-posix2.sh.
16821         (configure.ac): Check for getrlimit and setrlimit.
16822         (check_PROGRAMS): Add test-printf-posix2.
16823
16824         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
16825         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
16826         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
16827         (decode_double): New function, copied from decode_long_double.
16828         (scale10_round_decimal_decoded): New function, extracted from
16829         scale10_round_decimal_long_double.
16830         (scale10_round_decimal_long_double): Use it.
16831         (scale10_round_decimal_double): New function.
16832         (floorlog10): New function.
16833         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
16834         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
16835         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16836         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16837         gl_PRINTF_ENOMEM and test its result. Invoke
16838         gl_PREREQ_VASNPRINTF_ENOMEM.
16839         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16840         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16841         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16842         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16843         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16844         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16845         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16846         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
16847         * modules/snprintf-posix (Depends-on): Likewise.
16848         * modules/sprintf-posix (Depends-on): Likewise.
16849         * modules/vasnprintf-posix (Depends-on): Likewise.
16850         * modules/vasprintf-posix (Depends-on): Likewise.
16851         * modules/vfprintf-posix (Depends-on): Likewise.
16852         * modules/vsnprintf-posix (Depends-on): Likewise.
16853         * modules/vsprintf-posix (Depends-on): Likewise.
16854         * doc/functions/fprintf.texi: Update.
16855         * doc/functions/printf.texi: Update.
16856         * doc/functions/snprintf.texi: Update.
16857         * doc/functions/sprintf.texi: Update.
16858         * doc/functions/vfprintf.texi: Update.
16859         * doc/functions/vprintf.texi: Update.
16860         * doc/functions/vsnprintf.texi: Update.
16861         * doc/functions/vsprintf.texi: Update.
16862
16863 2007-11-03  Bruno Haible  <bruno@clisp.org>
16864
16865         * modules/frexp-nolibm-tests: New file.
16866
16867         * modules/frexp-nolibm: New file.
16868         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
16869
16870 2007-11-03  Bruno Haible  <bruno@clisp.org>
16871
16872         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
16873         value is C99 compliant.
16874         Needed for OSF/1 5.1.
16875
16876 2007-11-03  Bruno Haible  <bruno@clisp.org>
16877
16878         Fix out-of-memory handling of vasnprintf.
16879         * lib/printf-parse.c: Include <errno.h>.
16880         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
16881         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
16882         is already set.
16883
16884 2007-11-02  Eric Blake  <ebb9@byu.net>
16885
16886         Fix tests on cygwin.
16887         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
16888
16889 2007-11-01  Bruno Haible  <bruno@clisp.org>
16890
16891         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
16892         warning.
16893         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
16894         needed for POSIX compatibility.
16895
16896 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
16897
16898         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
16899         for compatibility with GNU.
16900
16901 2007-11-01  Bruno Haible  <bruno@clisp.org>
16902
16903         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
16904         (putenv): Renamed from rpl_putenv. Change argument type from
16905         'const char *' to 'char *'.
16906         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
16907         of defining putenv in config.h, just set REPLACE_PUTENV.
16908         * modules/putenv (Depends-on): Add stdlib.
16909         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
16910         (Include): Use <stdlib.h>.
16911         * lib/stdlib.in.h (putenv): New declaration.
16912         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
16913         REPLACE_PUTENV.
16914         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
16915         REPLACE_PUTENV.
16916         Needed for MacOS X 10.5.0.
16917         Reported by Peter O'Gorman <peter@pogma.com>.
16918
16919 2007-11-01  Jim Meyering  <meyering@redhat.com>
16920
16921         Treat an empty date string exactly like "0".
16922         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
16923         if the remaining date string (to be parsed) is empty, use "0".
16924         Reported by Mischa Molhoek and discussed in this thread:
16925         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
16926
16927 2007-10-31  Bruno Haible  <bruno@clisp.org>
16928
16929         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
16930         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
16931         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
16932         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
16933         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
16934         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
16935
16936 2007-10-31  Bruno Haible  <bruno@clisp.org>
16937
16938         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
16939         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
16940         (AC_TYPE_LONG_LONG_INT): Use it.
16941         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
16942         it as well.
16943         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
16944         to m4/longlong.m4.
16945         * modules/stdint (Files): Remove m4/ulonglong.m4.
16946         * modules/strtoull (Files): Use m4/longlong.m4 instead of
16947         m4/ulonglong.m4.
16948         * modules/strtoumax (Files): Likewise.
16949
16950 2007-10-30  Bruno Haible  <bruno@clisp.org>
16951
16952         * modules/xvasprintf-posix: New file.
16953         Suggested by Eric Blake.
16954
16955 2007-10-30  Bruno Haible  <bruno@clisp.org>
16956
16957         * modules/xprintf-posix-tests: New file.
16958         * tests/test-xprintf-posix.sh: New file.
16959         * tests/test-xprintf-posix.c: New file.
16960         * tests/test-xfprintf-posix.c: New file.
16961
16962         * modules/xprintf-posix: New file.
16963
16964 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16965
16966         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
16967         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
16968         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
16969
16970 2007-10-29  Bruno Haible  <bruno@clisp.org>
16971
16972         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
16973         contain the special marker '_cv_'.
16974         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
16975         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
16976         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
16977         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
16978         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
16979         Reported by Ralf Wildenhues.
16980
16981 2007-10-29  Bruno Haible  <bruno@clisp.org>
16982
16983         * gnulib-tool (func_import): When --lgpl is not specified, set
16984         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
16985         GPLv3.
16986         Reported by Simon Josefsson.
16987
16988 2007-10-28  Bruno Haible  <bruno@clisp.org>
16989
16990         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
16991         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
16992         HAVE_DECL_ISFINITE.
16993         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
16994         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
16995         HAVE_DECL_ISFINITE.
16996
16997 2007-10-28  Bruno Haible  <bruno@clisp.org>
16998
16999         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
17000         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
17001
17002 2007-10-28  Bruno Haible  <bruno@clisp.org>
17003
17004         Fix link errors with Sun C 5.0 on Solaris 10.
17005         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
17006         function is declared but not present in the compiler's libm.
17007         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
17008         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
17009         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
17010         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
17011         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
17012         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
17013         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
17014         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
17015         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
17016         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
17017         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
17018         HAVE_DECL_FLOORL.
17019
17020 2007-10-28  Bruno Haible  <bruno@clisp.org>
17021
17022         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
17023         gl_FUNC_FLOORL. Cache the result.
17024         (gl_FUNC_FLOORL): Use it.
17025         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
17026         gl_FUNC_CEILL. Cache the result.
17027         (gl_FUNC_CEILL): Use it.
17028
17029         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
17030         gl_FUNC_FLOOR. Cache the result.
17031         (gl_FUNC_FLOOR): Use it.
17032         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
17033         gl_FUNC_CEIL. Cache the result.
17034         (gl_FUNC_CEIL): Use it.
17035
17036         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
17037         gl_FUNC_FLOORF. Cache the result.
17038         (gl_FUNC_FLOORF): Use it.
17039         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
17040         gl_FUNC_CEILF. Cache the result.
17041         (gl_FUNC_CEILF): Use it.
17042
17043 2007-10-28  Bruno Haible  <bruno@clisp.org>
17044
17045         * gnulib-tool: Allow specifying the LGPL version number through
17046         --lgpl=2 or --lgpl=3.
17047         (func_usage): Document --lgpl with argument.
17048         Handle --lgpl=... arguments.
17049         (func_import): Recognize also gl_LGPL calls with an argument. When
17050         --lgpl=2 is used and the module's license is just LGPL, report an
17051         error. Set sed_transform_lib_file according to the lgpl variable. In
17052         the generated files, use --lgpl or gl_LGPL invocations with argument,
17053         if necessary.
17054         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
17055         an LGPv2+ license.
17056         * doc/gnulib-tool.texi (Modified imports): Update explanation of
17057         gl_LGPL macro.
17058
17059 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17060             Bruno Haible  <bruno@clisp.org>
17061
17062         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
17063         (u16_uctomb_aux): Likewise.
17064         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
17065         !HAVE_INLINE.
17066         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
17067
17068 2007-10-28  Bruno Haible  <bruno@clisp.org>
17069
17070         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
17071         Invoke AM_GETTEXT_OPTION if it exists.
17072         * modules/vasprintf: Likewise.
17073         * modules/verror: Likewise.
17074         * modules/xprintf: Likewise.
17075         * modules/xvasprintf: Likewise.
17076
17077 2007-10-27  Ben Pfaff  <blp@gnu.org>
17078
17079         * lib/math.in.h: Define isfinite macro and prototypes for
17080         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
17081         implementations.
17082         * m4/math_h.m4: New substitutions for isfinite module.
17083         * lib/isfinite.c: New file.
17084         * m4/isfinite.m4: New file.
17085         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
17086         * modules/isfinite: New file.
17087         * modules/isfinite-tests: New file.
17088         * tests/tests-isfinite.c: New file.
17089         * doc/functions/isfinite.texi: Mention isfinite module.
17090         * MODULES.html.sh: Mention new module.
17091
17092 2007-10-27  Ben Pfaff  <blp@gnu.org>
17093
17094         Ralf Wildenhues reported that Tru64 4.0D declares the round
17095         functions but does not have definitions.
17096         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
17097         cannot be found in any library, set the output variable to
17098         "missing" instead of "".
17099         * m4/round.m4: Also use our substitute if we cannot find round in
17100         any library, even if it is declared.
17101         * m4/roundf.m4: Likewise for roundf.
17102         * m4/roundl.m4: Likewise for roundl.
17103         * lib/math.in.h: Undefine roundf, round, roundl before defining
17104         their replacements, to allow for hypothetical systems where these
17105         may be defined as macros but not available in libraries.
17106
17107 2007-10-27  Bruno Haible  <bruno@clisp.org>
17108
17109         * doc/gnulib.texi: Invoke @firstparagraphindent.
17110         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
17111         changes in gnulib.
17112         (Source changes): New section.
17113
17114 2007-10-26  Bruno Haible  <bruno@clisp.org>
17115
17116         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
17117         borrowed from autoconf.
17118
17119 2007-10-26  Bruno Haible  <bruno@clisp.org>
17120
17121         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
17122         strerror returned the empty string. Needed on HP-UX 11.00.
17123
17124 2007-10-24  Micah Cowan  <micah@cowan.name>
17125
17126         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
17127         * build-aux/bootstrap: Remove support for now-unnecessary option,
17128         --cvs-user, and envvars CVS_USER, CVS_RSH.
17129
17130 2007-10-24  Jim Meyering  <meyering@redhat.com>
17131
17132         Avoid diagnostics from sha1sum when there is no cached checksum.
17133         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
17134         if the po.s1 file hasn't been created yet.
17135
17136         * build-aux/bootstrap: Sync from coreutils:
17137         2007-10-24  Jim Meyering  <meyering@redhat.com>
17138         Get gnulib from the git repository, not from an obsolete cvs one.
17139         * build-aux/bootstrap: Suggestion from Micah Cowan.
17140         2007-10-04  Jim Meyering  <jim@meyering.net>
17141         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
17142         (update_po_files): Work also when there are no .po files in po/.
17143
17144 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
17145
17146         * README: Append ".git" to git and cg examples.
17147         Problem reported by Benoit Sigoure.
17148
17149 2007-10-23  Micah Cowan  <micah@cowan.name>
17150
17151         * users.txt: Add wget.
17152
17153 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17154
17155         Fix linking of some unistdio tests on FreeBSD.
17156         * modules/unistdio/u16-vsnprintf-tests
17157         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
17158         * modules/unistdio/u16-vsprintf-tests
17159         (test_u16_vsnprintf1_LDADD): Likewise.
17160         * modules/unistdio/u32-vsnprintf-tests
17161         (test_u32_vsnprintf1_LDADD): Likewise.
17162         * modules/unistdio/u32-vsprintf-tests
17163         (test_u32_vsprintf1_LDADD): Likewise.
17164         * modules/unistdio/u8-vsnprintf-tests
17165         (test_u8_vsnprintf1_LDADD): Likewise.
17166         * modules/unistdio/u8-vsprintf-tests
17167         (test_u8_vsprintf1_LDADD): Likewise.
17168         * modules/unistdio/ulc-vsnprintf-tests
17169         (test_ulc_vsnprintf1_LDADD): Likewise.
17170         * modules/unistdio/ulc-vsprintf-tests
17171         (test_ulc_vsprintf1_LDADD): Likewise.
17172
17173         Fix linking of some uniconv tests on FreeBSD.
17174         * modules/uniconv/u16-conv-from-enc-tests
17175         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
17176         * modules/uniconv/u16-conv-to-enc-tests
17177         (test_u16_conv_to_enc_LDADD): Likewise.
17178         * modules/uniconv/u16-strconv-from-enc-tests
17179         (test_u16_strconv_from_enc_LDADD): Likewise.
17180         * modules/uniconv/u16-strconv-to-enc-tests
17181         (test_u16_strconv_to_enc_LDADD): Likewise.
17182         * modules/uniconv/u32-conv-from-enc-tests
17183         (test_u32_conv_from_enc_LDADD): Likewise.
17184         * modules/uniconv/u32-conv-to-enc-tests
17185         (test_u32_conv_to_enc_LDADD): Likewise.
17186         * modules/uniconv/u32-strconv-from-enc-tests
17187         (test_u32_strconv_from_enc_LDADD): Likewise.
17188         * modules/uniconv/u32-strconv-to-enc-tests
17189         (test_u32_strconv_to_enc_LDADD): Likewise.
17190         * modules/uniconv/u8-conv-from-enc-tests
17191         (test_u8_conv_from_enc_LDADD): Likewise.
17192         * modules/uniconv/u8-conv-to-enc-tests
17193         (test_u8_conv_to_enc_LDADD): Likewise.
17194         * modules/uniconv/u8-strconv-from-enc-tests
17195         (test_u8_strconv_from_enc_LDADD): Likewise.
17196         * modules/uniconv/u8-strconv-to-enc-tests
17197         (test_u8_strconv_to_enc_LDADD): Likewise.
17198
17199 2007-10-22  Bruno Haible  <bruno@clisp.org>
17200
17201         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
17202         size.
17203
17204 2007-10-22  Eric Blake  <ebb9@byu.net>
17205
17206         Tweak x*printf documentation.
17207         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
17208         variable name and comments.
17209         Suggested by Bruno Haible.
17210
17211 2007-10-22  Bruno Haible  <bruno@clisp.org>
17212
17213         * lib/acl.c (copy_acl): Fix file name in comment.
17214
17215 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
17216
17217         Fix Tru64 problem with stdbool.h.
17218         * lib/stdbool.in.h (false, true):
17219         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
17220         Don't declare as an enum in this situation; it runs afoul of Tru64.
17221         Problem reported by Steven M. Schweda in
17222         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
17223
17224 2007-10-22  Eric Blake  <ebb9@byu.net>
17225
17226         Also wrap vf?printf.
17227         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
17228         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
17229         (xvprintf, xvfprintf): New functions.
17230
17231 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17232
17233         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
17234         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
17235
17236         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
17237         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
17238
17239 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
17240
17241         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
17242         by Bruno Haible.
17243
17244 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17245
17246         * lib/getloadavg.c
17247         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
17248         Undef `sys' after including sys/table.h, for Tru64 4.0D.
17249
17250         * tests/test-i-ring.c: Work for C89.
17251
17252 2007-10-22  Bruno Haible  <bruno@clisp.org>
17253
17254         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
17255         -1u, in preprocessor expression, so that we don't test for the bug
17256         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
17257         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
17258
17259 2007-10-22  Eric Blake  <ebb9@byu.net>
17260
17261         * tests/test-yesno.sh: Silence stderr during test.
17262
17263 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17264
17265         * modules/crypto/gc-camellia: New file.
17266
17267         * m4/gc-camellia.m4: New file.
17268
17269         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
17270
17271         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
17272
17273 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17274
17275         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
17276         --help to stdout.  Reported by sms@antinode.org (Steven
17277         M. Schweda).
17278
17279 2007-10-22  Simon Josefsson  <simon@josefsson.org>
17280
17281         * users.txt: Fix link to libksba.
17282
17283 2007-10-21  Ben Pfaff  <blp@gnu.org>
17284
17285         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
17286         round.c roundf implementation that depends on floorf and ceilf to
17287         be tested unconditionally.
17288
17289 2007-10-21  Ben Pfaff  <blp@gnu.org>
17290
17291         * m4/check-libm-func.m4: Removed.
17292         * m4/check-math-lib.m4: New file.
17293         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
17294         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
17295         definition and lack of AC_LIBOBJ([roundf]).
17296         * m4/roundl.m4: Ditto, and similarly for roundl.
17297         * modules/round: Reference new m4 file.
17298         * modules/roundf: Ditto.
17299         * modules/roundl: Ditto.
17300         * tests/test-round2.c (main): Use ROUND instead of round.
17301         Bug report from Bruno Haible.
17302
17303 2007-10-21  Bruno Haible  <bruno@clisp.org>
17304
17305         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
17306         context.
17307
17308 2007-10-21  Bruno Haible  <bruno@clisp.org>
17309
17310         * tests/test-wcwidth.c (main): Allow negative result for some control
17311         characters.
17312
17313         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
17314         Needed on OSF/1 5.1.
17315
17316 2007-10-21  Bruno Haible  <bruno@clisp.org>
17317
17318         * tests/test-floorf1.c: Include isnanf.h.
17319         (main): Use isnanf() instead of isnan().
17320         * tests/test-ceilf1.c: Include isnanf.h.
17321         (main): Use isnanf() instead of isnan().
17322         * tests/test-truncf1.c: Include isnanf.h.
17323         (main): Use isnanf() instead of isnan().
17324         * tests/test-roundf1.c: Include isnanf.h.
17325         (main): Use isnanf() instead of isnan().
17326
17327 2007-10-21  Eric Blake  <ebb9@byu.net>
17328
17329         * users.txt: Update URL for m4.
17330
17331 2007-10-21  Bruno Haible  <bruno@clisp.org>
17332
17333         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
17334
17335 2007-10-21  Bruno Haible  <bruno@clisp.org>
17336
17337         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
17338         Git's management files if the CVS files are not present.
17339
17340 2007-10-20  Bruno Haible  <bruno@clisp.org>
17341
17342         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
17343         gcc-3.4.x.
17344
17345 2007-10-20  Ben Pfaff  <blp@gnu.org>
17346
17347         * lib/math.in.h: Declare round, roundf, roundl if we are providing
17348         implementations.
17349         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
17350         * lib/round.c: New file.
17351         * lib/roundf.c: New file.
17352         * lib/roundl.c: New file.
17353         * m4/round.m4: New file.
17354         * m4/roundf.m4: New file.
17355         * m4/roundl.m4: New file.
17356         * m4/check-libm-func-m4: New file.
17357         * modules/math: Replace round, roundf, roundl related @VARS@ in
17358         math.in.h.
17359         * modules/round: New file.
17360         * modules/round-tests: New file.
17361         * modules/roundf: New file.
17362         * modules/roundf-tests: New file.
17363         * modules/roundl: New file.
17364         * modules/roundl-tests: New file.
17365         * tests/test-round1.c: New file.
17366         * tests/test-round2.c: New file.
17367         * tests/test-roundf1.c: New file.
17368         * tests/test-roundf2.c: New file.
17369         * tests/test-roundl.c: New file.
17370         * doc/functions/round.texi: Mention round module.
17371         * doc/functions/roundf.texi: Mention roundf module.
17372         * doc/functions/roundl.texi: Mention roundl module.
17373         * MODULES.html.sh: Mention new modules.
17374         Thanks to Bruno Haible for suggestions.
17375
17376 2007-10-20  Jim Meyering  <meyering@redhat.com>
17377
17378         * lib/xprintf.c: Include <config.h> unconditionally.
17379
17380         Change xprintf's license to GPL.
17381         * modules/xprintf (License): s/LGPL/GPL/, since this module
17382         depends on modules (exit and exitfail) which are GPL.
17383         Suggestion from Bruno Haible.
17384
17385         xprintf fixes.
17386         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
17387         Use a clearer diagnostic.
17388         Patch from Bruno Haible.
17389
17390 2007-10-20  Bruno Haible  <bruno@clisp.org>
17391
17392         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
17393         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
17394         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17395
17396 2007-10-20  Bruno Haible  <bruno@clisp.org>
17397
17398         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
17399         precision in the comparison result > x - 1 or similar.
17400         * tests/test-ceilf2.c (correct_result_p): Likewise.
17401         * tests/test-truncf2.c (correct_result_p): Likewise.
17402         * tests/test-trunc2.c (correct_result_p): Likewise.
17403         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17404
17405 2007-10-20  Bruno Haible  <bruno@clisp.org>
17406
17407         * modules/ceil: New file.
17408         * m4/ceil.m4: New file.
17409         * doc/functions/ceil.texi: Mention the 'ceil' module.
17410
17411 2007-10-20  Bruno Haible  <bruno@clisp.org>
17412
17413         * modules/floor: New file.
17414         * m4/floor.m4: New file.
17415         * doc/functions/floor.texi: Mention the 'floor' module.
17416
17417 2007-10-20  Bruno Haible  <bruno@clisp.org>
17418
17419         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
17420         of %a.
17421         * modules/floorf-tests (Depends-on): Likewise.
17422         * modules/truncf-tests (Depends-on): Likewise.
17423         * modules/trunc-tests (Depends-on): Likewise.
17424         Reported by Ben Pfaff.
17425
17426 2007-10-19  Jim Meyering  <meyering@redhat.com>
17427
17428         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
17429         Don't bother testing specific errno values.  Just test ferror.
17430
17431         New module: xprintf
17432         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
17433
17434 2007-10-19  Bruno Haible  <bruno@clisp.org>
17435
17436         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
17437         syntax.
17438         * modules/javaexec (Makefile.am): Likewise.
17439         * modules/relocatable-prog (Makefile.am): Likewise.
17440         Suggested by Jim Meyering.
17441
17442 2007-10-18  Bruno Haible  <bruno@clisp.org>
17443
17444         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
17445         Reported by Jim Meyering.
17446
17447 2007-10-18  Eric Blake  <ebb9@byu.net>
17448
17449         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
17450
17451 2007-10-18  Bruno Haible  <bruno@clisp.org>
17452
17453         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
17454         the format string into writable memory. Needed in Fortify conditions.
17455
17456 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
17457             Bruno Haible  <bruno@clisp.org>
17458
17459         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
17460         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
17461         * modules/trim (Depends-on): Add mbchar.
17462         (configure.ac): Add gl_FUNC_MBRTOWC.
17463         (Makefile.am): Augment lib_SOURCES.
17464
17465 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
17466
17467         Modify glob.c to use fstatat and dirfd, to simplify it.
17468         Suggested by Eric Blake.
17469         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
17470         Don't include <stdbool.h>; not used.
17471         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
17472         (link_exists_p): Simplify implementation, since we can now assume
17473         dirfd and fstatat.
17474         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
17475
17476 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17477
17478         * gnulib-tool (func_get_dependencies): Fix sed script to
17479         match only tests.
17480
17481 2007-10-17  Bruno Haible  <bruno@clisp.org>
17482
17483         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
17484         allow locale names without encoding suffix.
17485         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
17486         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
17487
17488 2007-10-16  Bruno Haible  <bruno@clisp.org>
17489
17490         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
17491         * lib/getgroups.c (getgroups): Likewise.
17492         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
17493
17494 2007-10-16  Bruno Haible  <bruno@clisp.org>
17495
17496         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
17497         * modules/malloc-posix (License): Likewise.
17498         * modules/realloc-posix (License): Likewise.
17499         * modules/calloc-posix (License): Likewise.
17500         * modules/intprops (License): Change from GPL to LGPL, with
17501         Paul Eggert's approval.
17502
17503 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
17504
17505         Merge glibc changes into lib/glob.c.
17506
17507         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
17508         2007-10-15 04:59:03 UTC.  Here are the changes:
17509
17510         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
17511
17512         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
17513
17514         * lib/glob.c: Add some branch prediction throughout.
17515
17516         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
17517
17518         [BZ #5103]
17519         * lib/glob.c (glob): Recognize patterns starting \/.
17520
17521         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
17522
17523         [BZ #3996]
17524         * lib/glob.c (attribute_hidden): Define if not defined.
17525         (glob): Unescape dirname, filename or username when needed and not
17526         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
17527         is NULL.  Handle unescaped [ in pattern without closing ].
17528         Don't pass GLOB_CHECK down to recursive glob for directories.
17529         (__glob_pattern_type): New function.
17530         (__glob_pattern_p): Implement using __glob_pattern_type.
17531         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
17532         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
17533         Remove unreachable code.
17534
17535         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
17536
17537         * lib/glob.c (glob_in_dir): Add some comments and asserts to
17538         explain why there are no leaks.
17539
17540         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
17541
17542         [BZ #3253]
17543         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
17544         time, rather allocate increasingly bigger arrays of pointers, if
17545         possible with alloca, if too large with malloc.
17546
17547 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
17548
17549         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
17550         Problem reported by H.Merijn Brand in
17551         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
17552         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
17553         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
17554
17555 2007-10-15  Bruno Haible  <bruno@clisp.org>
17556
17557         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
17558         with explicit rpl_ prefix.
17559         * lib/fopen.c (fopen): Likewise.
17560         * lib/freopen.c (freopen): Likewise.
17561         * lib/iconv.c (iconv): Likewise.
17562         * lib/iconv_close.c (iconv_close): Likewise.
17563
17564 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17565
17566         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
17567
17568 2007-10-15  Bruno Haible  <bruno@clisp.org>
17569
17570         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
17571         <stddef.h> instead of <stdlib.h> since we only need NULL.
17572         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17573
17574 2007-10-15  Bruno Haible  <bruno@clisp.org>
17575
17576         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
17577         Replace paragraph talking about LIBOBJS.
17578         Reported by Colin Watson <cjwatson@debian.org>.
17579
17580 2007-10-15  Bruno Haible  <bruno@clisp.org>
17581
17582         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
17583         <stdlib.h> before using NULL.
17584
17585 2007-10-15  Simon Josefsson  <simon@josefsson.org>
17586
17587         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
17588         Reported by Albert Chin <china@thewrittenword.com>.
17589
17590 2007-10-14  Bruno Haible  <bruno@clisp.org>
17591
17592         * modules/iconv_open-utf-tests: New file.
17593         * tests/test-iconv-utf.c: New file.
17594
17595         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
17596         * modules/iconv_open-utf: New file.
17597         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
17598         (iconv, iconv_close): New declarations.
17599         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
17600         be defined.
17601         (iconv_open): Add special handling of conversion between UTF-8 and
17602         UTF-{16,32}{BE,LE}.
17603         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
17604         * lib/iconv_close.c: New file.
17605         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
17606         gl_FUNC_ICONV_OPEN.
17607         (gl_FUNC_ICONV_OPEN): Use it.
17608         (gl_FUNC_ICONV_OPEN_UTF): New macro.
17609         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
17610         and REPLACE_ICONV_UTF.
17611         * modules/iconv_open (Depends-on): Add c-strcase.
17612         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
17613         ICONV_CONST.
17614         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
17615
17616 2007-10-13  Albert Chin  <china@thewrittenword.com>
17617             Bruno Haible  <bruno@clisp.org>
17618
17619         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
17620         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
17621
17622 2007-10-13  Bruno Haible  <bruno@clisp.org>
17623
17624         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
17625         defined, use the ISO C99 inline semantics.
17626         * lib/argp.h (ARGP_EI): Likewise.
17627
17628 2007-10-13  Bruno Haible  <bruno@clisp.org>
17629
17630         Handle 'inline' change in gcc 4.3.0.
17631         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
17632         argp_fmtstream_write, argp_fmtstream_set_lmargin,
17633         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
17634         argp_fmtstream_point): Disable 'extern' declaration if the function
17635         definition is going to be provided inline.
17636         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
17637         semantics, not the ISO C99 inline semantics.
17638         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
17639         'extern' declaration if the function definition is going to be provided
17640         inline.
17641         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
17642         the GNU C inline semantics, not the ISO C99 inline semantics. With
17643         GCC 4.2, avoid a warning.
17644
17645 2007-10-13  Bruno Haible  <bruno@clisp.org>
17646
17647         * lib/freading.h (freading): Enable the use of __freading for
17648         glibc >= 2.7.
17649         * lib/freading.c (freading): Likewise.
17650
17651 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17652
17653         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
17654         "warning: C99 inline functions are not supported; using GNU89".
17655
17656 2007-10-12  Bruno Haible  <bruno@clisp.org>
17657
17658         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
17659         of 2.
17660         * tests/test-ceilf2.c: New file.
17661         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
17662
17663         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
17664         * modules/ceilf-tests: Update.
17665
17666 2007-10-12  Bruno Haible  <bruno@clisp.org>
17667
17668         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
17669         of 2.
17670         * tests/test-floorf2.c: New file.
17671         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
17672
17673         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
17674         * modules/floorf-tests: Update.
17675
17676 2007-10-12  Bruno Haible  <bruno@clisp.org>
17677
17678         * tests/test-trunc2.c: New file.
17679         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
17680
17681         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
17682         * modules/trunc-tests: Update.
17683
17684 2007-10-12  Bruno Haible  <bruno@clisp.org>
17685
17686         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
17687         of 2.
17688         * tests/test-truncf2.c: New file.
17689         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
17690
17691         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
17692         * modules/truncf-tests: Update.
17693
17694 2007-10-11  Eric Blake  <ebb9@byu.net>
17695
17696         Don't claim strerror is broken on Interix.
17697         * doc/functions/strerror.texi (strerror): Known broken systems are
17698         now Solaris 8, and not Interix.
17699         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
17700         Interix on cross-compile.
17701         Reported by Martin Koeppe in
17702         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
17703
17704 2007-10-11  Bruno Haible  <bruno@clisp.org>
17705
17706         * modules/i-ring-tests: New file.
17707         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
17708         instead of assert.
17709
17710 2007-10-11  Bruno Haible  <bruno@clisp.org>
17711
17712         * modules/filenamecat-tests: New file.
17713         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
17714         * lib/filenamecat.c: Remove test code.
17715
17716 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17717
17718         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
17719
17720         * lib/strerror.c: Include <string.h> always, to test interface,
17721         and to remove the need for the dummy.
17722         Include intprops.h to compute width instead of doing it ourselves
17723         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
17724         (strerror): Define it to return NULL if there's no system strerror.
17725         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
17726         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
17727         ancient pre-strerror Unix systems well any more.  Saying "unknown
17728         system error" is enough.
17729         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
17730         simpler strerror.c implementation.
17731         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
17732         Simplify the tests to reflect the simpler strerror implementation.
17733         * modules/strerror (Depends-on): Add intprops.
17734
17735 2007-10-09  Eric Blake  <ebb9@byu.net>
17736
17737         Silence test-fpending.
17738         * modules/fpending-tests (Files): Add wrapper script.
17739         * tests/test-fpending.sh: New file.
17740
17741 2007-10-09  Bruno Haible  <bruno@clisp.org>
17742
17743         * MODULES.html.sh (func_module): Don't create a hyperlink for
17744         function names like 'printf_frexp'.
17745         (Misc): Add crc, memxor.
17746         (Characteristics of floating types): New section.
17747         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
17748         isnanf-nolibm, signbit, trunc, truncf, truncl.
17749         (Enhancements for ISO C 99 functions): New subsection Input/output.
17750         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
17751         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
17752         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
17753         (Compatibility checks for POSIX:2001 functions): Add clock-time.
17754         (Enhancements for POSIX:2001 functions): Add chdir-long.
17755         (File system functions): Add areadlink, chdir-safer, read-file.
17756         Remove cycle-check.
17757         (File system as inode set): New section.
17758         (Date and time): Add gethrxtime.
17759         (Multithreading): Add openmp.
17760         (Internationalization functions): Add localename.
17761         (Unicode string functions): Add unistr/u*-mbsnlen.
17762         (Support for maintaining and releasing projects): Add git-version-gen.
17763         (Lone files): Remove directories.
17764
17765 2007-10-08  Ben Pfaff  <blp@gnu.org>
17766
17767         * lib/xmalloca.h: Fix typo in comment.
17768
17769 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
17770
17771         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
17772         when avoiding problems with integer overflow.  Use a portable test
17773         instead.
17774
17775 2007-10-08  Simon Josefsson  <simon@josefsson.org>
17776
17777         * modules/dummy (License): Change to LGPLv2+.
17778         * modules/float (License): Likewise
17779         * modules/realloc (License): Likewise
17780         * modules/stdlib (License): Likewise
17781
17782 2007-10-07  Bruno Haible  <bruno@clisp.org>
17783
17784         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
17785         * floor.c (TWO_MANT_DIG): Likewise.
17786         * ceil.c (TWO_MANT_DIG): Likewise.
17787         Reported by Ben Pfaff.
17788
17789 2007-10-07  Bruno Haible  <bruno@clisp.org>
17790
17791         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
17792         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
17793         * lib/frexp.c (FUNC): Likewise.
17794         * lib/printf-frexp.h (printf_frexp): Likewise.
17795         * lib/printf-frexpl.h (printf_frexpl): Likewise.
17796         * lib/printf-frexp.c (FUNC): Likewise.
17797         Suggested by Jim Meyering.
17798
17799 2007-10-07  Jim Meyering  <meyering@redhat.com>
17800
17801         Make xnanosleep's integer overflow test more robust.
17802         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
17803         so that gcc-4.3.0 doesn't optimize away this test for overflow.
17804
17805 2007-10-07  Bruno Haible  <bruno@clisp.org>
17806
17807         * NEWS: Mention the license change.
17808
17809         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
17810         abbreviations in the modules files.
17811
17812         Change copyright notice from GPLv2+ to GPLv3+.
17813         * README: Change copyright notice.
17814         * MODULES.html.sh: Likewise.
17815         * build-aux/bootstrap.conf: Likewise.
17816         * build-aux/config.libpath: Likewise.
17817         * build-aux/csharpcomp.sh.in: Likewise.
17818         * build-aux/csharpexec.sh.in: Likewise.
17819         * build-aux/install-reloc: Likewise.
17820         * build-aux/javacomp.sh.in: Likewise.
17821         * build-aux/javaexec.sh.in: Likewise.
17822         * build-aux/ldd.sh.in: Likewise.
17823         * build-aux/reloc-ldflags: Likewise.
17824         * build-aux/relocatable.sh.in: Likewise.
17825         * build-aux/x-to-1.in: Likewise.
17826         * check-module: Likewise.
17827         * config/srclistvars.sh: Likewise.
17828         * gnulib-tool: Likewise.
17829         * lib/acl-internal.h: Likewise.
17830         * lib/acl.c: Likewise.
17831         * lib/acl.h: Likewise.
17832         * lib/acl_entries.c: Likewise.
17833         * lib/areadlink-with-size.c: Likewise.
17834         * lib/areadlink.c: Likewise.
17835         * lib/areadlink.h: Likewise.
17836         * lib/argmatch.c: Likewise.
17837         * lib/argmatch.h: Likewise.
17838         * lib/argp-ba.c: Likewise.
17839         * lib/argp-eexst.c: Likewise.
17840         * lib/argp-fmtstream.c: Likewise.
17841         * lib/argp-fmtstream.h: Likewise.
17842         * lib/argp-fs-xinl.c: Likewise.
17843         * lib/argp-help.c: Likewise.
17844         * lib/argp-namefrob.h: Likewise.
17845         * lib/argp-parse.c: Likewise.
17846         * lib/argp-pin.c: Likewise.
17847         * lib/argp-pv.c: Likewise.
17848         * lib/argp-pvh.c: Likewise.
17849         * lib/argp-xinl.c: Likewise.
17850         * lib/argp.h: Likewise.
17851         * lib/at-func.c: Likewise.
17852         * lib/atanl.c: Likewise.
17853         * lib/backupfile.c: Likewise.
17854         * lib/backupfile.h: Likewise.
17855         * lib/basename.c: Likewise.
17856         * lib/binary-io.h: Likewise.
17857         * lib/byteswap.in.h: Likewise.
17858         * lib/c-stack.c: Likewise.
17859         * lib/c-stack.h: Likewise.
17860         * lib/c-strcasestr.c: Likewise.
17861         * lib/c-strcasestr.h: Likewise.
17862         * lib/c-strstr.c: Likewise.
17863         * lib/c-strstr.h: Likewise.
17864         * lib/c-strtod.c: Likewise.
17865         * lib/calloc.c: Likewise.
17866         * lib/canon-host.c: Likewise.
17867         * lib/canon-host.h: Likewise.
17868         * lib/canonicalize-lgpl.c: Likewise.
17869         * lib/canonicalize.c: Likewise.
17870         * lib/canonicalize.h: Likewise.
17871         * lib/ceil.c: Likewise.
17872         * lib/ceilf.c: Likewise.
17873         * lib/ceill.c: Likewise.
17874         * lib/chdir-long.c: Likewise.
17875         * lib/chdir-long.h: Likewise.
17876         * lib/chdir-safer.c: Likewise.
17877         * lib/chdir-safer.h: Likewise.
17878         * lib/chown.c: Likewise.
17879         * lib/classpath.c: Likewise.
17880         * lib/classpath.h: Likewise.
17881         * lib/clean-temp.c: Likewise.
17882         * lib/clean-temp.h: Likewise.
17883         * lib/cloexec.c: Likewise.
17884         * lib/close-stream.c: Likewise.
17885         * lib/closein.c: Likewise.
17886         * lib/closein.h: Likewise.
17887         * lib/closeout.c: Likewise.
17888         * lib/closeout.h: Likewise.
17889         * lib/concat-filename.c: Likewise.
17890         * lib/copy-file.c: Likewise.
17891         * lib/copy-file.h: Likewise.
17892         * lib/count-one-bits.h: Likewise.
17893         * lib/crc.c: Likewise.
17894         * lib/crc.h: Likewise.
17895         * lib/creat-safer.c: Likewise.
17896         * lib/csharpcomp.c: Likewise.
17897         * lib/csharpcomp.h: Likewise.
17898         * lib/csharpexec.c: Likewise.
17899         * lib/csharpexec.h: Likewise.
17900         * lib/cycle-check.c: Likewise.
17901         * lib/cycle-check.h: Likewise.
17902         * lib/diacrit.c: Likewise.
17903         * lib/diacrit.h: Likewise.
17904         * lib/diffseq.h: Likewise.
17905         * lib/dirchownmod.c: Likewise.
17906         * lib/dirent.in.h: Likewise.
17907         * lib/dirfd.c: Likewise.
17908         * lib/dirfd.h: Likewise.
17909         * lib/dirname.c: Likewise.
17910         * lib/dirname.h: Likewise.
17911         * lib/dummy.c: Likewise.
17912         * lib/dup-safer.c: Likewise.
17913         * lib/dup2.c: Likewise.
17914         * lib/eealloc.h: Likewise.
17915         * lib/error.c: Likewise.
17916         * lib/error.h: Likewise.
17917         * lib/euidaccess.c: Likewise.
17918         * lib/exclude.c: Likewise.
17919         * lib/exclude.h: Likewise.
17920         * lib/execute.c: Likewise.
17921         * lib/execute.h: Likewise.
17922         * lib/exitfail.c: Likewise.
17923         * lib/exitfail.h: Likewise.
17924         * lib/expl.c: Likewise.
17925         * lib/fatal-signal.c: Likewise.
17926         * lib/fatal-signal.h: Likewise.
17927         * lib/fbufmode.c: Likewise.
17928         * lib/fbufmode.h: Likewise.
17929         * lib/fchdir.c: Likewise.
17930         * lib/fchmodat.c: Likewise.
17931         * lib/fchownat.c: Likewise.
17932         * lib/fcntl--.h: Likewise.
17933         * lib/fcntl-safer.h: Likewise.
17934         * lib/fcntl.in.h: Likewise.
17935         * lib/fd-safer.c: Likewise.
17936         * lib/fflush.c: Likewise.
17937         * lib/file-has-acl.c: Likewise.
17938         * lib/file-set.c: Likewise.
17939         * lib/file-type.c: Likewise.
17940         * lib/file-type.h: Likewise.
17941         * lib/fileblocks.c: Likewise.
17942         * lib/filemode.c: Likewise.
17943         * lib/filemode.h: Likewise.
17944         * lib/filename.h: Likewise.
17945         * lib/filenamecat.c: Likewise.
17946         * lib/filenamecat.h: Likewise.
17947         * lib/findprog.c: Likewise.
17948         * lib/findprog.h: Likewise.
17949         * lib/float.in.h: Likewise.
17950         * lib/floor.c: Likewise.
17951         * lib/floorf.c: Likewise.
17952         * lib/floorl.c: Likewise.
17953         * lib/fopen-safer.c: Likewise.
17954         * lib/fopen.c: Likewise.
17955         * lib/fpending.c: Likewise.
17956         * lib/fpending.h: Likewise.
17957         * lib/fprintf.c: Likewise.
17958         * lib/fprintftime.h: Likewise.
17959         * lib/fpucw.h: Likewise.
17960         * lib/fpurge.c: Likewise.
17961         * lib/fpurge.h: Likewise.
17962         * lib/freadable.c: Likewise.
17963         * lib/freadable.h: Likewise.
17964         * lib/freadahead.c: Likewise.
17965         * lib/freadahead.h: Likewise.
17966         * lib/freading.c: Likewise.
17967         * lib/freading.h: Likewise.
17968         * lib/free.c: Likewise.
17969         * lib/freopen.c: Likewise.
17970         * lib/frexp.c: Likewise.
17971         * lib/frexpl.c: Likewise.
17972         * lib/fseek.c: Likewise.
17973         * lib/fseterr.c: Likewise.
17974         * lib/fseterr.h: Likewise.
17975         * lib/fstatat.c: Likewise.
17976         * lib/fstrcmp.c: Likewise.
17977         * lib/fstrcmp.h: Likewise.
17978         * lib/fsusage.c: Likewise.
17979         * lib/fsusage.h: Likewise.
17980         * lib/ftell.c: Likewise.
17981         * lib/ftello.c: Likewise.
17982         * lib/fts-cycle.c: Likewise.
17983         * lib/fts.c: Likewise.
17984         * lib/fts_.h: Likewise.
17985         * lib/full-read.c: Likewise.
17986         * lib/full-read.h: Likewise.
17987         * lib/full-write.c: Likewise.
17988         * lib/full-write.h: Likewise.
17989         * lib/fwritable.c: Likewise.
17990         * lib/fwritable.h: Likewise.
17991         * lib/fwriteerror.c: Likewise.
17992         * lib/fwriteerror.h: Likewise.
17993         * lib/fwriting.c: Likewise.
17994         * lib/fwriting.h: Likewise.
17995         * lib/gcd.c: Likewise.
17996         * lib/gcd.h: Likewise.
17997         * lib/getcwd.c: Likewise.
17998         * lib/getdate.h: Likewise.
17999         * lib/getdate.y: Likewise.
18000         * lib/getdomainname.c: Likewise.
18001         * lib/getdomainname.h: Likewise.
18002         * lib/getgroups.c: Likewise.
18003         * lib/gethostname.c: Likewise.
18004         * lib/gethrxtime.c: Likewise.
18005         * lib/gethrxtime.h: Likewise.
18006         * lib/getloadavg.c: Likewise.
18007         * lib/getndelim2.c: Likewise.
18008         * lib/getndelim2.h: Likewise.
18009         * lib/getnline.c: Likewise.
18010         * lib/getnline.h: Likewise.
18011         * lib/getopt.c: Likewise.
18012         * lib/getopt.in.h: Likewise.
18013         * lib/getopt1.c: Likewise.
18014         * lib/getopt_int.h: Likewise.
18015         * lib/getpagesize.h: Likewise.
18016         * lib/getsubopt.c: Likewise.
18017         * lib/gettime.c: Likewise.
18018         * lib/getugroups.c: Likewise.
18019         * lib/getugroups.h: Likewise.
18020         * lib/getusershell.c: Likewise.
18021         * lib/gl_anyavltree_list1.h: Likewise.
18022         * lib/gl_anyavltree_list2.h: Likewise.
18023         * lib/gl_anyhash_list1.h: Likewise.
18024         * lib/gl_anyhash_list2.h: Likewise.
18025         * lib/gl_anylinked_list1.h: Likewise.
18026         * lib/gl_anylinked_list2.h: Likewise.
18027         * lib/gl_anyrbtree_list1.h: Likewise.
18028         * lib/gl_anyrbtree_list2.h: Likewise.
18029         * lib/gl_anytree_list1.h: Likewise.
18030         * lib/gl_anytree_list2.h: Likewise.
18031         * lib/gl_anytree_oset.h: Likewise.
18032         * lib/gl_anytreehash_list1.h: Likewise.
18033         * lib/gl_anytreehash_list2.h: Likewise.
18034         * lib/gl_array_list.c: Likewise.
18035         * lib/gl_array_list.h: Likewise.
18036         * lib/gl_array_oset.c: Likewise.
18037         * lib/gl_array_oset.h: Likewise.
18038         * lib/gl_avltree_list.c: Likewise.
18039         * lib/gl_avltree_list.h: Likewise.
18040         * lib/gl_avltree_oset.c: Likewise.
18041         * lib/gl_avltree_oset.h: Likewise.
18042         * lib/gl_avltreehash_list.c: Likewise.
18043         * lib/gl_avltreehash_list.h: Likewise.
18044         * lib/gl_carray_list.c: Likewise.
18045         * lib/gl_carray_list.h: Likewise.
18046         * lib/gl_linked_list.c: Likewise.
18047         * lib/gl_linked_list.h: Likewise.
18048         * lib/gl_linkedhash_list.c: Likewise.
18049         * lib/gl_linkedhash_list.h: Likewise.
18050         * lib/gl_list.c: Likewise.
18051         * lib/gl_list.h: Likewise.
18052         * lib/gl_oset.c: Likewise.
18053         * lib/gl_oset.h: Likewise.
18054         * lib/gl_rbtree_list.c: Likewise.
18055         * lib/gl_rbtree_list.h: Likewise.
18056         * lib/gl_rbtree_oset.c: Likewise.
18057         * lib/gl_rbtree_oset.h: Likewise.
18058         * lib/gl_rbtreehash_list.c: Likewise.
18059         * lib/gl_rbtreehash_list.h: Likewise.
18060         * lib/gl_sublist.c: Likewise.
18061         * lib/gl_sublist.h: Likewise.
18062         * lib/group-member.c: Likewise.
18063         * lib/group-member.h: Likewise.
18064         * lib/hard-locale.c: Likewise.
18065         * lib/hard-locale.h: Likewise.
18066         * lib/hash-pjw.c: Likewise.
18067         * lib/hash-pjw.h: Likewise.
18068         * lib/hash-triple.c: Likewise.
18069         * lib/hash.c: Likewise.
18070         * lib/hash.h: Likewise.
18071         * lib/human.c: Likewise.
18072         * lib/human.h: Likewise.
18073         * lib/i-ring.c: Likewise.
18074         * lib/i-ring.h: Likewise.
18075         * lib/idcache.c: Likewise.
18076         * lib/imaxabs.c: Likewise.
18077         * lib/imaxdiv.c: Likewise.
18078         * lib/inet_pton.c: Likewise.
18079         * lib/inet_pton.h: Likewise.
18080         * lib/intprops.h: Likewise.
18081         * lib/inttostr.c: Likewise.
18082         * lib/inttostr.h: Likewise.
18083         * lib/inttypes.in.h: Likewise.
18084         * lib/isapipe.c: Likewise.
18085         * lib/isdir.c: Likewise.
18086         * lib/isnan.c: Likewise.
18087         * lib/isnan.h: Likewise.
18088         * lib/isnanf.c: Likewise.
18089         * lib/isnanf.h: Likewise.
18090         * lib/isnanl-nolibm.h: Likewise.
18091         * lib/isnanl.c: Likewise.
18092         * lib/isnanl.h: Likewise.
18093         * lib/javacomp.c: Likewise.
18094         * lib/javacomp.h: Likewise.
18095         * lib/javaexec.c: Likewise.
18096         * lib/javaexec.h: Likewise.
18097         * lib/javaversion.c: Likewise.
18098         * lib/javaversion.h: Likewise.
18099         * lib/javaversion.java: Likewise.
18100         * lib/lbrkprop.h: Likewise.
18101         * lib/lchmod.h: Likewise.
18102         * lib/lchown.c: Likewise.
18103         * lib/ldexpl.c: Likewise.
18104         * lib/linebreak.c: Likewise.
18105         * lib/linebreak.h: Likewise.
18106         * lib/linebuffer.c: Likewise.
18107         * lib/linebuffer.h: Likewise.
18108         * lib/locale.in.h: Likewise.
18109         * lib/logl.c: Likewise.
18110         * lib/long-options.c: Likewise.
18111         * lib/long-options.h: Likewise.
18112         * lib/lstat.c: Likewise.
18113         * lib/lstat.h: Likewise.
18114         * lib/math.in.h: Likewise.
18115         * lib/mbchar.c: Likewise.
18116         * lib/mbchar.h: Likewise.
18117         * lib/mbfile.h: Likewise.
18118         * lib/mbiter.h: Likewise.
18119         * lib/mbscasecmp.c: Likewise.
18120         * lib/mbscasestr.c: Likewise.
18121         * lib/mbschr.c: Likewise.
18122         * lib/mbscspn.c: Likewise.
18123         * lib/mbslen.c: Likewise.
18124         * lib/mbsncasecmp.c: Likewise.
18125         * lib/mbsnlen.c: Likewise.
18126         * lib/mbspbrk.c: Likewise.
18127         * lib/mbspcasecmp.c: Likewise.
18128         * lib/mbsrchr.c: Likewise.
18129         * lib/mbssep.c: Likewise.
18130         * lib/mbsspn.c: Likewise.
18131         * lib/mbsstr.c: Likewise.
18132         * lib/mbstok_r.c: Likewise.
18133         * lib/mbswidth.c: Likewise.
18134         * lib/mbswidth.h: Likewise.
18135         * lib/mbuiter.h: Likewise.
18136         * lib/memcasecmp.c: Likewise.
18137         * lib/memcasecmp.h: Likewise.
18138         * lib/memchr.c: Likewise.
18139         * lib/memcmp.c: Likewise.
18140         * lib/memcoll.c: Likewise.
18141         * lib/memcoll.h: Likewise.
18142         * lib/memcpy.c: Likewise.
18143         * lib/memrchr.c: Likewise.
18144         * lib/mkancesdirs.c: Likewise.
18145         * lib/mkdir-p.c: Likewise.
18146         * lib/mkdir-p.h: Likewise.
18147         * lib/mkdir.c: Likewise.
18148         * lib/mkdirat.c: Likewise.
18149         * lib/mkdtemp.c: Likewise.
18150         * lib/mkstemp-safer.c: Likewise.
18151         * lib/mkstemp.c: Likewise.
18152         * lib/modechange.c: Likewise.
18153         * lib/modechange.h: Likewise.
18154         * lib/mountlist.c: Likewise.
18155         * lib/mountlist.h: Likewise.
18156         * lib/mpsort.c: Likewise.
18157         * lib/nanosleep.c: Likewise.
18158         * lib/obstack.c: Likewise.
18159         * lib/obstack.h: Likewise.
18160         * lib/open-safer.c: Likewise.
18161         * lib/open.c: Likewise.
18162         * lib/openat-die.c: Likewise.
18163         * lib/openat-priv.h: Likewise.
18164         * lib/openat-proc.c: Likewise.
18165         * lib/openat.c: Likewise.
18166         * lib/openat.h: Likewise.
18167         * lib/pagealign_alloc.c: Likewise.
18168         * lib/pagealign_alloc.h: Likewise.
18169         * lib/physmem.c: Likewise.
18170         * lib/physmem.h: Likewise.
18171         * lib/pipe-safer.c: Likewise.
18172         * lib/pipe.c: Likewise.
18173         * lib/pipe.h: Likewise.
18174         * lib/posixtm.c: Likewise.
18175         * lib/posixtm.h: Likewise.
18176         * lib/posixver.c: Likewise.
18177         * lib/printf-frexp.c: Likewise.
18178         * lib/printf-frexp.h: Likewise.
18179         * lib/printf-frexpl.c: Likewise.
18180         * lib/printf-frexpl.h: Likewise.
18181         * lib/printf.c: Likewise.
18182         * lib/progname.c: Likewise.
18183         * lib/progname.h: Likewise.
18184         * lib/progreloc.c: Likewise.
18185         * lib/putenv.c: Likewise.
18186         * lib/quote.c: Likewise.
18187         * lib/quote.h: Likewise.
18188         * lib/quotearg.c: Likewise.
18189         * lib/quotearg.h: Likewise.
18190         * lib/raise.c: Likewise.
18191         * lib/readline.c: Likewise.
18192         * lib/readline.h: Likewise.
18193         * lib/readlink.c: Likewise.
18194         * lib/readtokens.c: Likewise.
18195         * lib/readtokens.h: Likewise.
18196         * lib/readtokens0.c: Likewise.
18197         * lib/readtokens0.h: Likewise.
18198         * lib/readutmp.c: Likewise.
18199         * lib/readutmp.h: Likewise.
18200         * lib/realloc.c: Likewise.
18201         * lib/relocwrapper.c: Likewise.
18202         * lib/rename-dest-slash.c: Likewise.
18203         * lib/rename.c: Likewise.
18204         * lib/rmdir.c: Likewise.
18205         * lib/rpmatch.c: Likewise.
18206         * lib/safe-read.c: Likewise.
18207         * lib/safe-read.h: Likewise.
18208         * lib/safe-write.c: Likewise.
18209         * lib/safe-write.h: Likewise.
18210         * lib/same-inode.h: Likewise.
18211         * lib/same.c: Likewise.
18212         * lib/same.h: Likewise.
18213         * lib/save-cwd.c: Likewise.
18214         * lib/save-cwd.h: Likewise.
18215         * lib/savedir.c: Likewise.
18216         * lib/savedir.h: Likewise.
18217         * lib/savewd.c: Likewise.
18218         * lib/savewd.h: Likewise.
18219         * lib/search.in.h: Likewise.
18220         * lib/setenv.c: Likewise.
18221         * lib/setenv.h: Likewise.
18222         * lib/settime.c: Likewise.
18223         * lib/sh-quote.c: Likewise.
18224         * lib/sh-quote.h: Likewise.
18225         * lib/sig2str.c: Likewise.
18226         * lib/sig2str.h: Likewise.
18227         * lib/signal.in.h: Likewise.
18228         * lib/signbitd.c: Likewise.
18229         * lib/signbitf.c: Likewise.
18230         * lib/signbitl.c: Likewise.
18231         * lib/sigprocmask.c: Likewise.
18232         * lib/sincosl.c: Likewise.
18233         * lib/sleep.c: Likewise.
18234         * lib/sprintf.c: Likewise.
18235         * lib/sqrtl.c: Likewise.
18236         * lib/stat-time.h: Likewise.
18237         * lib/stdio--.h: Likewise.
18238         * lib/stdio-safer.h: Likewise.
18239         * lib/stdlib--.h: Likewise.
18240         * lib/stdlib-safer.h: Likewise.
18241         * lib/stdlib.in.h: Likewise.
18242         * lib/stpcpy.c: Likewise.
18243         * lib/stpncpy.c: Likewise.
18244         * lib/strchrnul.c: Likewise.
18245         * lib/strcspn.c: Likewise.
18246         * lib/strerror.c: Likewise.
18247         * lib/strftime.c: Likewise.
18248         * lib/strftime.h: Likewise.
18249         * lib/striconveh.c: Likewise.
18250         * lib/striconveh.h: Likewise.
18251         * lib/striconveha.c: Likewise.
18252         * lib/striconveha.h: Likewise.
18253         * lib/stripslash.c: Likewise.
18254         * lib/strnlen1.c: Likewise.
18255         * lib/strnlen1.h: Likewise.
18256         * lib/strtod.c: Likewise.
18257         * lib/strtoimax.c: Likewise.
18258         * lib/strtok_r.c: Likewise.
18259         * lib/strtol.c: Likewise.
18260         * lib/strtoll.c: Likewise.
18261         * lib/strtoul.c: Likewise.
18262         * lib/strtoull.c: Likewise.
18263         * lib/sysexits.in.h: Likewise.
18264         * lib/tempname.c: Likewise.
18265         * lib/tempname.h: Likewise.
18266         * lib/timespec.h: Likewise.
18267         * lib/tls.c: Likewise.
18268         * lib/tls.h: Likewise.
18269         * lib/tmpdir.c: Likewise.
18270         * lib/tmpdir.h: Likewise.
18271         * lib/tmpfile-safer.c: Likewise.
18272         * lib/tmpfile.c: Likewise.
18273         * lib/trigl.c: Likewise.
18274         * lib/trigl.h: Likewise.
18275         * lib/trim.c: Likewise.
18276         * lib/trim.h: Likewise.
18277         * lib/trunc.c: Likewise.
18278         * lib/truncf.c: Likewise.
18279         * lib/truncl.c: Likewise.
18280         * lib/tsearch.c: Likewise.
18281         * lib/unicodeio.c: Likewise.
18282         * lib/unicodeio.h: Likewise.
18283         * lib/unistd--.h: Likewise.
18284         * lib/unistd-safer.h: Likewise.
18285         * lib/unistdio/ulc-fprintf.c: Likewise.
18286         * lib/unistdio/ulc-vfprintf.c: Likewise.
18287         * lib/unlinkdir.c: Likewise.
18288         * lib/unlinkdir.h: Likewise.
18289         * lib/unlocked-io.h: Likewise.
18290         * lib/unsetenv.c: Likewise.
18291         * lib/userspec.c: Likewise.
18292         * lib/utime.c: Likewise.
18293         * lib/utimecmp.c: Likewise.
18294         * lib/utimecmp.h: Likewise.
18295         * lib/utimens.c: Likewise.
18296         * lib/verify.h: Likewise.
18297         * lib/verror.c: Likewise.
18298         * lib/verror.h: Likewise.
18299         * lib/version-etc-fsf.c: Likewise.
18300         * lib/version-etc.c: Likewise.
18301         * lib/version-etc.h: Likewise.
18302         * lib/vfprintf.c: Likewise.
18303         * lib/vprintf.c: Likewise.
18304         * lib/vsprintf.c: Likewise.
18305         * lib/w32spawn.h: Likewise.
18306         * lib/wait-process.c: Likewise.
18307         * lib/wait-process.h: Likewise.
18308         * lib/wcwidth.c: Likewise.
18309         * lib/write-any-file.c: Likewise.
18310         * lib/xalloc-die.c: Likewise.
18311         * lib/xalloc.h: Likewise.
18312         * lib/xasprintf.c: Likewise.
18313         * lib/xgetcwd.c: Likewise.
18314         * lib/xgetcwd.h: Likewise.
18315         * lib/xgetdomainname.c: Likewise.
18316         * lib/xgetdomainname.h: Likewise.
18317         * lib/xgethostname.c: Likewise.
18318         * lib/xmalloc.c: Likewise.
18319         * lib/xmalloca.c: Likewise.
18320         * lib/xmalloca.h: Likewise.
18321         * lib/xmemcoll.c: Likewise.
18322         * lib/xnanosleep.c: Likewise.
18323         * lib/xreadlink.c: Likewise.
18324         * lib/xreadlink.h: Likewise.
18325         * lib/xsetenv.c: Likewise.
18326         * lib/xsetenv.h: Likewise.
18327         * lib/xstriconv.c: Likewise.
18328         * lib/xstriconv.h: Likewise.
18329         * lib/xstrndup.c: Likewise.
18330         * lib/xstrndup.h: Likewise.
18331         * lib/xstrtod.c: Likewise.
18332         * lib/xstrtod.h: Likewise.
18333         * lib/xstrtol-error.c: Likewise.
18334         * lib/xstrtol.c: Likewise.
18335         * lib/xstrtol.h: Likewise.
18336         * lib/xtime.h: Likewise.
18337         * lib/xvasprintf.c: Likewise.
18338         * lib/xvasprintf.h: Likewise.
18339         * lib/yesno.c: Likewise.
18340         * lib/yesno.h: Likewise.
18341         * posix-modules: Likewise.
18342         * tests/test-alloca-opt.c: Likewise.
18343         * tests/test-arcfour.c: Likewise.
18344         * tests/test-arctwo.c: Likewise.
18345         * tests/test-argmatch.c: Likewise.
18346         * tests/test-argp-2.sh: Likewise.
18347         * tests/test-argp.c: Likewise.
18348         * tests/test-arpa_inet.c: Likewise.
18349         * tests/test-array_list.c: Likewise.
18350         * tests/test-array_oset.c: Likewise.
18351         * tests/test-atexit.c: Likewise.
18352         * tests/test-avltree_list.c: Likewise.
18353         * tests/test-avltree_oset.c: Likewise.
18354         * tests/test-avltreehash_list.c: Likewise.
18355         * tests/test-base64.c: Likewise.
18356         * tests/test-binary-io.c: Likewise.
18357         * tests/test-byteswap.c: Likewise.
18358         * tests/test-c-ctype.c: Likewise.
18359         * tests/test-c-strcasecmp.c: Likewise.
18360         * tests/test-c-strcasestr.c: Likewise.
18361         * tests/test-c-strncasecmp.c: Likewise.
18362         * tests/test-c-strstr.c: Likewise.
18363         * tests/test-canonicalize-lgpl.c: Likewise.
18364         * tests/test-canonicalize.c: Likewise.
18365         * tests/test-carray_list.c: Likewise.
18366         * tests/test-ceilf.c: Likewise.
18367         * tests/test-ceill.c: Likewise.
18368         * tests/test-count-one-bits.c: Likewise.
18369         * tests/test-crc.c: Likewise.
18370         * tests/test-dirname.c: Likewise.
18371         * tests/test-fbufmode.c: Likewise.
18372         * tests/test-fcntl.c: Likewise.
18373         * tests/test-fflush.c: Likewise.
18374         * tests/test-floorf.c: Likewise.
18375         * tests/test-floorl.c: Likewise.
18376         * tests/test-fopen.c: Likewise.
18377         * tests/test-fprintf-posix.c: Likewise.
18378         * tests/test-fprintf-posix.h: Likewise.
18379         * tests/test-fpurge.c: Likewise.
18380         * tests/test-freadable.c: Likewise.
18381         * tests/test-freadahead.c: Likewise.
18382         * tests/test-freading.c: Likewise.
18383         * tests/test-freopen.c: Likewise.
18384         * tests/test-frexp.c: Likewise.
18385         * tests/test-frexpl.c: Likewise.
18386         * tests/test-fseek.c: Likewise.
18387         * tests/test-fseeko.c: Likewise.
18388         * tests/test-fseterr.c: Likewise.
18389         * tests/test-fstrcmp.c: Likewise.
18390         * tests/test-ftell.c: Likewise.
18391         * tests/test-ftello.c: Likewise.
18392         * tests/test-fwritable.c: Likewise.
18393         * tests/test-fwriting.c: Likewise.
18394         * tests/test-getaddrinfo.c: Likewise.
18395         * tests/test-getpass.c: Likewise.
18396         * tests/test-gettimeofday.c: Likewise.
18397         * tests/test-hmac-md5.c: Likewise.
18398         * tests/test-hmac-sha1.c: Likewise.
18399         * tests/test-iconv.c: Likewise.
18400         * tests/test-iconvme.c: Likewise.
18401         * tests/test-inttypes.c: Likewise.
18402         * tests/test-isnan.c: Likewise.
18403         * tests/test-isnanf.c: Likewise.
18404         * tests/test-isnanl-nolibm.c: Likewise.
18405         * tests/test-isnanl.c: Likewise.
18406         * tests/test-isnanl.h: Likewise.
18407         * tests/test-ldexpl.c: Likewise.
18408         * tests/test-linked_list.c: Likewise.
18409         * tests/test-linkedhash_list.c: Likewise.
18410         * tests/test-locale.c: Likewise.
18411         * tests/test-localename.c: Likewise.
18412         * tests/test-lock.c: Likewise.
18413         * tests/test-lseek.c: Likewise.
18414         * tests/test-malloca.c: Likewise.
18415         * tests/test-math.c: Likewise.
18416         * tests/test-mbscasecmp.c: Likewise.
18417         * tests/test-mbscasestr1.c: Likewise.
18418         * tests/test-mbscasestr2.c: Likewise.
18419         * tests/test-mbscasestr3.c: Likewise.
18420         * tests/test-mbscasestr4.c: Likewise.
18421         * tests/test-mbschr.c: Likewise.
18422         * tests/test-mbscspn.c: Likewise.
18423         * tests/test-mbsncasecmp.c: Likewise.
18424         * tests/test-mbspbrk.c: Likewise.
18425         * tests/test-mbspcasecmp.c: Likewise.
18426         * tests/test-mbsrchr.c: Likewise.
18427         * tests/test-mbsspn.c: Likewise.
18428         * tests/test-mbsstr1.c: Likewise.
18429         * tests/test-mbsstr2.c: Likewise.
18430         * tests/test-mbsstr3.c: Likewise.
18431         * tests/test-md5.c: Likewise.
18432         * tests/test-memmem.c: Likewise.
18433         * tests/test-netinet_in.c: Likewise.
18434         * tests/test-open.c: Likewise.
18435         * tests/test-printf-frexp.c: Likewise.
18436         * tests/test-printf-frexpl.c: Likewise.
18437         * tests/test-printf-posix.c: Likewise.
18438         * tests/test-printf-posix.h: Likewise.
18439         * tests/test-rbtree_list.c: Likewise.
18440         * tests/test-rbtree_oset.c: Likewise.
18441         * tests/test-rbtreehash_list.c: Likewise.
18442         * tests/test-read-file.c: Likewise.
18443         * tests/test-rijndael.c: Likewise.
18444         * tests/test-search.c: Likewise.
18445         * tests/test-signbit.c: Likewise.
18446         * tests/test-sleep.c: Likewise.
18447         * tests/test-snprintf-posix.c: Likewise.
18448         * tests/test-snprintf-posix.h: Likewise.
18449         * tests/test-snprintf.c: Likewise.
18450         * tests/test-sprintf-posix.c: Likewise.
18451         * tests/test-sprintf-posix.h: Likewise.
18452         * tests/test-stat-time.c: Likewise.
18453         * tests/test-stdbool.c: Likewise.
18454         * tests/test-stdint.c: Likewise.
18455         * tests/test-stdio.c: Likewise.
18456         * tests/test-stdlib.c: Likewise.
18457         * tests/test-stpncpy.c: Likewise.
18458         * tests/test-strcasestr.c: Likewise.
18459         * tests/test-striconv.c: Likewise.
18460         * tests/test-striconveh.c: Likewise.
18461         * tests/test-striconveha.c: Likewise.
18462         * tests/test-string.c: Likewise.
18463         * tests/test-sys_select.c: Likewise.
18464         * tests/test-sys_socket.c: Likewise.
18465         * tests/test-sys_stat.c: Likewise.
18466         * tests/test-sys_time.c: Likewise.
18467         * tests/test-sysexits.c: Likewise.
18468         * tests/test-time.c: Likewise.
18469         * tests/test-tls.c: Likewise.
18470         * tests/test-trunc.c: Likewise.
18471         * tests/test-truncf.c: Likewise.
18472         * tests/test-truncl.c: Likewise.
18473         * tests/test-unistd.c: Likewise.
18474         * tests/test-vasnprintf-posix.c: Likewise.
18475         * tests/test-vasnprintf-posix2.c: Likewise.
18476         * tests/test-vasnprintf.c: Likewise.
18477         * tests/test-vasprintf-posix.c: Likewise.
18478         * tests/test-vasprintf.c: Likewise.
18479         * tests/test-verify.c: Likewise.
18480         * tests/test-vfprintf-posix.c: Likewise.
18481         * tests/test-vprintf-posix.c: Likewise.
18482         * tests/test-vsnprintf-posix.c: Likewise.
18483         * tests/test-vsnprintf.c: Likewise.
18484         * tests/test-vsprintf-posix.c: Likewise.
18485         * tests/test-wchar.c: Likewise.
18486         * tests/test-wctype.c: Likewise.
18487         * tests/test-wcwidth.c: Likewise.
18488         * tests/test-xstrtol.c: Likewise.
18489         * tests/test-xvasprintf.c: Likewise.
18490         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
18491         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
18492         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
18493         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
18494         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
18495         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
18496         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
18497         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
18498         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
18499         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
18500         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
18501         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
18502         * tests/uniname/test-uninames.c: Likewise.
18503         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
18504         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
18505         * tests/unistdio/test-u16-printf1.h: Likewise.
18506         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
18507         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
18508         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
18509         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
18510         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
18511         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
18512         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
18513         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
18514         * tests/unistdio/test-u32-printf1.h: Likewise.
18515         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
18516         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
18517         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
18518         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
18519         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
18520         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
18521         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
18522         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
18523         * tests/unistdio/test-u8-printf1.h: Likewise.
18524         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
18525         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
18526         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
18527         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
18528         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
18529         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
18530         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
18531         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
18532         * tests/unistdio/test-ulc-printf1.h: Likewise.
18533         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
18534         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
18535         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
18536         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
18537         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
18538         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
18539         * tests/uniwidth/test-u16-strwidth.c: Likewise.
18540         * tests/uniwidth/test-u16-width.c: Likewise.
18541         * tests/uniwidth/test-u32-strwidth.c: Likewise.
18542         * tests/uniwidth/test-u32-width.c: Likewise.
18543         * tests/uniwidth/test-u8-strwidth.c: Likewise.
18544         * tests/uniwidth/test-u8-width.c: Likewise.
18545         * tests/uniwidth/test-uc_width.c: Likewise.
18546         * config/srclist-update: Likewise.
18547         (fixlicense): Update to GPLv3+.
18548
18549         Change copyright notice from LGPLv2.1+ to LGPLv3+.
18550         * tests/test-tsearch.c: Change copyright notice.
18551
18552         Change copyright notice from LGPLv2.0+ to LGPLv3+.
18553         * lib/c-strcaseeq.h: Change copyright notice.
18554         * lib/streq.h: Likewise.
18555         * lib/uniconv.h: Likewise.
18556         * lib/uniconv/u-conv-from-enc.h: Likewise.
18557         * lib/uniconv/u-conv-to-enc.h: Likewise.
18558         * lib/uniconv/u-strconv-from-enc.h: Likewise.
18559         * lib/uniconv/u-strconv-to-enc.h: Likewise.
18560         * lib/uniconv/u16-conv-from-enc.c: Likewise.
18561         * lib/uniconv/u16-conv-to-enc.c: Likewise.
18562         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
18563         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
18564         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
18565         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
18566         * lib/uniconv/u32-conv-from-enc.c: Likewise.
18567         * lib/uniconv/u32-conv-to-enc.c: Likewise.
18568         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
18569         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
18570         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
18571         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
18572         * lib/uniconv/u8-conv-from-enc.c: Likewise.
18573         * lib/uniconv/u8-conv-to-enc.c: Likewise.
18574         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
18575         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
18576         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
18577         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
18578         * lib/uniname.h: Likewise.
18579         * lib/uniname/uniname.c: Likewise.
18580         * lib/unistdio.h: Likewise.
18581         * lib/unistdio/u-asnprintf.h: Likewise.
18582         * lib/unistdio/u-asprintf.h: Likewise.
18583         * lib/unistdio/u-printf-args.c: Likewise.
18584         * lib/unistdio/u-printf-args.h: Likewise.
18585         * lib/unistdio/u-printf-parse.h: Likewise.
18586         * lib/unistdio/u-snprintf.h: Likewise.
18587         * lib/unistdio/u-sprintf.h: Likewise.
18588         * lib/unistdio/u-vasprintf.h: Likewise.
18589         * lib/unistdio/u-vsnprintf.h: Likewise.
18590         * lib/unistdio/u-vsprintf.h: Likewise.
18591         * lib/unistdio/u16-asnprintf.c: Likewise.
18592         * lib/unistdio/u16-asprintf.c: Likewise.
18593         * lib/unistdio/u16-printf-parse.c: Likewise.
18594         * lib/unistdio/u16-snprintf.c: Likewise.
18595         * lib/unistdio/u16-sprintf.c: Likewise.
18596         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
18597         * lib/unistdio/u16-u16-asprintf.c: Likewise.
18598         * lib/unistdio/u16-u16-snprintf.c: Likewise.
18599         * lib/unistdio/u16-u16-sprintf.c: Likewise.
18600         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
18601         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
18602         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
18603         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
18604         * lib/unistdio/u16-vasnprintf.c: Likewise.
18605         * lib/unistdio/u16-vasprintf.c: Likewise.
18606         * lib/unistdio/u16-vsnprintf.c: Likewise.
18607         * lib/unistdio/u16-vsprintf.c: Likewise.
18608         * lib/unistdio/u32-asnprintf.c: Likewise.
18609         * lib/unistdio/u32-asprintf.c: Likewise.
18610         * lib/unistdio/u32-printf-parse.c: Likewise.
18611         * lib/unistdio/u32-snprintf.c: Likewise.
18612         * lib/unistdio/u32-sprintf.c: Likewise.
18613         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
18614         * lib/unistdio/u32-u32-asprintf.c: Likewise.
18615         * lib/unistdio/u32-u32-snprintf.c: Likewise.
18616         * lib/unistdio/u32-u32-sprintf.c: Likewise.
18617         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
18618         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
18619         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
18620         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
18621         * lib/unistdio/u32-vasnprintf.c: Likewise.
18622         * lib/unistdio/u32-vasprintf.c: Likewise.
18623         * lib/unistdio/u32-vsnprintf.c: Likewise.
18624         * lib/unistdio/u32-vsprintf.c: Likewise.
18625         * lib/unistdio/u8-asnprintf.c: Likewise.
18626         * lib/unistdio/u8-asprintf.c: Likewise.
18627         * lib/unistdio/u8-printf-parse.c: Likewise.
18628         * lib/unistdio/u8-snprintf.c: Likewise.
18629         * lib/unistdio/u8-sprintf.c: Likewise.
18630         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
18631         * lib/unistdio/u8-u8-asprintf.c: Likewise.
18632         * lib/unistdio/u8-u8-snprintf.c: Likewise.
18633         * lib/unistdio/u8-u8-sprintf.c: Likewise.
18634         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
18635         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
18636         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
18637         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
18638         * lib/unistdio/u8-vasnprintf.c: Likewise.
18639         * lib/unistdio/u8-vasprintf.c: Likewise.
18640         * lib/unistdio/u8-vsnprintf.c: Likewise.
18641         * lib/unistdio/u8-vsprintf.c: Likewise.
18642         * lib/unistdio/ulc-asnprintf.c: Likewise.
18643         * lib/unistdio/ulc-asprintf.c: Likewise.
18644         * lib/unistdio/ulc-printf-parse.c: Likewise.
18645         * lib/unistdio/ulc-snprintf.c: Likewise.
18646         * lib/unistdio/ulc-sprintf.c: Likewise.
18647         * lib/unistdio/ulc-vasnprintf.c: Likewise.
18648         * lib/unistdio/ulc-vasprintf.c: Likewise.
18649         * lib/unistdio/ulc-vsnprintf.c: Likewise.
18650         * lib/unistdio/ulc-vsprintf.c: Likewise.
18651         * lib/unistr.h: Likewise.
18652         * lib/unistr/u-cpy-alloc.h: Likewise.
18653         * lib/unistr/u-cpy.h: Likewise.
18654         * lib/unistr/u-endswith.h: Likewise.
18655         * lib/unistr/u-move.h: Likewise.
18656         * lib/unistr/u-set.h: Likewise.
18657         * lib/unistr/u-startswith.h: Likewise.
18658         * lib/unistr/u-stpcpy.h: Likewise.
18659         * lib/unistr/u-stpncpy.h: Likewise.
18660         * lib/unistr/u-strcat.h: Likewise.
18661         * lib/unistr/u-strcpy.h: Likewise.
18662         * lib/unistr/u-strcspn.h: Likewise.
18663         * lib/unistr/u-strdup.h: Likewise.
18664         * lib/unistr/u-strlen.h: Likewise.
18665         * lib/unistr/u-strncat.h: Likewise.
18666         * lib/unistr/u-strncpy.h: Likewise.
18667         * lib/unistr/u-strnlen.h: Likewise.
18668         * lib/unistr/u-strpbrk.h: Likewise.
18669         * lib/unistr/u-strspn.h: Likewise.
18670         * lib/unistr/u-strstr.h: Likewise.
18671         * lib/unistr/u-strtok.h: Likewise.
18672         * lib/unistr/u16-check.c: Likewise.
18673         * lib/unistr/u16-chr.c: Likewise.
18674         * lib/unistr/u16-cmp.c: Likewise.
18675         * lib/unistr/u16-cpy-alloc.c: Likewise.
18676         * lib/unistr/u16-cpy.c: Likewise.
18677         * lib/unistr/u16-endswith.c: Likewise.
18678         * lib/unistr/u16-mblen.c: Likewise.
18679         * lib/unistr/u16-mbsnlen.c: Likewise.
18680         * lib/unistr/u16-mbtouc-aux.c: Likewise.
18681         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
18682         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
18683         * lib/unistr/u16-mbtouc.c: Likewise.
18684         * lib/unistr/u16-mbtoucr.c: Likewise.
18685         * lib/unistr/u16-move.c: Likewise.
18686         * lib/unistr/u16-next.c: Likewise.
18687         * lib/unistr/u16-prev.c: Likewise.
18688         * lib/unistr/u16-set.c: Likewise.
18689         * lib/unistr/u16-startswith.c: Likewise.
18690         * lib/unistr/u16-stpcpy.c: Likewise.
18691         * lib/unistr/u16-stpncpy.c: Likewise.
18692         * lib/unistr/u16-strcat.c: Likewise.
18693         * lib/unistr/u16-strchr.c: Likewise.
18694         * lib/unistr/u16-strcmp.c: Likewise.
18695         * lib/unistr/u16-strcpy.c: Likewise.
18696         * lib/unistr/u16-strcspn.c: Likewise.
18697         * lib/unistr/u16-strdup.c: Likewise.
18698         * lib/unistr/u16-strlen.c: Likewise.
18699         * lib/unistr/u16-strmblen.c: Likewise.
18700         * lib/unistr/u16-strmbtouc.c: Likewise.
18701         * lib/unistr/u16-strncat.c: Likewise.
18702         * lib/unistr/u16-strncmp.c: Likewise.
18703         * lib/unistr/u16-strncpy.c: Likewise.
18704         * lib/unistr/u16-strnlen.c: Likewise.
18705         * lib/unistr/u16-strpbrk.c: Likewise.
18706         * lib/unistr/u16-strrchr.c: Likewise.
18707         * lib/unistr/u16-strspn.c: Likewise.
18708         * lib/unistr/u16-strstr.c: Likewise.
18709         * lib/unistr/u16-strtok.c: Likewise.
18710         * lib/unistr/u16-to-u32.c: Likewise.
18711         * lib/unistr/u16-to-u8.c: Likewise.
18712         * lib/unistr/u16-uctomb-aux.c: Likewise.
18713         * lib/unistr/u16-uctomb.c: Likewise.
18714         * lib/unistr/u32-check.c: Likewise.
18715         * lib/unistr/u32-chr.c: Likewise.
18716         * lib/unistr/u32-cmp.c: Likewise.
18717         * lib/unistr/u32-cpy-alloc.c: Likewise.
18718         * lib/unistr/u32-cpy.c: Likewise.
18719         * lib/unistr/u32-endswith.c: Likewise.
18720         * lib/unistr/u32-mblen.c: Likewise.
18721         * lib/unistr/u32-mbsnlen.c: Likewise.
18722         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
18723         * lib/unistr/u32-mbtouc.c: Likewise.
18724         * lib/unistr/u32-mbtoucr.c: Likewise.
18725         * lib/unistr/u32-move.c: Likewise.
18726         * lib/unistr/u32-next.c: Likewise.
18727         * lib/unistr/u32-prev.c: Likewise.
18728         * lib/unistr/u32-set.c: Likewise.
18729         * lib/unistr/u32-startswith.c: Likewise.
18730         * lib/unistr/u32-stpcpy.c: Likewise.
18731         * lib/unistr/u32-stpncpy.c: Likewise.
18732         * lib/unistr/u32-strcat.c: Likewise.
18733         * lib/unistr/u32-strchr.c: Likewise.
18734         * lib/unistr/u32-strcmp.c: Likewise.
18735         * lib/unistr/u32-strcpy.c: Likewise.
18736         * lib/unistr/u32-strcspn.c: Likewise.
18737         * lib/unistr/u32-strdup.c: Likewise.
18738         * lib/unistr/u32-strlen.c: Likewise.
18739         * lib/unistr/u32-strmblen.c: Likewise.
18740         * lib/unistr/u32-strmbtouc.c: Likewise.
18741         * lib/unistr/u32-strncat.c: Likewise.
18742         * lib/unistr/u32-strncmp.c: Likewise.
18743         * lib/unistr/u32-strncpy.c: Likewise.
18744         * lib/unistr/u32-strnlen.c: Likewise.
18745         * lib/unistr/u32-strpbrk.c: Likewise.
18746         * lib/unistr/u32-strrchr.c: Likewise.
18747         * lib/unistr/u32-strspn.c: Likewise.
18748         * lib/unistr/u32-strstr.c: Likewise.
18749         * lib/unistr/u32-strtok.c: Likewise.
18750         * lib/unistr/u32-to-u16.c: Likewise.
18751         * lib/unistr/u32-to-u8.c: Likewise.
18752         * lib/unistr/u32-uctomb.c: Likewise.
18753         * lib/unistr/u8-check.c: Likewise.
18754         * lib/unistr/u8-chr.c: Likewise.
18755         * lib/unistr/u8-cmp.c: Likewise.
18756         * lib/unistr/u8-cpy-alloc.c: Likewise.
18757         * lib/unistr/u8-cpy.c: Likewise.
18758         * lib/unistr/u8-endswith.c: Likewise.
18759         * lib/unistr/u8-mblen.c: Likewise.
18760         * lib/unistr/u8-mbsnlen.c: Likewise.
18761         * lib/unistr/u8-mbtouc-aux.c: Likewise.
18762         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
18763         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
18764         * lib/unistr/u8-mbtouc.c: Likewise.
18765         * lib/unistr/u8-mbtoucr.c: Likewise.
18766         * lib/unistr/u8-move.c: Likewise.
18767         * lib/unistr/u8-next.c: Likewise.
18768         * lib/unistr/u8-prev.c: Likewise.
18769         * lib/unistr/u8-set.c: Likewise.
18770         * lib/unistr/u8-startswith.c: Likewise.
18771         * lib/unistr/u8-stpcpy.c: Likewise.
18772         * lib/unistr/u8-stpncpy.c: Likewise.
18773         * lib/unistr/u8-strcat.c: Likewise.
18774         * lib/unistr/u8-strchr.c: Likewise.
18775         * lib/unistr/u8-strcmp.c: Likewise.
18776         * lib/unistr/u8-strcpy.c: Likewise.
18777         * lib/unistr/u8-strcspn.c: Likewise.
18778         * lib/unistr/u8-strdup.c: Likewise.
18779         * lib/unistr/u8-strlen.c: Likewise.
18780         * lib/unistr/u8-strmblen.c: Likewise.
18781         * lib/unistr/u8-strmbtouc.c: Likewise.
18782         * lib/unistr/u8-strncat.c: Likewise.
18783         * lib/unistr/u8-strncmp.c: Likewise.
18784         * lib/unistr/u8-strncpy.c: Likewise.
18785         * lib/unistr/u8-strnlen.c: Likewise.
18786         * lib/unistr/u8-strpbrk.c: Likewise.
18787         * lib/unistr/u8-strrchr.c: Likewise.
18788         * lib/unistr/u8-strspn.c: Likewise.
18789         * lib/unistr/u8-strstr.c: Likewise.
18790         * lib/unistr/u8-strtok.c: Likewise.
18791         * lib/unistr/u8-to-u16.c: Likewise.
18792         * lib/unistr/u8-to-u32.c: Likewise.
18793         * lib/unistr/u8-uctomb-aux.c: Likewise.
18794         * lib/unistr/u8-uctomb.c: Likewise.
18795         * lib/unitypes.h: Likewise.
18796         * lib/uniwidth.h: Likewise.
18797         * lib/uniwidth/cjk.h: Likewise.
18798         * lib/uniwidth/u16-strwidth.c: Likewise.
18799         * lib/uniwidth/u16-width.c: Likewise.
18800         * lib/uniwidth/u32-strwidth.c: Likewise.
18801         * lib/uniwidth/u32-width.c: Likewise.
18802         * lib/uniwidth/u8-strwidth.c: Likewise.
18803         * lib/uniwidth/u8-width.c: Likewise.
18804         * lib/uniwidth/width.c: Likewise.
18805
18806 2007-10-07  Bruno Haible  <bruno@clisp.org>
18807
18808         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
18809         The file is still under LGPL (see modules/inttypes).
18810
18811 2007-10-06  Bruno Haible  <bruno@clisp.org>
18812
18813         * modules/trunc (Dependencies): Add 'extensions'.
18814         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
18815         Reported by Ben Pfaff <blp@gnu.org>.
18816
18817 2007-10-06  Bruno Haible  <bruno@clisp.org>
18818
18819         * modules/freopen-tests: New file.
18820         * tests/test-freopen.c: New file.
18821
18822         * modules/fopen-tests: New file.
18823         * tests/test-fopen.c: New file.
18824
18825         * modules/fopen: New file.
18826         * lib/fopen.c: New file.
18827         * m4/fopen.m4: New file.
18828         * modules/freopen: New file.
18829         * lib/freopen.c: New file.
18830         * m4/freopen.m4: New file.
18831         * lib/stdio.in.h (fopen, freopen): New declarations.
18832         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
18833         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
18834         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
18835         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
18836         * doc/functions/fopen.texi: Mention the 'fopen' module.
18837         * doc/functions/freopen.texi: Mention the 'freopen' module.
18838
18839 2007-10-06  Bruno Haible  <bruno@clisp.org>
18840
18841         * modules/open-tests: New file.
18842         * tests/test-open.c: New file.
18843
18844         * modules/open: New file.
18845         * lib/open.c: New file.
18846         * m4/open.m4: New file.
18847         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
18848         lib/open.c does.
18849         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
18850         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
18851         macros.
18852         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
18853         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
18854         REPLACE_OPEN.
18855         * doc/functions/open.texi: Mention the 'open' module.
18856
18857 2007-10-04  Bruno Haible  <bruno@clisp.org>
18858
18859         * modules/ceill-tests: New file.
18860         * tests/test-ceill.c: New file.
18861
18862         * modules/ceill: New file.
18863         * lib/ceill.c: Replace entire file.
18864         * m4/ceill.m4: New file.
18865         * lib/math.in.h (ceill): Replace declaration.
18866         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
18867         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
18868         * doc/functions/ceill.texi: Mention the 'ceill' module.
18869         * modules/mathl (Files): Remove lib/ceill.c.
18870         (Depends-on): Add ceill.
18871
18872 2007-10-04  Bruno Haible  <bruno@clisp.org>
18873
18874         * modules/ceilf-tests: New file.
18875         * tests/test-ceilf.c: New file.
18876
18877         * modules/ceilf: New file.
18878         * lib/ceil.c: New file.
18879         * lib/ceilf.c: New file.
18880         * m4/ceilf.m4: New file.
18881         * lib/math.in.h (ceilf): New declaration.
18882         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
18883         HAVE_DECL_CEILF.
18884         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
18885         HAVE_DECL_CEILF.
18886         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
18887
18888 2007-10-04  Bruno Haible  <bruno@clisp.org>
18889
18890         * modules/floorl-tests: New file.
18891         * tests/test-floorl.c: New file.
18892
18893         * modules/floorl: New file.
18894         * lib/floorl.c: Replace entire file.
18895         * m4/floorl.m4: New file.
18896         * lib/math.in.h (floorl): Replace declaration.
18897         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
18898         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
18899         * doc/functions/floorl.texi: Mention the 'floorl' module.
18900         * modules/mathl (Files): Remove lib/floorl.c.
18901         (Depends-on): Add floorl.
18902
18903 2007-10-04  Bruno Haible  <bruno@clisp.org>
18904
18905         * modules/floorf-tests: New file.
18906         * tests/test-floorf.c: New file.
18907
18908         * modules/floorf: New file.
18909         * lib/floor.c: New file.
18910         * lib/floorf.c: New file.
18911         * m4/floorf.m4: New file.
18912         * lib/math.in.h (floorf): New declaration.
18913         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
18914         HAVE_DECL_FLOORF.
18915         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
18916         HAVE_DECL_FLOORF.
18917         * doc/functions/floorf.texi: Mention the 'floorf' module.
18918
18919 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
18920             Bruno Haible  <bruno@clisp.org>
18921
18922         Advertise for the Git server instead of the CVS server.
18923         * doc/gnulib-intro.texi (Steady Development): Mention the Git
18924         repository instead of the CVS one.
18925         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
18926         about all VCS systems generically.
18927         * doc/gnulib.texi (Introduction): Capitalize `Git'.
18928
18929 2007-10-04  Bruno Haible  <bruno@clisp.org>
18930
18931         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
18932         means.
18933         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
18934
18935 2007-10-04  Bruno Haible  <bruno@clisp.org>
18936
18937         * modules/truncl-tests: New file.
18938         * tests/test-truncl.c: New file.
18939
18940         * modules/truncl: New file.
18941         * lib/truncl.c: New file.
18942         * m4/truncl.m4: New file.
18943         * lib/math.in.h (truncl): New declaration.
18944         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
18945         HAVE_DECL_TRUNCL.
18946         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
18947         HAVE_DECL_TRUNCL.
18948         * doc/functions/truncl.texi: Mention the 'truncl' module.
18949
18950 2007-10-04  Bruno Haible  <bruno@clisp.org>
18951
18952         * modules/truncf-tests: New file.
18953         * tests/test-truncf.c: New file.
18954
18955         * modules/truncf: New file.
18956         * lib/trunc.c: Make paramerizable through USE_* macros.
18957         * lib/truncf.c: New file.
18958         * m4/truncf.m4: New file.
18959         * lib/math.in.h (truncf): New declaration.
18960         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
18961         HAVE_DECL_TRUNCF.
18962         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
18963         HAVE_DECL_TRUNCF.
18964         * doc/functions/truncf.texi: Mention the 'truncf' module.
18965
18966 2007-10-03  Bruno Haible  <bruno@clisp.org>
18967
18968         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
18969         augmentation also for tests modules.
18970         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
18971         * modules/atexit-tests (Makefile.am): Likewise.
18972         * modules/binary-io-tests (Makefile.am): Likewise.
18973         * modules/c-strcase-tests (Makefile.am): Likewise.
18974         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
18975         * modules/canonicalize-tests (Makefile.am): Likewise.
18976         * modules/closein-tests (Makefile.am): Likewise.
18977         * modules/fprintf-posix-tests (Makefile.am): Likewise.
18978         * modules/freadahead-tests (Makefile.am): Likewise.
18979         * modules/fseek-tests (Makefile.am): Likewise.
18980         * modules/fseeko-tests (Makefile.am): Likewise.
18981         * modules/ftell-tests (Makefile.am): Likewise.
18982         * modules/ftello-tests (Makefile.am): Likewise.
18983         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
18984         * modules/isnanl-tests (Makefile.am): Likewise.
18985         * modules/lseek-tests (Makefile.am): Likewise.
18986         * modules/mbscasecmp-tests (Makefile.am): Likewise.
18987         * modules/mbscasestr-tests (Makefile.am): Likewise.
18988         * modules/mbschr-tests (Makefile.am): Likewise.
18989         * modules/mbscspn-tests (Makefile.am): Likewise.
18990         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
18991         * modules/mbspbrk-tests (Makefile.am): Likewise.
18992         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
18993         * modules/mbsrchr-tests (Makefile.am): Likewise.
18994         * modules/mbsspn-tests (Makefile.am): Likewise.
18995         * modules/mbsstr-tests (Makefile.am): Likewise.
18996         * modules/printf-posix-tests (Makefile.am): Likewise.
18997         * modules/snprintf-posix-tests (Makefile.am): Likewise.
18998         * modules/sprintf-posix-tests (Makefile.am): Likewise.
18999         * modules/tsearch-tests (Makefile.am): Likewise.
19000         * modules/uniname/uniname-tests (Makefile.am): Likewise.
19001         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
19002         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
19003         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
19004         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
19005         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
19006         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
19007         * modules/vprintf-posix-tests (Makefile.am): Likewise.
19008         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
19009         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
19010         * modules/xstrtoimax-tests (Makefile.am): Likewise.
19011         * modules/xstrtol-tests (Makefile.am): Likewise.
19012         * modules/xstrtoumax-tests (Makefile.am): Likewise.
19013         * modules/yesno-tests (Makefile.am): Likewise.
19014
19015 2007-10-03  Bruno Haible  <bruno@clisp.org>
19016
19017         * modules/trunc-tests: New file.
19018         * tests/test-trunc.c: New file.
19019
19020         * modules/trunc: New file.
19021         * lib/trunc.c: New file.
19022         * m4/trunc.m4: New file.
19023         * lib/math.in.h (trunc): New declaration.
19024         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
19025         HAVE_DECL_TRUNC.
19026         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
19027         HAVE_DECL_TRUNC.
19028         * doc/functions/trunc.texi: Mention the 'trunc' module.
19029
19030 2007-10-03  Bruno Haible  <bruno@clisp.org>
19031
19032         * tests/test-fpending.c: New file, mostly copied
19033         from coreutils/lib/t-fpending.c.
19034         * modules/fpending-tests: New file.
19035
19036 2007-10-03  Bruno Haible  <bruno@clisp.org>
19037
19038         Port the stdio extensions to QNX (untested).
19039         * lib/fseterr.c (fseterr): Add support for QNX.
19040         * lib/fbufmode.c (fbufmode): Likewise.
19041         * lib/freadable.c (freadable): Likewise.
19042         * lib/fwritable.c (fwritable): Likewise.
19043         * lib/freading.c (freading): Likewise.
19044         * lib/fwriting.c (fwriting): Likewise.
19045         * lib/freadahead.c (freadahed): Likewise.
19046         * lib/fpurge.c (fpurge): Likewise.
19047         * lib/fseeko.c (rpl_fseeko): Likewise.
19048
19049 2007-10-03  Bruno Haible  <bruno@clisp.org>
19050             Jim Meyering  <jim@meyering.net>
19051             Eric Blake  <ebb9@byu.net>
19052
19053         * doc/relocatable.texi: Use @command instead of @program.
19054
19055 2007-10-02  Jim Meyering  <jim@meyering.net>
19056
19057         Perform one more "_.h" -> ".in.h" substitution.
19058         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
19059         instead of unistd_.h here, too.
19060
19061 2007-10-01  Bruno Haible  <bruno@clisp.org>
19062
19063         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
19064         Needed for the alloca-opt module.
19065
19066 2007-09-30  Bruno Haible  <bruno@clisp.org>
19067
19068         * lib/alloca.in.h: Renamed from lib/alloca_.h.
19069         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
19070         alloca_.h.
19071         * lib/argz.in.h: Renamed from lib/argz_.h.
19072         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
19073         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
19074         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
19075         byteswap_.h.
19076         * lib/dirent.in.h: Renamed from lib/dirent_.h.
19077         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
19078         dirent_.h.
19079         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
19080         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
19081         fcntl_.h.
19082         * lib/float.in.h: Renamed from lib/float_.h.
19083         * modules/float (Files, Makefile.am): Use float.in.h instead of
19084         float_.h.
19085         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
19086         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
19087         fnmatch_.h.
19088         * lib/getopt.in.h: Renamed from lib/getopt_.h.
19089         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
19090         getopt_.h.
19091         * lib/glob.in.h: Renamed from lib/glob_.h.
19092         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
19093         * lib/iconv.in.h: Renamed from lib/iconv_.h.
19094         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
19095         iconv_.h.
19096         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
19097         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
19098         inttypes_.h.
19099         * lib/locale.in.h: Renamed from lib/locale_.h.
19100         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
19101         locale_.h.
19102         * lib/math.in.h: Renamed from lib/math_.h.
19103         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
19104         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
19105         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
19106         of netinet_in_.h. Add dependency.
19107         * lib/poll.in.h: Renamed from lib/poll_.h.
19108         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
19109         * lib/search.in.h: Renamed from lib/search_.h.
19110         * modules/search (Files, Makefile.am): Use search.in.h instead of
19111         search_.h.
19112         * lib/signal.in.h: Renamed from lib/signal_.h.
19113         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
19114         _signal.h.
19115         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
19116         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
19117         stdbool_.h.
19118         * lib/stdint.in.h: Renamed from lib/stdint_.h.
19119         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
19120         stdint_.h.
19121         * lib/stdio.in.h: Renamed from lib/stdio_.h.
19122         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
19123         stdio_.h.
19124         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
19125         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
19126         stdlib_.h.
19127         * lib/string.in.h: Renamed from lib/string_.h.
19128         * modules/string (Files, Makefile.am): Use string.in.h instead of
19129         string_.h.
19130         * doc/gnulib-tool.texi (Initial import): Update.
19131         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
19132         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
19133         of sys_select_.h. Add dependency.
19134         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
19135         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
19136         of sys_socket_.h.
19137         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
19138         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
19139         sys_stat_.h.
19140         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
19141         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
19142         sys_time_.h.
19143         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
19144         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
19145         sysexits_.h.
19146         * lib/time.in.h: Renamed from lib/time_.h.
19147         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
19148         * lib/unistd.in.h: Renamed from lib/unistd_.h.
19149         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
19150         unistd_.h.
19151         * lib/wchar.in.h: Renamed from lib/wchar_.h.
19152         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
19153         wchar_.h.
19154         * lib/wctype.in.h: Renamed from lib/wctype_.h.
19155         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
19156         wctype_.h.
19157         * build-aux/bootstrap (slurp): Update.
19158         * lib/.cppi-disable: Update.
19159
19160 2007-09-30  Bruno Haible  <bruno@clisp.org>
19161
19162         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
19163         Needed on BeOS.
19164
19165 2007-09-30  Bruno Haible  <bruno@clisp.org>
19166
19167         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
19168
19169 2007-09-29  Bruno Haible  <bruno@clisp.org>
19170
19171         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
19172
19173 2007-09-29  Bruno Haible  <bruno@clisp.org>
19174
19175         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
19176         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
19177         * build-aux/install-reloc: Compile also areadlink.c.
19178         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
19179
19180 2007-09-29  Bruno Haible  <bruno@clisp.org>
19181
19182         * gnulib-tool (func_emit_initmacro_done): Indentation.
19183
19184 2007-09-29  Bruno Haible  <bruno@clisp.org>
19185
19186         * README: Add CVS checkout update instructions.
19187         Info from Bob Proulx <bob@proulx.com>.
19188
19189 2007-09-28  Eric Blake  <ebb9@byu.net>
19190
19191         Provide move-if-change.
19192         * build-aux/move-if-change: New file, based on best practice
19193         rather than any canonical upstream location.
19194
19195 2007-09-28  Jim Meyering  <jim@meyering.net>
19196
19197         Fix canonicalize loop-detection corner case.
19198         Do not attempt to stat the symlink values stored via seen_triple.
19199         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
19200         on linux-2.6.18, (but not 2.6.22).
19201         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
19202         triple_compare.  The former compares dev,ino,filename, while the latter
19203         would actually stat dirname(filename) when dev and ino were equal.
19204         * lib/hash-triple.c: Install <string.h>.
19205         (STREQ): Define.
19206         (triple_compare_ino_str): New function.
19207         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
19208
19209 2007-09-28  Eric Blake  <ebb9@byu.net>
19210
19211         Enforce that AC_REPLACE_FUNCS files exist.
19212         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
19213         override check for typos.
19214
19215         Fix test-closein on Solaris 10.
19216         * tests/test-closein.c (main): Don't assume stdin can be inherited
19217         closed on all systems.
19218         * tests/test-closein.sh: Likewise.
19219         Reported by Piotr Tarnowski.
19220
19221 2007-09-28  Jim Meyering  <jim@meyering.net>
19222
19223         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
19224
19225 2007-09-27  Jim Meyering  <jim@meyering.net>
19226
19227         canonicalize: Avoid a false-positive cycle failure.
19228         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
19229         Sort.  Remove cycle-check.
19230         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
19231         not cycle-check.h.
19232         (seen_triple): New function.
19233         (canonicalize_filename_mode): Use it instead of cycle-check.
19234         * tests/test-canonicalize.c: Add a test for this bug.
19235         * tests/test-canonicalize.sh: Set up and run the test.
19236
19237         New module, file-set, from coreutils.
19238         * modules/file-set: Define it.
19239         * lib/file-set.c, lib/file-set.h: Implement.
19240
19241         New module, hash-triple, from coreutils.
19242         * modules/hash-triple: Define it.
19243         * lib/hash-triple.c, lib/hash-triple.h: Implement.
19244
19245 2007-09-25  Eric Blake  <ebb9@byu.net>
19246
19247         Fix strerror on Interix.
19248         * lib/string_.h (strerror): Declare replacement.
19249         * doc/functions/strerror.texi (strerror): Document the Interix
19250         shortcoming.
19251         * modules/string (Makefile.am): Support new hooks.
19252         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
19253         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
19254         gl_FUNC_STRERROR_SEPARATE.
19255         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
19256         * lib/strerror.c (rpl_strerror): Provide replacement.
19257         * modules/strerror (Depends-on): Add string.
19258         (configure.ac): Detect use of module.
19259         * tests/test-strerror.c: New file.
19260         * modules/strerror-tests: New test module.
19261         * modules/argp (Depends-on): Add strerror.
19262         * modules/error (Depends-on): Likewise.
19263         Reported by Martin Koeppe.
19264
19265 2007-09-24  Bruno Haible  <bruno@clisp.org>
19266
19267         * README: Update git instructions.
19268
19269 2007-09-24  Eric Blake  <ebb9@byu.net>
19270
19271         Revert fpending breakage from 2007-09-08.
19272         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
19273         __fpending.c.
19274
19275 2007-09-24  Jim Meyering  <jim@meyering.net>
19276
19277         filenamecat.c: Add a test.
19278         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
19279         showing how the function works when DIR is the empty string.
19280
19281 2007-09-21  Simon Josefsson  <simon@josefsson.org>
19282
19283         * tests/test-canonicalize.sh: Turn on executable bit.
19284
19285 2007-09-19  Eric Blake  <ebb9@byu.net>
19286
19287         * README: Update CVS instructions.
19288
19289 2007-09-18  Bruno Haible  <bruno@clisp.org>
19290
19291         * modules/areadlink: New file.
19292         * lib/areadlink.h (areadlink): New declaration.
19293         * lib/areadlink.c: New file, based on lib/xreadlink.c.
19294
19295 2007-09-17  Jim Meyering  <jim@meyering.net>
19296
19297         * lib/savewd.c (ESTALE) [!defined]: Define.
19298         Reported to be required on Interix by Martin Koeppe.
19299
19300 2007-09-17  Bruno Haible  <bruno@clisp.org>
19301
19302         * gnulib-tool (func_version): Use $version.
19303
19304 2007-09-16  Bruno Haible  <bruno@clisp.org>
19305
19306         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
19307         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
19308         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
19309         Reported by Greg Schafer <gschafer@zip.com.au>.
19310
19311 2007-09-15  Bruno Haible  <bruno@clisp.org>
19312
19313         * gnulib-tool (sed): Try a little harder to make bash understand the
19314         alias.
19315         Reported by Bruce Korb <bruce.korb@gmail.com>.
19316
19317 2007-09-13  Eric Blake  <ebb9@byu.net>
19318
19319         * ChangeLog: Remove conflict markers.
19320
19321 2007-09-13  Simon Josefsson  <simon@josefsson.org>
19322
19323         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
19324         Reported by Bruno Haible <bruno@clisp.org>.
19325
19326 2007-09-12  Bruno Haible  <bruno@clisp.org>
19327
19328         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
19329         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
19330         is not defined.
19331
19332 2007-09-12  Eric Blake  <ebb9@byu.net>
19333
19334         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
19335         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
19336         Autoconf definition.
19337         * modules/euidaccess (Depends-on): Add extensions, for
19338         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
19339         * modules/fnmatch (Depends-on): Likewise.
19340         * modules/getaddrinfo (Depends-on): Likewise.
19341         * modules/getdelim (Depends-on): Likewise.
19342         * modules/getline (Depends-on): Likewise.
19343         * modules/getsubopt (Depends-on): Likewise.
19344         * modules/gettext (Depends-on): Likewise.
19345         * modules/group-member (Depends-on): Likewise.
19346         * modules/mbchar (Depends-on): Likewise.
19347         * modules/memmem (Depends-on): Likewise.
19348         * modules/mempcpy (Depends-on): Likewise.
19349         * modules/memrchr (Depends-on): Likewise.
19350         * modules/pagealign_alloc (Depends-on): Likewise.
19351         * modules/readutmp (Depends-on): Likewise.
19352         * modules/stpcpy (Depends-on): Likewise.
19353         * modules/stpncpy (Depends-on): Likewise.
19354         * modules/strchrnul (Depends-on): Likewise.
19355         * modules/strndup (Depends-on): Likewise.
19356         * modules/strsep (Depends-on): Likewise.
19357         * modules/strverscmp (Depends-on): Likewise.
19358         * modules/vasprintf (Depends-on): Likewise.
19359         * modules/wcwidth (Depends-on): Likewise.
19360         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
19361         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
19362         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
19363         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
19364         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
19365         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
19366         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
19367         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
19368         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
19369         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
19370         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
19371         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
19372         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
19373         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
19374         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
19375         * m4/readutmp.m4 (gl_READUTMP): Likewise.
19376         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
19377         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
19378         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
19379         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
19380         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
19381         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
19382         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
19383         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
19384         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
19385         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
19386         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
19387         so that lock.m4 can be used in gettext without extensions module.
19388
19389 2007-09-11  Bruno Haible  <bruno@clisp.org>
19390
19391         * m4/isc-posix.m4: Remove file.
19392         Suggested by Eric Blake.
19393
19394 2007-09-11  Eric Blake  <ebb9@byu.net>
19395
19396         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
19397
19398 2007-09-10  Bruno Haible  <bruno@clisp.org>
19399
19400         * posix-modules: Fix typo in error message.
19401         Reported by Matt <mkraai@beckman.com>.
19402
19403 2007-09-09  Bruno Haible  <bruno@clisp.org>
19404
19405         * doc/functions/getdelim.texi: Update list of platforms lacking the
19406         function.
19407         * doc/functions/getline.texi: Likewise.
19408
19409 2007-09-09  Jim Meyering  <jim@meyering.net>
19410
19411         * lib/hash.c (hash_initialize): Detect calloc failure.
19412         Reported by Bruno Haible.
19413
19414 2007-09-09  Bruno Haible  <bruno@clisp.org>
19415
19416         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
19417         malloc or realloc fails.
19418
19419 2007-09-09  Bruno Haible  <bruno@clisp.org>
19420
19421         * modules/getcwd (Depends-on): Add malloc-posix.
19422         * modules/glob (Depends-on): Likewise.
19423         * modules/putenv (Depends-on): Likewise.
19424         * modules/strdup (Depends-on): Likewise.
19425         * modules/getdelim (Depends-on): Add realloc-posix.
19426         * modules/read-file (Depends-on): Likewise.
19427
19428 2007-09-09  Bruno Haible  <bruno@clisp.org>
19429
19430         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
19431         (gl_FUNC_MALLOC_POSIX): Require it.
19432         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
19433         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
19434         * modules/realloc (Files): Add m4/malloc.m4.
19435         * modules/calloc (Files): Likewise.
19436
19437 2007-09-09  Bruno Haible  <bruno@clisp.org>
19438
19439         * modules/malloc-posix: New file.
19440         * modules/malloc (Depends-on): Add malloc-posix.
19441         * lib/malloc.c: Include errno.h.
19442         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
19443         and a POSIX-compatible malloc into a single function. Set ENOMEM
19444         when returning NULL.
19445         * m4/malloc.m4: New file.
19446         * doc/functions/malloc.texi: Mention the malloc-posix module.
19447         * lib/stdlib_.h (malloc): New declaration.
19448         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19449         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
19450         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
19451         and HAVE_MALLOC_POSIX.
19452
19453 2007-09-09  Bruno Haible  <bruno@clisp.org>
19454
19455         * modules/realloc-posix: New file.
19456         * modules/realloc (Depends-on): Add realloc-posix.
19457         * lib/realloc.c: Include errno.h.
19458         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
19459         and a POSIX-compatible realloc into a single function. Set ENOMEM
19460         when returning NULL.
19461         * m4/realloc.m4: New file.
19462         * doc/functions/realloc.texi: Mention the realloc-posix module.
19463         * lib/stdlib_.h (realloc): New declaration.
19464         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19465         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
19466         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
19467         and HAVE_REALLOC_POSIX.
19468
19469 2007-09-09  Bruno Haible  <bruno@clisp.org>
19470
19471         * modules/calloc-posix: New file.
19472         * modules/calloc (Depends-on): Add calloc-posix.
19473         * lib/calloc.c: Include errno.h.
19474         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
19475         and a POSIX-compatible calloc into a single function. Set ENOMEM
19476         when returning NULL.
19477         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
19478         * doc/functions/calloc.texi: Mention the calloc-posix module.
19479         * lib/stdlib_.h (calloc): New declaration.
19480         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
19481         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
19482         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
19483         and HAVE_CALLOC_POSIX.
19484
19485 2007-09-09  Bruno Haible  <bruno@clisp.org>
19486
19487         Allow for modules to show an arbitrary notice.
19488         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
19489         * gnulib-tool: New option --extract-notice.
19490         (func_usage): Document it.
19491         (sed_extract_prog): Update.
19492         (func_get_notice): New function.
19493         (func_modules_notice): New function.
19494         (func_import, func_create_testdir): Invoke it.
19495         Suggested by Jim Meyering.
19496
19497 2007-09-09  Bruno Haible  <bruno@clisp.org>
19498
19499         * gnulib-tool: New options --verbose, --quiet.
19500         (func_usage): Document them.
19501         (verbose): New variable.
19502         (func_execute_command): New function.
19503         (func_import): Don't show the module list and the file list if
19504         $verbose < 0.
19505         (func_create_testdir): Likewise. Use func_execute_command.
19506         (func_create_megatestdir): Use func_execute_command.
19507
19508 2007-09-08  Bruno Haible  <bruno@clisp.org>
19509
19510         * gnulib-tool (func_import): Prefer rsync over wget when available,
19511         for fetching the PO files.
19512
19513 2007-09-08  Bruno Haible  <bruno@clisp.org>
19514
19515         * posix-modules: New file. Portions copied from gnulib-tool.
19516         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
19517
19518 2007-09-08  Jim Meyering  <jim@meyering.net>
19519
19520         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
19521         * lib/fpending.h: Rename from __fpending.h.
19522         * lib/fpending.c: Rename from __fpending.c.
19523         Include "fpending.h", not "__fpending.h".
19524         * lib/__fpending.h, lib/__fpending.c: Remove files.
19525         * modules/fpending (Files): Reflect new file names.
19526         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
19527
19528 2007-09-08  Bruno Haible  <bruno@clisp.org>
19529
19530         * m4/inttypes-h.m4: Remove stub file.
19531
19532 2007-09-07  Simon Josefsson  <simon@josefsson.org>
19533
19534         * doc/headers/stdint.texi: Discuss #include_next issue.
19535
19536 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
19537
19538         * build-aux/bootstrap: Remove obsolete comment about wget --help.
19539
19540 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19541
19542         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
19543         in variable name.
19544
19545 2007-09-03  Jim Meyering  <jim@meyering.net>
19546
19547         New module: git-version-gen.
19548         * modules/git-version-gen: New file.
19549
19550         Import changes from coreutils for bootstrap script.
19551
19552         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
19553
19554         bootstrap: uses rsync to download the .po files
19555         * build-aux/bootstrap (po_download_command_format): New global.
19556         (download_po_files): Use rsync.
19557         (update_po_files): Don't remove .po files after download,
19558         so future rsync runs can take advantage of the copies.
19559
19560         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
19561
19562         Solve the unnecessary-.po-file-regeneration problem once and for all.
19563         * build-aux/bootstrap (download_po_files): New function, renamed from
19564         get_translations.  Now, downloads, but doesn't update LINGUAS.
19565         (update_po_files): New function.
19566
19567         bootstrap: Ignore more.
19568         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
19569         uniwidth to e.g., lib/.gitignore.
19570         (slurp): Handle the sys_stat_.h -> sys mapping, too.
19571
19572         * build-aux/bootstrap: New setting: vc_ignore.
19573         (insert_sorted_if_absent): Create $file if absent.
19574         Adapt to new, possibly empty, list: $vc_ignore.
19575
19576         bootstrap: generate more ignorable names
19577         * build-aux/bootstrap (slurp): When generating ignorable names,
19578         also map .sin to .sed, .gperf to .c, and .y to .c.
19579
19580 2007-09-03  Jim Meyering  <jim@meyering.net>
19581
19582         * build-aux/git-version-gen: New file, from coreutils.  For details, see
19583         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
19584
19585 2007-09-02  Bruno Haible  <bruno@clisp.org>
19586
19587         Fix mis-recognition of 'mcs' on QNX 6.
19588         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
19589         output contains the string "Mono".
19590         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
19591         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
19592
19593 2007-09-01  Bruno Haible  <bruno@clisp.org>
19594
19595         Fix collision between uniwidth/* and linebreak modules.
19596         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
19597         u32_width): Remove declarations.
19598         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
19599         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
19600         streq3, streq2, streq1, streq0): Remove functions.
19601         (STREQ): Remove macro.
19602         (is_cjk_encoding): Remove function.
19603         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
19604         (uc_width, u8_width, u16_width, u32_width): Remove functions.
19605         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
19606         * NEWS: Document the change.
19607
19608 2007-09-01  Bruno Haible  <bruno@clisp.org>
19609
19610         * lib/streq.h: Add double-inclusion guard.
19611
19612 2007-09-01  Karl Berry  <karl@gnu.org>
19613
19614         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
19615
19616 2007-08-28  Jim Meyering  <jim@meyering.net>
19617
19618         Rename mreadlink_with_size to areadlink_with_size.
19619         * NEWS: Document the change.
19620         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
19621         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
19622         * lib/mreadlink.h: Rename this to...
19623         * lib/areadlink.h: ...this.
19624         * modules/mreadlink-with-size: Rename this to...
19625         * modules/areadlink-with-size: ...this.
19626         * lib/canonicalize.c: Reflect the renaming.
19627         * modules/canonicalize: Likewise.
19628
19629 2007-08-26  Bruno Haible  <bruno@clisp.org>
19630
19631         * gnulib-tool (func_import): When deciding which files to remove,
19632         consider also dangling symbolic links.
19633         Reported by Eric Blake.
19634
19635 2007-08-26  Bruno Haible  <bruno@clisp.org>
19636
19637         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
19638
19639 2007-08-23  Simon Josefsson  <simon@josefsson.org>
19640
19641         * lib/readline.c: Don't include getline.h, the prototype is now
19642         found in stdio.h.
19643
19644 2007-08-23  Jim Meyering  <jim@meyering.net>
19645
19646         Getdelim touchup.
19647         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
19648         around the funlockfile call, since funlockfile never sets errno.
19649         Don't set errno upon failed realloc.
19650
19651 2007-08-22  Eric Blake  <ebb9@byu.net>
19652
19653         Getline touchups.
19654         * lib/getdelim.c (getdelim): Revert regression that required *n to
19655         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
19656         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
19657         getdelim, rather than whether implementation is missing.
19658         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
19659         * lib/stdio_.h (getline): Also declare if replacement is
19660         required.
19661         * doc/functions/getdelim.texi: New file.
19662         * doc/functions/getline.texi: Likewise.
19663         * doc/gnulib.texi (Function Substitutes): Add new files.
19664         Reported by Bruno Haible.
19665
19666 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
19667
19668         * users.txt: Add Guile.
19669
19670 2007-08-22  Eric Blake  <ebb9@byu.net>
19671
19672         * tests/test-getdelim.c (main): Use remove, not unlink.
19673         * tests/test-getline.c (main): Likewise.
19674
19675         Move getline and getdelim into stdio.h, per POSIX 200x.
19676         * modules/getline (Files): Remove getline.h.
19677         (Depends-on): Add stdio.
19678         (configure.ac): Add module indicator.
19679         * modules/getdelim (Files): Remove getdelim.h.
19680         (Depends-on): Add stdio.
19681         (configure.ac): Add module indicator.
19682         * modules/stdio (Makefile.am): Work with new indicators.
19683         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
19684         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
19685         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
19686         * lib/getdelim.h: Delete.
19687         * lib/getline.h: Delete.
19688         * lib/stdio_.h (getdelim, getline): Declare.
19689         * modules/getdelim-tests: New module.
19690         * modules/getline-tests: Likewise.
19691         * tests/test-getdelim.c: New file.
19692         * tests/test-getline.c: Likewise.
19693         * NEWS: Document the change.
19694         * lib/getline.c: Update choice of header.
19695         * lib/csharpcomp.c: Likewise.
19696         * lib/getpass.c: Likewise.
19697         * lib/javacomp.c: Likewise.
19698         * lib/javaversion.c: Likewise.
19699         * lib/yesno.c: Likewise.
19700         * lib/getdelim.c: Likewise.
19701         (getdelim): Set errno on failure, and avoid memory leak.
19702
19703 2007-08-19  Bruno Haible  <bruno@clisp.org>
19704
19705         * modules/closein (Depends-on): Add freadahead.
19706         * lib/closein.c: Include freadahead.h.
19707         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
19708         is zero.
19709
19710 2007-08-19  Bruno Haible  <bruno@clisp.org>
19711
19712         * modules/freadahead-tests: New file.
19713         * tests/test-freadahead.sh: New file.
19714         * tests/test-freadahead.c: New file.
19715
19716         * modules/freadahead: New file.
19717         * lib/freadahead.h: New file.
19718         * lib/freadahead.c: New file.
19719         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
19720         fbufmode, fpurge, freadable, fwritable.
19721
19722 2007-08-19  Eric Blake  <ebb9@byu.net>
19723
19724         Test yesno in combination with closein.
19725         * lib/yesno.c (yesno): Document use of stdin.
19726         * modules/yesno-tests (Files): New module.
19727         * tests/test-yesno.c (main): New file.
19728         * tests/test-yesno.sh: Likewise.
19729
19730 2007-08-19  Bruno Haible  <bruno@clisp.org>
19731
19732         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
19733         * lib/fseeko.c (rpl_fseeko): Likewise.
19734         * lib/fseterr.c (fseterr): Likewise.
19735
19736 2007-08-19  Bruno Haible  <bruno@clisp.org>
19737
19738         * tests/test-lseek.c (main): Disable a test for BeOS.
19739         * doc/functions/lseek.texi: Document the BeOS bug.
19740
19741 2007-08-19  Bruno Haible  <bruno@clisp.org>
19742             Eric Blake  <ebb9@byu.net>
19743
19744         * lib/lseek.c: Include <sys/stat.h>.
19745         (rpl_lseek): Add workaround code also for Unix platforms.
19746         Needed for BeOS.
19747         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
19748         * doc/functions/lseek.texi: Document BeOS definiency.
19749
19750 2007-08-18  Bruno Haible  <bruno@clisp.org>
19751
19752         * modules/fstrcmp-tests: New file.
19753         * tests/test-fstrcmp.c: New file.
19754
19755 2007-08-18  Bruno Haible  <bruno@clisp.org>
19756
19757         * modules/fstrcmp: New file, from GNU gettext with modifications.
19758         * lib/fstrcmp.h: New file, from GNU gettext.
19759         * lib/fstrcmp.c: New file, from GNU gettext.
19760         * MODULES.html.sh (String handling): Add fstrcmp.
19761
19762 2007-08-18  Bruno Haible  <bruno@clisp.org>
19763
19764         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
19765         'bool'.
19766         (diag, compareseq): Remove const from the ctxt argument.
19767         (USE_HEURISTIC): Undefine at the end.
19768
19769 2007-08-18  Jim Meyering  <jim@meyering.net>
19770
19771         New file: lib/idcache.h
19772         * NEWS: Mention the addition.
19773         * modules/idcache (Files): Add lib/idcache.h
19774         * lib/idcache.c: Include "idcache.h".
19775         Don't include <sys/types.h>.
19776         Add a FIXME comment.
19777         Move file-scoped "static" declarations to the top.
19778         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
19779
19780 2007-08-17  Bruno Haible  <bruno@clisp.org>
19781         and Paul Eggert  <eggert@cs.ucla.edu>
19782
19783         * MODULES.html.sh: Add diffseq.
19784         * modules/diffseq: New file.
19785         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
19786         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
19787
19788 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19789
19790         Import changes from coreutils for bootstrap script.
19791
19792         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
19793
19794         * build-aux/bootstrap (slurp): Work even in environments where
19795         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
19796         current code does not slurp files whose names start with ".", and
19797         this looks like it might be a troublesome area.
19798
19799         2007-07-11  Jim Meyering  <jim@meyering.net>
19800
19801         If there's a GPL vN copyright comment, require that N == 3.
19802
19803         2007-07-08  Jim Meyering  <jim@meyering.net>
19804
19805         Run the coreutils-specific code only if tests/Makefile.am.in exists.
19806         * build-aux/bootstrap (mam_template): Move definition out of loop.
19807
19808         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
19809
19810         * build-aux/bootstrap (symlink_to_dir): Rename function from
19811         symlink_to_gnulib.  Add a directory parameter.  Update all
19812         callers.
19813         (cp_mark_as_generated): Also check for -- and link to -- files in
19814         gl/.
19815
19816         2007-07-08  Jim Meyering  <jim@meyering.net>
19817
19818         Adapt to deeper hierarchy in gnulib.
19819         * build-aux/bootstrap (symlink_to_dir): If the destination
19820         directory doesn't exist, create it. This is required at least for
19821         "lib/uniwidth/cjk.h".
19822
19823         2007-05-15  Jim Meyering  <jim@meyering.net>
19824
19825         * build-aux/bootstrap: Now that generated Makefile.am files
19826         are no longer under version control, they must be created at
19827         bootstrap time.
19828
19829 2007-08-14  Ben Pfaff  <blp@gnu.org>
19830
19831         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
19832
19833 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19834
19835         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
19836         given the changes below.
19837         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
19838         even on hosts that have padding bits beyond the supported 64.
19839
19840 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
19841
19842         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
19843         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
19844         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
19845         depends on it.
19846         (xstrtol_error): Remove.
19847         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
19848         but with a different signature.
19849         (ATTRIBUTE_NORETURN, __attribute__): New macros.
19850         * lib/xstrtol-error.c: Include exitfail.h.
19851         (xstrtol_fatal): New function, with a different signature from the
19852         old xstrtol_error, so that the caller need not worry about passing
19853         in an exit status, or about storage management of the option argument.
19854         (xstrtol_error): Now a static function.  Redo signature to
19855         implement xstrtol_fatal.  Output the correct number of hyphens in
19856         front of the option so that the caller need not worry about
19857         storage management.
19858         (N_): New macro.
19859         (_): Remove; not used now.
19860         * modules/xstrtol: Depend on getopt.
19861         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
19862         of old STRTOL_FATAL_ERROR macro.
19863         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
19864         of test program.
19865         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
19866         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
19867
19868 2007-08-08  Eric Blake  <ebb9@byu.net>
19869
19870         * lib/xstrtol-error.c: Add missing include.
19871
19872         Move xstrtol messages into gnulib domain, when --pobase is used.
19873         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
19874         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
19875         * modules/xstrtol (Files): Distribute new file.
19876         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
19877         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
19878         * tests/test-xstrtol.c: ...into new file.
19879         * tests/test-xstrtoul.c: Also test xstrtoul.
19880         * tests/test-xstrtoimax.c: Also test xstrtoimax.
19881         * tests/test-xstrtoumax.c: Also test xstrtoumax.
19882         * tests/test-xstrtol.sh: Drive the tests.
19883         * tests/test-xstrtoimax.sh: Likewise.
19884         * tests/test-xstrtoumax.sh: Likewise.
19885         * modules/xstrtol-tests: New module.
19886         * modules/xstrtoimax-tests: Likewise.
19887         * modules/xstrtoumax-tests: Likewise.
19888
19889 2007-08-08  Jim Meyering  <jim@meyering.net>
19890
19891         New function: mfile_name_concat.
19892         * lib/filenamecat.c (mfile_name_concat): New function, just like
19893         file_name_concat, but return NULL upon failure rather than exiting
19894         with a diagnostic.
19895         * lib/filenamecat.h: Declare it.
19896
19897 2007-08-07  Bruno Haible  <bruno@clisp.org>
19898
19899         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
19900         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
19901         warning from gcc.
19902         Reported by Eric Blake.
19903
19904 2007-08-07  Simon Josefsson  <simon@josefsson.org>
19905
19906         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
19907         * modules/crypto/arcfour (License): Likewise.
19908         * modules/crypto/des-tests (License): Likewise.
19909         * modules/crypto/gc-arctwo-tests (License): Likewise.
19910         * modules/crypto/gc-des-tests (License): Likewise.
19911         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
19912         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
19913         * modules/crypto/gc-md2-tests (License): Likewise.
19914         * modules/crypto/gc-md4-tests (License): Likewise.
19915         * modules/crypto/gc-md5-tests (License): Likewise.
19916         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
19917         * modules/crypto/gc-rijndael-tests (License): Likewise.
19918         * modules/crypto/gc-sha1-tests (License): Likewise.
19919         * modules/crypto/gc-tests (License): Likewise.
19920         * modules/crypto/hmac-md5 (License): Likewise.
19921         * modules/crypto/hmac-sha1 (License): Likewise.
19922         * modules/crypto/md2-tests (License): Likewise.
19923         * modules/crypto/md4-tests (License): Likewise.
19924         * modules/crypto/md5 (License): Likewise.
19925         * modules/crypto/rijndael (License): Likewise.
19926         * modules/crypto/sha1 (License): Likewise.
19927         * modules/memxor (License): Likewise.
19928
19929 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
19930         and Bruno Haible  <bruno@clisp.org>
19931
19932         * NEWS: Describe interface changes to human, xstrtol.
19933         * lib/human.h: Include <xstrtol.h>.
19934         (human_options): Return enum strtol_error, not int.  Remove
19935         bool arg; take int * instead.
19936         * lib/human.c: Don't include "gettext.h".
19937         (_): Remove; no longer used.
19938         Don't include <xstrtol.h>, since human.h does it.
19939         (human_options): Adjust to abovementioned interface changes.
19940         Do not report error to stderr; that's now the caller's
19941         responsibility.
19942         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
19943         interface change.
19944         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
19945         Str, Argument_type_string.  All uses changed.  Put " argument"
19946         in diagnostics to make them clearer.  Change wording of suffix
19947         message for clarity.
19948         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
19949         Argument_type_string.
19950         (STRTOL_FATAL_WARN): Remove; no longer used.
19951         * modules/human (Depends-on): Remove gettext-h.
19952
19953 2007-08-06  Simon Josefsson  <simon@josefsson.org>
19954
19955         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
19956
19957 2007-07-31  Bruno Haible  <bruno@clisp.org>
19958
19959         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
19960         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
19961         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
19962
19963 2007-07-31  Bruno Haible  <bruno@clisp.org>
19964
19965         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
19966         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
19967
19968 2007-07-30  Bruno Haible  <bruno@clisp.org>
19969
19970         * modules/base64 (License): Use the synonymous term "LGPLv2+".
19971         * modules/c-ctype (License): Likewise.
19972         * modules/c-strcase (License): Likewise.
19973         * modules/check-version (License): Likewise.
19974         * modules/iconv (License): Likewise.
19975         * modules/iconv_open (License): Likewise.
19976         * modules/read-file (License): Likewise.
19977         * modules/striconv (License): Likewise.
19978         * modules/strverscmp (License): Likewise.
19979         * modules/vasprintf (License): Likewise.
19980         * modules/crypto/des (License): Likewise.
19981         * modules/crypto/gc (License): Likewise.
19982         * modules/crypto/gc-arcfour (License): Likewise.
19983         * modules/crypto/gc-arctwo (License): Likewise.
19984         * modules/crypto/gc-des (License): Likewise.
19985         * modules/crypto/gc-hmac-md5 (License): Likewise.
19986         * modules/crypto/gc-hmac-sha1 (License): Likewise.
19987         * modules/crypto/gc-md2 (License): Likewise.
19988         * modules/crypto/gc-md4 (License): Likewise.
19989         * modules/crypto/gc-md5 (License): Likewise.
19990         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
19991         * modules/crypto/gc-random (License): Likewise.
19992         * modules/crypto/gc-rijndael (License): Likewise.
19993         * modules/crypto/gc-sha1 (License): Likewise.
19994         * modules/crypto/md2 (License): Likewise.
19995         * modules/crypto/md4 (License): Likewise.
19996
19997 2007-07-30  Jim Meyering  <jim@meyering.net>
19998
19999         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
20000         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
20001         it has valid stat data.  This bug would cause du not to count the
20002         sizes of inaccessible directories.
20003         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
20004         in <http://bugzilla.redhat.com/250077>.
20005
20006 2007-07-25  Peter O'Gorman  <peter@pogma.com>
20007             Bruno Haible  <bruno@clisp.org>
20008
20009         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
20010         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
20011         #include_next, gives a diagnostic about it, but reports no error in
20012         the exit code.
20013         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
20014
20015 2007-07-24  Ben Pfaff  <blp@gnu.org>
20016
20017         Improve name: "count-one-bits" is better than "popcount".
20018         * MODULES.html.sh: Update name.
20019         * lib/popcount.h: Renamed lib/count-one-bits.h.
20020         (popcount): Renamed count_one_bits.
20021         (popcountl): Renamed count_one_bits_l.
20022         (popcountll): Renamed count_one_bits_ll.
20023         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
20024         * modules/popcount: Renamed module/count-one-bits.
20025         * modules/popcount-tests: Renamed module/count-one-bits-tests.
20026         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
20027
20028 2007-07-23  Ben Pfaff  <blp@gnu.org>
20029
20030         * lib/popcount.h (popcount32): Reduce size of constants, to allow
20031         better code generation, and add U to large constants to avoid
20032         warnings, in non-GCC case.
20033         Suggested by Bruno Haible.
20034
20035 2007-07-23  Ben Pfaff  <blp@gnu.org>
20036
20037         * lib/popcount.h: Use verify_true instead of if...abort.
20038         * modules/popcount: Depend on verify module.
20039         Suggested by Jim Meyering.
20040
20041 2007-07-23  Bruno Haible  <bruno@clisp.org>
20042
20043         * gnulib-tool (func_import): Create a .cvsignore file also when the
20044         directory is not yet in CVS but the toplevel directory is. When
20045         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
20046         Reported by Karl Berry.
20047
20048 2007-07-22  Ben Pfaff  <blp@gnu.org>
20049
20050         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
20051         case.
20052         Suggested by Eric Blake.
20053
20054 2007-07-22  Ben Pfaff  <blp@gnu.org>
20055
20056         New module: popcount.
20057         * MODULES.html.sh: Add popcount.
20058         * modules/popcount: New file.
20059         * modules/popcount-tests: New file.
20060         * tests/test-popcount.c: New file.
20061         * lib/popcount.h: New file.
20062         * m4/popcount.m4: New file.
20063
20064 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20065
20066         * build-aux/announce-gen: Update to GPLv3.
20067
20068         * build-aux/config.guess: Update from config.
20069
20070 2007-07-21  Bruno Haible  <bruno@clisp.org>
20071
20072         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
20073         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
20074
20075 2007-07-20  Jim Meyering  <jim@meyering.net>
20076
20077         * check-module: Diagnose a self-dependency.
20078
20079 2007-07-19  Bruno Haible  <bruno@clisp.org>
20080
20081         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
20082         empty.
20083         Reported by Eric Blake.
20084
20085 2007-07-18  Bruno Haible  <bruno@clisp.org>
20086
20087         * gnulib-tool: New options --po-base, --po-domain.
20088         (func_usage): Document them.
20089         (pobase, po_domain): New variables.
20090         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
20091         DEFAULT_TEXT_DOMAIN.
20092         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
20093         (func_import): Consider pobase and po_domain. Create a po/ directory.
20094         (func_create_testdir): Set pobase and po_domain to empty.
20095         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
20096         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
20097
20098 2007-07-18  Bruno Haible  <bruno@clisp.org>
20099
20100         * gnulib-tool (func_get_automake_snippet): Synthesize also an
20101         EXTRA_DIST augmentation for files in build-aux/.
20102
20103 2007-07-16  Bruno Haible  <bruno@clisp.org>
20104
20105         * modules/lseek (License): Use the synonymous term "LGPLv2+".
20106         * modules/getdelim (License): Likewise.
20107
20108 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20109
20110         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
20111         * modules/d-type (License): Likewise.
20112         * modules/extensions (License): Likewise.
20113         * modules/fnmatch (License): Likewise.
20114         * modules/fseeko (License): Likewise.
20115         * modules/getaddrinfo (License): Likewise.
20116         * modules/getline (License): Likewise.
20117         * modules/getlogin_r (License): Likewise.
20118         * modules/getpass (License): Likewise.
20119         * modules/gettimeofday (License): Likewise.
20120         * modules/glob (License): Likewise.
20121         * modules/inet_ntop (License): Likewise.
20122         * modules/malloc (License): Likewise.
20123         * modules/malloca (License): Likewise.
20124         * modules/memmem (License): Likewise.
20125         * modules/mempcpy (License): Likewise.
20126         * modules/memset (License): Likewise.
20127         * modules/minmax (License): Likewise.
20128         * modules/mktime (License): Likewise.
20129         * modules/netinet_in (License): Likewise.
20130         * modules/pathmax (License): Likewise.
20131         * modules/poll (License): Likewise.
20132         * modules/regex (License): Likewise.
20133         * modules/snprintf (License): Likewise.
20134         * modules/stdbool (License): Likewise.
20135         * modules/stdint (License): Likewise.
20136         * modules/stdio (License): Likewise.
20137         * modules/strcase (License): Likewise.
20138         * modules/strcasestr (License): Likewise.
20139         * modules/strdup (License): Likewise.
20140         * modules/string (License): Likewise.
20141         * modules/strndup (License): Likewise.
20142         * modules/strnlen (License): Likewise.
20143         * modules/strpbrk (License): Likewise.
20144         * modules/strptime (License): Likewise.
20145         * modules/strsep (License): Likewise.
20146         * modules/sys_select (License): Likewise.
20147         * modules/sys_socket (License): Likewise.
20148         * modules/sys_stat (License): Likewise.
20149         * modules/sys_time (License): Likewise.
20150         * modules/time (License): Likewise.
20151         * modules/time_r (License): Likewise.
20152         * modules/timegm (License): Likewise.
20153         * modules/unistd (License): Likewise.
20154         * modules/vsnprintf (License): Likewise.
20155         * modules/wctype (License): Likewise.
20156
20157 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20158
20159         * modules/argz (License): LGPLv2+.
20160
20161 2007-07-15  Karl Berry  <karl@gnu.org>
20162
20163         * doc/gnulib.texi: revise node structure per new fdl.texi.
20164
20165 2007-07-14  Bruno Haible  <bruno@clisp.org>
20166
20167         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
20168         the output file.
20169         * lib/uniname/uninames.h: Regenerated.
20170
20171 2007-07-14  Karl Berry  <karl@gnu.org>
20172
20173         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
20174         omitting sectioning and index commands.
20175
20176 2007-07-13  Bruno Haible  <bruno@clisp.org>
20177
20178         New gnulib-tool option --more-symlinks.
20179         * gnulib-tool (func_usage): Document --more-symlinks.
20180         (do_copyrights): New variable.
20181         Recognize option --more-symlinks.
20182         (func_import): Don't add a copyright notice transform to
20183         sed_transform_lib_file if do_copyrights is empty.
20184
20185 2007-07-13  Bruno Haible  <bruno@clisp.org>
20186
20187         * lib/vasnprintf.c (decimal_point_char): Define also if
20188         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
20189         && !NEED_PRINTF_DIRECTIVE_A.
20190         Reported by Clemens Koller <clemens.koller@anagramm.de> via
20191         Gary V. Vaughan <gary@gnu.org>.
20192
20193 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
20194
20195         * lib/inttypes_.h: Undo previous change, since it was fixed
20196         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
20197
20198 2007-07-13  Bruno Haible  <bruno@clisp.org>
20199
20200         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
20201         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
20202
20203 2007-07-13  Jim Meyering  <jim@meyering.net>
20204
20205         df: Don't fail for Tru64's "file-on-file mount".
20206         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
20207         so we fall through and use statfs instead.  Details here:
20208         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
20209         Reported by Albert Chin.
20210
20211 2007-07-13  Bruno Haible  <bruno@clisp.org>
20212
20213         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
20214         * modules/configmake (License): Likewise.
20215         * modules/gettext (License): Likewise.
20216         * modules/gettext-h (License): Likewise.
20217         * modules/include_next (License): Likewise.
20218         * modules/link-warning (License): Likewise.
20219         * modules/localcharset (License): Likewise.
20220         * modules/localename (License): Likewise.
20221         * modules/lock (License): Likewise.
20222         * modules/relocatable-lib-lgpl (License): Likewise.
20223         * modules/size_max (License): Likewise.
20224         * modules/vasnprintf (License): Likewise.
20225         * modules/wchar (License): Likewise.
20226         * modules/xsize (License): Likewise.
20227
20228 2007-07-13  Bruno Haible  <bruno@clisp.org>
20229
20230         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
20231         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
20232
20233 2007-07-12  Bruno Haible  <bruno@clisp.org>
20234
20235         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
20236         in the modules files.
20237
20238 2007-07-11  Karl Berry  <karl@gnu.org>
20239
20240         * MODULES.html.sh (func_module): use
20241          sed -e '\|^'"${includefile}"'$|d'
20242          instead of /.../d, to avoid errors on $includefile's containing /.
20243
20244 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
20245
20246         * gnulib-tool (func_import): Avoid duplication of --avoid
20247         statements
20248         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
20249         names to `_' in variable names.
20250
20251 2007-07-10  Eric Blake  <ebb9@byu.net>
20252
20253         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
20254         * NEWS: Document this change.
20255
20256 2007-07-08  Bruno Haible  <bruno@clisp.org>
20257
20258         Update to Unicode 5.0.
20259         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
20260         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
20261         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
20262         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
20263         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
20264         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
20265         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
20266         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
20267         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
20268         U+10A3F, U+1D242..U+1D244.
20269         (nonspacing_table_ind): Update.
20270         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
20271         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
20272
20273 2007-07-08  Bruno Haible  <bruno@clisp.org>
20274
20275         Update to Unicode 5.0.
20276         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
20277         code transform. Extend the name index field of unicode_name_to_code and
20278         unicode_code_to_name from 16 to 24 bits.
20279         * lib/uniname/uniname.c (unicode_character_name,
20280         unicode_name_character): Add the range 0x12xxx to the code transform.
20281         * lib/uniname/uninames.h: Regenerated.
20282         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
20283
20284 2007-07-07  Bruno Haible  <bruno@clisp.org>
20285
20286         * modules/wcwidth-tests: New file.
20287         * tests/test-wcwidth.c: New file.
20288
20289         Work around MacOS X wcwidth() bug.
20290         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
20291         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
20292         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
20293         original wcwidth in non-UTF-8 locales.
20294         * modules/wcwidth (Depends-on): Add localcharset, streq,
20295         uniwidth/width.
20296         * doc/functions/wcwidth.texi: Update.
20297
20298 2007-07-07  Bruno Haible  <bruno@clisp.org>
20299
20300         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
20301         (wcwidth): New declaration.
20302         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
20303         macros.
20304         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
20305         here. Prepare for creating <wchar.h> unconditionally.
20306         * modules/wchar (Depends-on): Add link-warning.
20307         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
20308         REPLACE_WCWIDTH, and GL_LINK_WARNING.
20309         * lib/wcwidth.h: Remove file.
20310         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
20311         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
20312         * modules/wcwidth (Files): Remove lib/wcwidth.h.
20313         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
20314         (Include): Replace wcwidth.h with <wchar.h>.
20315         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
20316         * lib/mbchar.h: Don't include wcwidth.h.
20317         * lib/mbswidth.c: Likewise.
20318         * NEWS: Mention the change.
20319
20320 2007-07-07  Bruno Haible  <bruno@clisp.org>
20321
20322         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
20323         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
20324         definition with an external declaration.
20325         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
20326         defined as a function. Remove AC_C_INLINE requirement.
20327         * modules/wcwidth (Files): Add lib/wcwidth.c.
20328         (Makefile.am): Remove redundant statement.
20329
20330 2007-07-07  Bruno Haible  <bruno@clisp.org>
20331
20332         * MODULES.html.sh (Unicode string functions): Add the new modules.
20333
20334         * tests/uniwidth/test-u32-strwidth.c: New file.
20335         * modules/uniwidth/u32-strwidth-tests: New file.
20336
20337         * lib/uniwidth/u32-strwidth.c: New file.
20338         * modules/uniwidth/u32-strwidth: New file.
20339
20340         * tests/uniwidth/test-u16-strwidth.c: New file.
20341         * modules/uniwidth/u16-strwidth-tests: New file.
20342
20343         * lib/uniwidth/u16-strwidth.c: New file.
20344         * modules/uniwidth/u16-strwidth: New file.
20345
20346         * tests/uniwidth/test-u8-strwidth.c: New file.
20347         * modules/uniwidth/u8-strwidth-tests: New file.
20348
20349         * lib/uniwidth/u8-strwidth.c: New file.
20350         * modules/uniwidth/u8-strwidth: New file.
20351
20352         * tests/uniwidth/test-u32-width.c: New file.
20353         * modules/uniwidth/u32-width-tests: New file.
20354
20355         * lib/uniwidth/u32-width.c: New file.
20356         * modules/uniwidth/u32-width: New file.
20357
20358         * tests/uniwidth/test-u16-width.c: New file.
20359         * modules/uniwidth/u16-width-tests: New file.
20360
20361         * lib/uniwidth/u16-width.c: New file.
20362         * modules/uniwidth/u16-width: New file.
20363
20364         * tests/uniwidth/test-u8-width.c: New file.
20365         * modules/uniwidth/u8-width-tests: New file.
20366
20367         * lib/uniwidth/u8-width.c: New file.
20368         * modules/uniwidth/u8-width: New file.
20369
20370         * tests/uniwidth/test-uc_width.c: New file.
20371         * modules/uniwidth/width-tests: New file.
20372
20373         * lib/uniwidth/width.c: New file, from GNU libiconv.
20374         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
20375         * modules/uniwidth/width: New file.
20376
20377         * lib/uniwidth.h: New file, from GNU libiconv.
20378         * modules/uniwidth/base: New file.
20379
20380 2007-07-07  Bruno Haible  <bruno@clisp.org>
20381
20382         * lib/uniname.h: New file, from GNU gettext.
20383         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
20384         * lib/uniname/uninames.h: New file, from GNU gettext.
20385         * lib/uniname/uniname.c: New file, from GNU gettext.
20386         * tests/uniname/test-uninames.sh: New file.
20387         * tests/uniname/test-uninames.c: New file, from GNU gettext.
20388         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
20389         * modules/uniname/base: New file.
20390         * modules/uniname/uniname: New file.
20391         * modules/uniname/uniname-tests: New file.
20392         * MODULES.html.sh (Unicode string functions): Add the new modules.
20393
20394 2007-07-06  Bruno Haible  <bruno@clisp.org>
20395
20396         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
20397
20398 2007-07-06  Bruno Haible  <bruno@clisp.org>
20399
20400         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
20401         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
20402         includes <cygwin/sys_time.h> which includes <sys/select.h> which
20403         include <sys/time.h>.
20404         Reported by Eric Blake.
20405
20406 2007-07-06  Eric Blake  <ebb9@byu.net>
20407
20408         Fix testing canonicalize on cygwin.
20409         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
20410         Revert patch from 2007-06-19.
20411         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
20412         canonicalize module is also in use.
20413         * tests/test-canonicalize.c: New file.
20414         * tests/test-canonicalize.sh: Likewise.
20415         * modules/canonicalize-tests: Likewise.
20416
20417 2007-07-06  Jim Meyering  <jim@meyering.net>
20418
20419         * lib/getugroups.c (getugroups): Detect getgrent failure.
20420         Adjust comment to reflect reality: this function may return -1.
20421
20422 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
20423
20424         * build-aux/bootstrap (TP_URL,get_translations): Update to use
20425         the new TP address.
20426         (usage): Fix typo
20427         (gnulib_mk): New variable.
20428
20429 2007-07-05  Jim Meyering  <jim@meyering.net>
20430
20431         Don't let endgrent clobber errno, no matter how improbable.
20432         * lib/getugroups.c (getugroups): Save and restore errno around
20433         endgrent call.
20434
20435         Close the group DB even when failing with 2^31 or more members.
20436         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
20437
20438 2007-07-04  Jim Meyering  <jim@meyering.net>
20439
20440         * lib/getugroups.h: New file.
20441         * lib/getugroups.c: Include "getugroups.h".
20442         Remove uses of "register" keyword.
20443         Move local variable, "cp", down into scope where used.
20444         Give "username" parameter the "const" attribute.
20445         * modules/getugroups (Files): Add lib/getugroups.h
20446
20447 2007-07-04  Karl Berry  <karl@gnu.org>
20448
20449         * MODULES.html.sh (func_all_modules): Complete rename of
20450         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
20451
20452 2007-07-02  Bruno Haible  <bruno@clisp.org>
20453
20454         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
20455         mode, when inttypes.h comes from gnulib.
20456         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
20457
20458 2007-07-02  Simon Josefsson  <simon@josefsson.org>
20459
20460         * NEWS: Mention lgpl module name change.
20461
20462         * modules/lgpl-2.1: Renamed from lgpl.
20463
20464         * NEWS: Mention gpl module name change.
20465
20466         * modules/gpl-3.0: New file, based on gpl-2.0.
20467
20468         * modules/gpl-2.0: Renamed from gpl.
20469
20470         * modules/gpl: Fix filename, doc/gpl.texi is now found at
20471         doc/gpl-2.0.texi.
20472
20473 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
20474
20475         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
20476         #define __STDC_LIMIT_MACROS temporarily while including
20477         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
20478         Problem reported by Joel E. Denny in
20479         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
20480
20481 2007-07-01  Bruno Haible  <bruno@clisp.org>
20482
20483         * lib/unistdio.h: New file.
20484         * lib/unistdio/u-asnprintf.h: New file.
20485         * lib/unistdio/u-asprintf.h: New file.
20486         * lib/unistdio/u-printf-args.c: New file.
20487         * lib/unistdio/u-printf-args.h: New file.
20488         * lib/unistdio/u-printf-parse.h: New file.
20489         * lib/unistdio/u-snprintf.h: New file.
20490         * lib/unistdio/u-sprintf.h: New file.
20491         * lib/unistdio/u-vasprintf.h: New file.
20492         * lib/unistdio/u-vsnprintf.h: New file.
20493         * lib/unistdio/u-vsprintf.h: New file.
20494         * lib/unistdio/ulc-asnprintf.c: New file.
20495         * lib/unistdio/ulc-asprintf.c: New file.
20496         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
20497         * lib/unistdio/ulc-printf-parse.c: New file.
20498         * lib/unistdio/ulc-snprintf.c: New file.
20499         * lib/unistdio/ulc-sprintf.c: New file.
20500         * lib/unistdio/ulc-vasnprintf.c: New file.
20501         * lib/unistdio/ulc-vasprintf.c: New file.
20502         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
20503         * lib/unistdio/ulc-vsnprintf.c: New file.
20504         * lib/unistdio/ulc-vsprintf.c: New file.
20505         * lib/unistdio/u8-asnprintf.c: New file.
20506         * lib/unistdio/u8-asprintf.c: New file.
20507         * lib/unistdio/u8-printf-parse.c: New file.
20508         * lib/unistdio/u8-snprintf.c: New file.
20509         * lib/unistdio/u8-sprintf.c: New file.
20510         * lib/unistdio/u8-vasnprintf.c: New file.
20511         * lib/unistdio/u8-vasprintf.c: New file.
20512         * lib/unistdio/u8-vsnprintf.c: New file.
20513         * lib/unistdio/u8-vsprintf.c: New file.
20514         * lib/unistdio/u8-u8-asnprintf.c: New file.
20515         * lib/unistdio/u8-u8-asprintf.c: New file.
20516         * lib/unistdio/u8-u8-snprintf.c: New file.
20517         * lib/unistdio/u8-u8-sprintf.c: New file.
20518         * lib/unistdio/u8-u8-vasnprintf.c: New file.
20519         * lib/unistdio/u8-u8-vasprintf.c: New file.
20520         * lib/unistdio/u8-u8-vsnprintf.c: New file.
20521         * lib/unistdio/u8-u8-vsprintf.c: New file.
20522         * lib/unistdio/u16-asnprintf.c: New file.
20523         * lib/unistdio/u16-asprintf.c: New file.
20524         * lib/unistdio/u16-printf-parse.c: New file.
20525         * lib/unistdio/u16-snprintf.c: New file.
20526         * lib/unistdio/u16-sprintf.c: New file.
20527         * lib/unistdio/u16-vasnprintf.c: New file.
20528         * lib/unistdio/u16-vasprintf.c: New file.
20529         * lib/unistdio/u16-vsnprintf.c: New file.
20530         * lib/unistdio/u16-vsprintf.c: New file.
20531         * lib/unistdio/u16-u16-asnprintf.c: New file.
20532         * lib/unistdio/u16-u16-asprintf.c: New file.
20533         * lib/unistdio/u16-u16-snprintf.c: New file.
20534         * lib/unistdio/u16-u16-sprintf.c: New file.
20535         * lib/unistdio/u16-u16-vasnprintf.c: New file.
20536         * lib/unistdio/u16-u16-vasprintf.c: New file.
20537         * lib/unistdio/u16-u16-vsnprintf.c: New file.
20538         * lib/unistdio/u16-u16-vsprintf.c: New file.
20539         * lib/unistdio/u32-asnprintf.c: New file.
20540         * lib/unistdio/u32-asprintf.c: New file.
20541         * lib/unistdio/u32-printf-parse.c: New file.
20542         * lib/unistdio/u32-snprintf.c: New file.
20543         * lib/unistdio/u32-sprintf.c: New file.
20544         * lib/unistdio/u32-vasnprintf.c: New file.
20545         * lib/unistdio/u32-vasprintf.c: New file.
20546         * lib/unistdio/u32-vsnprintf.c: New file.
20547         * lib/unistdio/u32-vsprintf.c: New file.
20548         * lib/unistdio/u32-u32-asnprintf.c: New file.
20549         * lib/unistdio/u32-u32-asprintf.c: New file.
20550         * lib/unistdio/u32-u32-snprintf.c: New file.
20551         * lib/unistdio/u32-u32-sprintf.c: New file.
20552         * lib/unistdio/u32-u32-vasnprintf.c: New file.
20553         * lib/unistdio/u32-u32-vasprintf.c: New file.
20554         * lib/unistdio/u32-u32-vsnprintf.c: New file.
20555         * lib/unistdio/u32-u32-vsprintf.c: New file.
20556         * tests/unistdio/test-ulc-asnprintf1.c: New file.
20557         * tests/unistdio/test-ulc-asnprintf1.h: New file.
20558         * tests/unistdio/test-ulc-printf1.h: New file.
20559         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
20560         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
20561         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
20562         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
20563         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
20564         * tests/unistdio/test-ulc-vasprintf1.c: New file.
20565         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
20566         * tests/unistdio/test-ulc-vsprintf1.c: New file.
20567         * tests/unistdio/test-u8-asnprintf1.c: New file.
20568         * tests/unistdio/test-u8-asnprintf1.h: New file.
20569         * tests/unistdio/test-u8-printf1.h: New file.
20570         * tests/unistdio/test-u8-vasnprintf1.c: New file.
20571         * tests/unistdio/test-u8-vasnprintf2.c: New file.
20572         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
20573         * tests/unistdio/test-u8-vasnprintf3.c: New file.
20574         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
20575         * tests/unistdio/test-u8-vasprintf1.c: New file.
20576         * tests/unistdio/test-u8-vsnprintf1.c: New file.
20577         * tests/unistdio/test-u8-vsprintf1.c: New file.
20578         * tests/unistdio/test-u16-asnprintf1.c: New file.
20579         * tests/unistdio/test-u16-asnprintf1.h: New file.
20580         * tests/unistdio/test-u16-printf1.h: New file.
20581         * tests/unistdio/test-u16-vasnprintf1.c: New file.
20582         * tests/unistdio/test-u16-vasnprintf2.c: New file.
20583         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
20584         * tests/unistdio/test-u16-vasnprintf3.c: New file.
20585         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
20586         * tests/unistdio/test-u16-vasprintf1.c: New file.
20587         * tests/unistdio/test-u16-vsnprintf1.c: New file.
20588         * tests/unistdio/test-u16-vsprintf1.c: New file.
20589         * tests/unistdio/test-u32-asnprintf1.c: New file.
20590         * tests/unistdio/test-u32-asnprintf1.h: New file.
20591         * tests/unistdio/test-u32-printf1.h: New file.
20592         * tests/unistdio/test-u32-vasnprintf1.c: New file.
20593         * tests/unistdio/test-u32-vasnprintf2.c: New file.
20594         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
20595         * tests/unistdio/test-u32-vasnprintf3.c: New file.
20596         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
20597         * tests/unistdio/test-u32-vasprintf1.c: New file.
20598         * tests/unistdio/test-u32-vsnprintf1.c: New file.
20599         * tests/unistdio/test-u32-vsprintf1.c: New file.
20600         * modules/unistdio/base: New file.
20601         * modules/unistdio/u-printf-args: New file.
20602         * modules/unistdio/ulc-asnprintf: New file.
20603         * modules/unistdio/ulc-asprintf: New file.
20604         * modules/unistdio/ulc-fprintf: New file.
20605         * modules/unistdio/ulc-printf-parse: New file.
20606         * modules/unistdio/ulc-snprintf: New file.
20607         * modules/unistdio/ulc-sprintf: New file.
20608         * modules/unistdio/ulc-vasnprintf: New file.
20609         * modules/unistdio/ulc-vasprintf: New file.
20610         * modules/unistdio/ulc-vfprintf: New file.
20611         * modules/unistdio/ulc-vsnprintf: New file.
20612         * modules/unistdio/ulc-vsprintf: New file.
20613         * modules/unistdio/u8-asnprintf: New file.
20614         * modules/unistdio/u8-asprintf: New file.
20615         * modules/unistdio/u8-printf-parse: New file.
20616         * modules/unistdio/u8-snprintf: New file.
20617         * modules/unistdio/u8-sprintf: New file.
20618         * modules/unistdio/u8-vasnprintf: New file.
20619         * modules/unistdio/u8-vasprintf: New file.
20620         * modules/unistdio/u8-vsnprintf: New file.
20621         * modules/unistdio/u8-vsprintf: New file.
20622         * modules/unistdio/u8-u8-asnprintf: New file.
20623         * modules/unistdio/u8-u8-asprintf: New file.
20624         * modules/unistdio/u8-u8-snprintf: New file.
20625         * modules/unistdio/u8-u8-sprintf: New file.
20626         * modules/unistdio/u8-u8-vasnprintf: New file.
20627         * modules/unistdio/u8-u8-vasprintf: New file.
20628         * modules/unistdio/u8-u8-vsnprintf: New file.
20629         * modules/unistdio/u8-u8-vsprintf: New file.
20630         * modules/unistdio/u16-asnprintf: New file.
20631         * modules/unistdio/u16-asprintf: New file.
20632         * modules/unistdio/u16-printf-parse: New file.
20633         * modules/unistdio/u16-snprintf: New file.
20634         * modules/unistdio/u16-sprintf: New file.
20635         * modules/unistdio/u16-vasnprintf: New file.
20636         * modules/unistdio/u16-vasprintf: New file.
20637         * modules/unistdio/u16-vsnprintf: New file.
20638         * modules/unistdio/u16-vsprintf: New file.
20639         * modules/unistdio/u16-u16-asnprintf: New file.
20640         * modules/unistdio/u16-u16-asprintf: New file.
20641         * modules/unistdio/u16-u16-snprintf: New file.
20642         * modules/unistdio/u16-u16-sprintf: New file.
20643         * modules/unistdio/u16-u16-vasnprintf: New file.
20644         * modules/unistdio/u16-u16-vasprintf: New file.
20645         * modules/unistdio/u16-u16-vsnprintf: New file.
20646         * modules/unistdio/u16-u16-vsprintf: New file.
20647         * modules/unistdio/u32-asnprintf: New file.
20648         * modules/unistdio/u32-asprintf: New file.
20649         * modules/unistdio/u32-printf-parse: New file.
20650         * modules/unistdio/u32-snprintf: New file.
20651         * modules/unistdio/u32-sprintf: New file.
20652         * modules/unistdio/u32-vasnprintf: New file.
20653         * modules/unistdio/u32-vasprintf: New file.
20654         * modules/unistdio/u32-vsnprintf: New file.
20655         * modules/unistdio/u32-vsprintf: New file.
20656         * modules/unistdio/u32-u32-asnprintf: New file.
20657         * modules/unistdio/u32-u32-asprintf: New file.
20658         * modules/unistdio/u32-u32-snprintf: New file.
20659         * modules/unistdio/u32-u32-sprintf: New file.
20660         * modules/unistdio/u32-u32-vasnprintf: New file.
20661         * modules/unistdio/u32-u32-vasprintf: New file.
20662         * modules/unistdio/u32-u32-vsnprintf: New file.
20663         * modules/unistdio/u32-u32-vsprintf: New file.
20664         * modules/unistdio/ulc-asnprintf-tests: New file.
20665         * modules/unistdio/ulc-vasnprintf-tests: New file.
20666         * modules/unistdio/ulc-vasprintf-tests: New file.
20667         * modules/unistdio/ulc-vsnprintf-tests: New file.
20668         * modules/unistdio/ulc-vsprintf-tests: New file.
20669         * modules/unistdio/u8-asnprintf-tests: New file.
20670         * modules/unistdio/u8-vasnprintf-tests: New file.
20671         * modules/unistdio/u8-vasprintf-tests: New file.
20672         * modules/unistdio/u8-vsnprintf-tests: New file.
20673         * modules/unistdio/u8-vsprintf-tests: New file.
20674         * modules/unistdio/u16-asnprintf-tests: New file.
20675         * modules/unistdio/u16-vasnprintf-tests: New file.
20676         * modules/unistdio/u16-vasprintf-tests: New file.
20677         * modules/unistdio/u16-vsnprintf-tests: New file.
20678         * modules/unistdio/u16-vsprintf-tests: New file.
20679         * modules/unistdio/u32-asnprintf-tests: New file.
20680         * modules/unistdio/u32-vasnprintf-tests: New file.
20681         * modules/unistdio/u32-vasprintf-tests: New file.
20682         * modules/unistdio/u32-vsnprintf-tests: New file.
20683         * modules/unistdio/u32-vsprintf-tests: New file.
20684         * MODULES.html.sh (Unicode string functions): Add the new modules.
20685
20686 2007-07-01  Bruno Haible  <bruno@clisp.org>
20687
20688         * lib/sprintf.c (sprintf): Limit the available length estimation,
20689         to avoid address wraparound.
20690         * lib/vsprintf.c (vsprintf): Likewise.
20691         * modules/sprintf-posix (Dependencies): Add stdint.
20692         * modules/vsprintf-posix (Dependencies): Likewise.
20693
20694 2007-07-01  Bruno Haible  <bruno@clisp.org>
20695
20696         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
20697         Windows PATH as well. Conservative double-quoting. Comments.
20698
20699 2007-07-01  Bruno Haible  <bruno@clisp.org>
20700             Eric Blake  <ebb9@byu.net>
20701             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20702
20703         * gnulib-tool (self_abspathname): Fix algorithm to cope with
20704         empty components in $PATH, denoting '.'.
20705
20706 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20707
20708         * gnulib-tool: Fix indentation.
20709         (func_create_megatestdir): Likewise.
20710         Report by Bruno Haible.
20711
20712 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20713
20714         Sync from Automake.
20715         * build-aux/gnupload: Fix shell portability issues with for loops.
20716         Report by Karl Berry.
20717
20718 2007-06-29  Simon Josefsson  <simon@josefsson.org>
20719
20720         * build-aux/maint.mk (POURL): Use translationproject.org.
20721
20722 2007-06-27  Simon Josefsson  <simon@josefsson.org>
20723             Bruno Haible  <bruno@clisp.org>
20724
20725         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
20726         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
20727         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
20728         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
20729         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
20730
20731 2007-06-27  Bruno Haible  <bruno@clisp.org>
20732
20733         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
20734         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
20735
20736 2007-06-26  Karl Berry  <karl@gnu.org>
20737
20738         * MODULES.html.sh: remove xreadlink-with-size.
20739
20740 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
20741
20742         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
20743         method that I hope also handles the double-include problem noted
20744         by Bruno Haible in
20745         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
20746
20747 2007-06-23  Bruno Haible  <bruno@clisp.org>
20748
20749         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20750         Don't let the 'mostlyclean' target fail if the last subdirectory could
20751         not be removed.
20752         Reported by Karl Berry.
20753
20754 2007-06-23  Bruno Haible  <bruno@clisp.org>
20755
20756         * gnulib-tool (echo): Add a speedier workaround for ksh.
20757         * tests/test-echo.sh: Likewise.
20758
20759 2007-06-23  Bruno Haible  <bruno@clisp.org>
20760
20761         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
20762         * tests/test-echo.sh: Likewise.
20763
20764 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20765
20766         * gnulib-tool (IFS): Initialize early, so we don't set it to
20767         empty later.
20768         (self_abspathname): Rewrite algorithm to set it, reindent.
20769         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
20770         (func_create_megatestdir): Merge some sed scripts.
20771
20772 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
20773
20774         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
20775         exposed by Sun Studio 11 cc on Solaris 8.
20776
20777 2007-06-22  Bruno Haible  <bruno@clisp.org>
20778
20779         * gnulib-tool (echo): Ensure the echo primitive does not interpret
20780         backslashes.
20781         * tests/test-echo.sh: New file.
20782
20783 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20784
20785         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
20786         simplify `sed_replace_build_aux' scripts, they are portable but
20787         echoing them with `echo' is not.
20788         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
20789
20790 2007-06-21  Karl Berry  <karl@gnu.org>
20791
20792         * config/srclist.txt: guess we can't handle the licenses via
20793         srclist at the moment.
20794
20795 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
20796
20797         * MODULES.html.sh: Add include_next.
20798         * modules/include_next: New file.
20799
20800 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
20801
20802         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
20803         INCLUDE_NEXT.
20804         (gl_CHECK_NEXT_HEADERS): New macro.
20805         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
20806         the obsolescent gl_ABSOLUTE_HEADER.
20807         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
20808         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
20809         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
20810         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
20811         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
20812         * m4/math_h.m4 (gl_MATH_H): Likewise.
20813         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
20814         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
20815         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
20816         * m4/stdint.m4 (gl_STDINT_H): Likewise.
20817         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
20818         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
20819         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
20820         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
20821         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
20822         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
20823         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
20824         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
20825         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
20826         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
20827         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
20828         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
20829         * m4/inttypes.m4 (gl_INTTYPES_H): Define
20830         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
20831         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
20832         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
20833         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
20834         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
20835         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
20836         * lib/float_.h: Likewise.
20837         * lib/inttypes_.h: Likewise.
20838         * lib/math_.h: Likewise.
20839         * lib/search_.h: Likewise.
20840         * lib/signal_.h: Likewise.
20841         * lib/stdint_.h: Likewise.
20842         * lib/stdio_.h: Likewise.
20843         * lib/stdlib_.h: Likewise.
20844         * lib/string_.h: Likewise.
20845         * lib/sys_stat_.h: Likewise.
20846         * lib/sys_time_.h: Likewise.
20847         * lib/time_.h: Likewise.
20848         * lib/unistd_.h: Likewise.
20849         * lib/wchar_.h: Likewise.
20850         * lib/wctype_.h: Likewise.
20851         * lib/dirent_.h: Likewise.
20852         * lib/iconv_.h: Likewise.
20853         * lib/locale_.h: Likewise.
20854         * lib/netinet_in_.h: Likewise.
20855         * lib/sys_select_.h: Likewise.
20856         * lib/sys_socket_.h: Likewise.
20857         * lib/sysexits_.h: Likewise.
20858         * modules/fcntl (Depends-on): Depend on include_next, not
20859         absolute_header.
20860         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
20861         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
20862         * modules/fchdir: Likewise.
20863         * modules/float: Likewise.
20864         * modules/iconv_open: Likewise.
20865         * modules/inttypes: Likewise.
20866         * modules/locale: Likewise.
20867         * modules/math: Likewise.
20868         * modules/netinet_in: Likewise.
20869         * modules/search: Likewise.
20870         * modules/signal: Likewise.
20871         * modules/stdint: Likewise.
20872         * modules/stdio: Likewise.
20873         * modules/stdlib: Likewise.
20874         * modules/string: Likewise.
20875         * modules/sys_select: Likewise.
20876         * modules/sys_socket: Likewise.
20877         * modules/sys_stat: Likewise.
20878         * modules/sys_time: Likewise.
20879         * modules/sysexits: Likewise.
20880         * modules/time: Likewise.
20881         * modules/unistd: Likewise.
20882         * modules/wchar: Likewise.
20883         * modules/wctype: Likewise.
20884         * modules/sys_stat: Change maintainer to "all".
20885         * modules/unistd: Likewise.
20886
20887 2007-06-20  Karl Berry  <karl@gnu.org>
20888
20889         * config/srclist.txt: track www changes in license files.
20890
20891 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
20892
20893         * build-aux/bootstrap: Remove stray dot.
20894         Make sure build_aux settings are honored when linking
20895         gnulib_extra_files.
20896
20897 2007-06-19  Eric Blake  <ebb9@byu.net>
20898
20899         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
20900         Allow compilation on cygwin.
20901
20902 2007-06-19  Jim Meyering  <jim@meyering.net>
20903
20904         xreadlink-with-size: Remove module.  No longer used.
20905         Ex-callers now use xreadlink or mreadlink-with-size.
20906         * modules/xreadlink-with-size: Remove module.
20907         * lib/xreadlink-with-size.c: Remove file.
20908         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
20909         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
20910         just before the function definition *is* accurate.
20911
20912         Eliminate one way canonicalize_filename_mode could exit.
20913         * lib/canonicalize.c (canonicalize_filename_mode):
20914         Use mreadlink_with_size, not xreadlink_with_size.
20915
20916 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
20917
20918         Detect porting problems to FreeBSD/arm, which has time_t wider than
20919         long int.  Original problem reported for GNU diff by Xin Li in
20920         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
20921         * modules/getdate (Depends-on): Add intprops, verify.
20922         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
20923         is an integer type no wider than long int.
20924
20925 2007-06-18  Jim Meyering  <jim@meyering.net>
20926
20927         New module: mreadlink-with-size.
20928         * MODULES.html.sh: Add mreadlink-with-size.
20929         * modules/mreadlink-with-size: New module
20930         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
20931         not xreadlink-with-size.
20932         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
20933
20934 2007-06-16  Bruno Haible  <bruno@clisp.org>
20935
20936         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
20937         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
20938         Reported by Gary V. Vaughan <gary@gnu.org>.
20939
20940 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
20941
20942         Revamp lchown so that it lives in unistd.h where it belongs.
20943         * lib/lchown.h: Remove.
20944         * lib/dirchownmod.c: Don't include lib/lchown.h.
20945         * lib/fchownat.c: Likewise.
20946         * lib/openat.c: Likewise.
20947         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
20948         does not follow symlinks.
20949         (EOPNOTSUPP): Define if not defined.
20950         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
20951         is defined to 0.
20952         (lchown): New decl.
20953         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
20954         Do not check for lchown decl.
20955         Set REPLACE_LCHOWN.
20956         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
20957         REPLACE_LCHOWN.
20958         * modules/chown: Make it clear it follows symlinks.
20959         * modules/lchown: Make it clear it doesn't follow symlinks.
20960         (Files): Remove lib/lchown.h
20961         (Depends-on): Add unistd.
20962         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
20963         (Include): Include <unistd.h>, not "lchown.h".
20964         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
20965         REPLACE_LCHOWN.
20966
20967 2007-06-15  Jim Meyering  <jim@meyering.net>
20968
20969         Change license (GPL to LGPL) of fsusage and dependents.
20970         * modules/fsusage (License): Change to LGPL.
20971         * modules/full-read (License): Likewise.
20972         * modules/full-write (License): Likewise.
20973         * modules/safe-read (License): Likewise.
20974         * modules/safe-write (License): Likewise.
20975
20976 2007-06-14  Ben Pfaff  <blp@gnu.org>
20977
20978         Missing part of allocsa -> malloca transition.
20979         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
20980         gl_MALLOCA.
20981
20982 2007-06-12  Bruno Haible  <bruno@clisp.org>
20983
20984         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
20985         to ia64, x86_64, i386.
20986         Reported by Eric Blake.
20987
20988 2007-06-12  Bruno Haible  <bruno@clisp.org>
20989
20990         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
20991         cross-compiling to x86_64.
20992
20993 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
20994
20995         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
20996         glitch reported by Ralf Wildenhues in
20997         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
20998
20999         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
21000         Vin Shelton.
21001
21002 2007-06-11  Bruno Haible  <bruno@clisp.org>
21003
21004         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
21005         replacement string.
21006         Reported by Eric Blake.
21007
21008 2007-06-10  Bruno Haible  <bruno@clisp.org>
21009
21010         Prepare vasnprintf code for use with Unicode strings.
21011         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
21012         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
21013         TYPE_U32_STRING.
21014         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
21015         a_u32_string variants.
21016         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
21017         * lib/printf-args.c: Don't include config.h and the specification
21018         header if PRINTF_FETCHARGS is already defined.
21019         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
21020         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
21021         TYPE_U16_STRING, TYPE_U32_STRING.
21022         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
21023         u16_directive, u16_directives, u32_directive, u32_directives): New
21024         types.
21025         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
21026         New declarations.
21027         * lib/printf-parse.c: Don't include config.h and the specification
21028         header if PRINTF_PARSE is already defined. Eliminate the set of
21029         parameters for WIDE_CHAR_VERSION; the user of this file must provide
21030         them now. Include c-ctype.h.
21031         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
21032         directive and CHAR_T_ONLY_ASCII.
21033         * lib/vasnprintf.c: Don't include config.h and the specification header
21034         if VASNPRINTF is already defined.
21035         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
21036         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
21037         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
21038         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
21039         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
21040         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
21041         code accordingly.
21042         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
21043         pad_ourselves also in this case, with the 'c' and 's' directives, and
21044         with a different notion of "width".
21045         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
21046
21047 2007-06-10  Bruno Haible  <bruno@clisp.org>
21048
21049         * modules/unistr/u32-mbsnlen: New file.
21050         * lib/unistr/u32-mbsnlen.c: New file.
21051
21052         * modules/unistr/u16-mbsnlen: New file.
21053         * lib/unistr/u16-mbsnlen.c: New file.
21054
21055         * modules/unistr/u8-mbsnlen: New file.
21056         * lib/unistr/u8-mbsnlen.c: New file.
21057
21058         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
21059         declarations.
21060
21061 2007-06-10  Bruno Haible  <bruno@clisp.org>
21062
21063         * lib/string_.h (mbsnlen): New declaration.
21064         * lib/mbsnlen.c: New file.
21065         * m4/mbsnlen.m4: New file.
21066         * modules/mbsnlen: New file.
21067         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
21068         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
21069         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
21070
21071 2007-06-10  Bruno Haible  <bruno@clisp.org>
21072
21073         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
21074
21075 2007-06-10  Bruno Haible  <bruno@clisp.org>
21076
21077         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
21078         * lib/mbuiter.h: Likewise.
21079
21080 2007-06-10  Bruno Haible  <bruno@clisp.org>
21081
21082         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
21083         declaration.
21084
21085 2007-06-10  Karl Berry  <karl@gnu.org>
21086
21087         * config/srclist.txt: remove gettext entries, Bruno prefers
21088         to update individually.
21089
21090 2007-06-10  Bruno Haible  <bruno@clisp.org>
21091
21092         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
21093         'maxlen'. Ensure only length + width bytes are allocated, not
21094         length + 1 + width.
21095
21096 2007-06-09  Bruno Haible  <bruno@clisp.org>
21097
21098         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
21099         (CHAR_T): Remove macro.
21100         (VASNPRINTF): Update.
21101
21102 2007-06-09  Bruno Haible  <bruno@clisp.org>
21103
21104         * MODULES.html.sh (Unicode string functions): Add the new modules.
21105
21106         * modules/uniconv/u32-conv-to-enc: New file.
21107         * lib/uniconv/u32-conv-to-enc.c: New file.
21108         * modules/uniconv/u32-conv-to-enc-tests: New file.
21109         * tests/uniconv/test-u32-conv-to-enc.c: New file.
21110
21111         * modules/uniconv/u16-conv-to-enc: New file.
21112         * lib/uniconv/u16-conv-to-enc.c: New file.
21113         * lib/uniconv/u-conv-to-enc.h: New file.
21114         * modules/uniconv/u16-conv-to-enc-tests: New file.
21115         * tests/uniconv/test-u16-conv-to-enc.c: New file.
21116
21117         * modules/uniconv/u8-conv-to-enc: New file.
21118         * lib/uniconv/u8-conv-to-enc.c: New file.
21119         * modules/uniconv/u8-conv-to-enc-tests: New file.
21120         * tests/uniconv/test-u8-conv-to-enc.c: New file.
21121
21122         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
21123         u32_conv_to_encoding): New declarations.
21124
21125 2007-06-09  Bruno Haible  <bruno@clisp.org>
21126
21127         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
21128
21129 2007-06-09  Bruno Haible  <bruno@clisp.org>
21130
21131         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
21132         * modules/malloca: Renamed from modules/allocsa, updated.
21133         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
21134         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
21135         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
21136         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
21137         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
21138         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
21139         * modules/xmalloca: Renamed from modules/xallocsa, updated.
21140         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
21141         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
21142         * modules/c-strcasestr (Depends-on): Update.
21143         * lib/c-strcasestr.c: Update.
21144         * modules/c-strstr (Depends-on): Update.
21145         * lib/c-strstr.c: Update.
21146         * modules/canonicalize-lgpl (Depends-on): Update.
21147         * lib/canonicalize-lgpl.c: Update.
21148         * modules/clean-temp (Depends-on): Update.
21149         * lib/clean-temp.c: Update.
21150         * modules/csharpcomp (Depends-on): Update.
21151         * lib/csharpcomp.c: Update.
21152         * modules/csharpexec (Depends-on): Update.
21153         * lib/csharpexec.c: Update.
21154         * modules/javacomp (Depends-on): Update.
21155         * lib/javacomp.c: Update.
21156         * modules/javaexec (Depends-on): Update.
21157         * lib/javaexec.c: Update.
21158         * modules/mbscasestr (Depends-on): Update.
21159         * lib/mbscasestr.c: Update.
21160         * modules/mbsstr (Depends-on): Update.
21161         * lib/mbsstr.c: Update.
21162         * modules/setenv (Depends-on): Update.
21163         * lib/setenv.c: Update.
21164         * modules/strcasestr (Depends-on): Update.
21165         * lib/strcasestr.c: Update.
21166         * modules/striconveha (Depends-on): Update.
21167         * lib/striconveha.c: Update.
21168         * modules/relocatable-prog-wrapper (Files): Update.
21169         * lib/relocwrapper.c: Update.
21170         * build-aux/install-reloc: Update.
21171         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
21172
21173 2007-06-08  Bruno Haible  <bruno@clisp.org>
21174
21175         Port to uClibc.
21176         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
21177         * lib/fpurge.c (fpurge): Likewise.
21178         * lib/freading.c (freading): Likewise.
21179         * lib/fseeko.c (rpl_fseeko): Likewise.
21180         * lib/fseterr.c (fseterr): Likewise.
21181         * lib/fwriting.c (fwriting): Likewise.
21182         * tests/test-fflush.c (main): Avoid a failure on uClibc.
21183
21184 2007-06-08  Bruno Haible  <bruno@clisp.org>
21185
21186         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
21187         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
21188         * modules/gettext (Files): Add m4/intlmacosx.m4.
21189
21190 2007-06-07  Bruno Haible  <bruno@clisp.org>
21191
21192         * modules/localename-tests: New file.
21193         * tests/test-localename.c: New file.
21194
21195         New module 'localename'.
21196         * lib/localename.h: New file.
21197         * lib/localename.c: New file, from GNU gettext.
21198         * m4/localename.m4: New file.
21199         * modules/localename: New file.
21200
21201 2007-06-07  Bruno Haible  <bruno@clisp.org>
21202
21203         Work around the lack of <wchar.h> on some builds of uClibc.
21204         * doc/headers/wchar.texi: Update.
21205         * lib/wchar_.h: Include <wchar.h> only if it exists.
21206         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
21207         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
21208         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
21209         doesn't exist.
21210         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
21211         * modules/mbfile (Depends-on): Add wchar.
21212         * modules/mbiter (Depends-on): Likewise.
21213         * modules/mbuiter (Depends-on): Likewise.
21214         Reported by Simon Josefsson.
21215
21216 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
21217
21218         Work around problem reported by Steven M. Schweda in
21219         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
21220         Tru64 5.1B with the Compaq compiler environment installed declares
21221         an 'isblank' function but does not define it in the C library.
21222         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
21223         * lib/regex_internal.h (isblank): Likewise.
21224         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
21225         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
21226
21227 2007-06-05  Bruno Haible  <bruno@clisp.org>
21228
21229         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
21230         ia64.
21231         * modules/printf-safe: New file.
21232         * modules/fprintf-posix (Depends-on): Add printf-safe.
21233         * modules/printf-posix (Depends-on): Likewise.
21234         * modules/snprintf-posix (Depends-on): Likewise.
21235         * modules/sprintf-posix (Depends-on): Likewise.
21236         * modules/vasnprintf-posix (Depends-on): Likewise.
21237         * modules/vasprintf-posix (Depends-on): Likewise.
21238         * modules/vfprintf-posix (Depends-on): Likewise.
21239         * modules/vprintf-posix (Depends-on): Likewise.
21240         * modules/vsnprintf-posix (Depends-on): Likewise.
21241         * modules/vsprintf-posix (Depends-on): Likewise.
21242         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
21243         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
21244         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
21245         "no" on i386, x86_64, ia64.
21246         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
21247         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21248         on i386, x86_64, ia64.
21249         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
21250         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21251         on i386, x86_64, ia64.
21252         * tests/test-vasnprintf-posix.c: Include float.h.
21253         (LDBL80_WORDS): New macro.
21254         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21255         on i386, x86_64, ia64.
21256         * tests/test-vasprintf-posix.c: Include float.h.
21257         (LDBL80_WORDS): New macro.
21258         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
21259         on i386, x86_64, ia64.
21260         * tests/test-snprintf-posix.c: Include float.h.
21261         * tests/test-sprintf-posix.c: Likewise.
21262         * tests/test-vsnprintf-posix.c: Likewise.
21263         * tests/test-vsprintf-posix.c: Likewise.
21264
21265 2007-06-05  Bruno Haible  <bruno@clisp.org>
21266
21267         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
21268         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
21269         non-IEEE numbers on i386, x86_64, ia64.
21270         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
21271         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
21272         * tests/test-isnanl.h: Include float.h.
21273         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
21274
21275 2007-06-05  Bruno Haible  <bruno@clisp.org>
21276
21277         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
21278         also the %a / %A. Handle the %a / %A code before this extra handling.
21279
21280 2007-06-05  Bruno Haible  <bruno@clisp.org>
21281
21282         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
21283         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
21284
21285 2007-06-05  Bruno Haible  <bruno@clisp.org>
21286
21287         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
21288         typo in variable name.
21289
21290 2007-06-05  Eric Blake  <ebb9@byu.net>
21291
21292         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
21293         Reported by Simon Josefsson.
21294
21295 2007-06-04  Bruno Haible  <bruno@clisp.org>
21296
21297         Avoid test failures on some PowerPC platforms.
21298         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
21299         Define differently for PowerPC.
21300         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
21301         Reported by Gary V. Vaughan <gary@gnu.org>.
21302
21303 2007-06-02  Bruno Haible  <bruno@clisp.org>
21304
21305         Fix test-stdint failure on FreeBSD/ia64.
21306         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
21307         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
21308         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
21309         * doc/headers/stdint.texi: Update.
21310
21311 2007-06-01  Bruno Haible  <bruno@clisp.org>
21312
21313         * tests/test-binary-io.c (main): Pass a third argument to open().
21314         Reported by Gary V. Vaughan <gary@gnu.org>.
21315
21316 2007-06-01  Bruno Haible  <bruno@clisp.org>
21317
21318         * doc/functions/frexpl.texi: Update for mingw.
21319
21320 2007-06-01  Bruno Haible  <bruno@clisp.org>
21321
21322         * tests/test-lseek.c (main): Disable test of errno for invalid third
21323         argument.
21324         * doc/functions/lseek.texi: Update.
21325         Reported by Gary V. Vaughan <gary@gnu.org>.
21326
21327 2007-05-28  Bruno Haible  <bruno@clisp.org>
21328
21329         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
21330
21331 2007-05-31  Eric Blake  <ebb9@byu.net>
21332
21333         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
21334         cross compiling.
21335
21336 2007-05-30  Eric Blake  <ebb9@byu.net>
21337         and Bruno Haible  <bruno@clisp.org>
21338
21339         Work around mingw test failures exposed by m4-1.4.9b.
21340         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
21341         * tests/test-unistd.c: Disable uid_t and git_t tests for the
21342         moment.
21343
21344 2007-05-30  Bruno Haible  <bruno@clisp.org>
21345
21346         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
21347         assuming that they are closed. Needed on HP-UX 11.
21348
21349 2007-05-29  Bruno Haible  <bruno@clisp.org>
21350
21351         Fix a problem with #include_next.
21352         * lib/dirent_.h: Split the double-inclusion guard.
21353         * lib/fcntl_.h: Likewise.
21354         * lib/float_.h: Likewise.
21355         * lib/iconv_.h: Likewise.
21356         * lib/inttypes_.h: Likewise.
21357         * lib/locale_.h: Likewise.
21358         * lib/math_.h: Likewise.
21359         * lib/netinet_in_.h: Likewise.
21360         * lib/search_.h: Likewise.
21361         * lib/signal_.h: Likewise.
21362         * lib/stdint_.h: Likewise.
21363         * lib/stdio_.h: Likewise.
21364         * lib/stdlib_.h: Likewise.
21365         * lib/string_.h: Likewise.
21366         * lib/sys_select_.h: Likewise.
21367         * lib/sys_socket_.h: Likewise.
21368         * lib/sys_stat_.h: Likewise.
21369         * lib/sys_time_.h: Likewise.
21370         * lib/sysexits_.h: Likewise.
21371         * lib/time_.h: Likewise.
21372         * lib/unistd_.h: Likewise.
21373         * lib/wchar_.h: Likewise.
21374         * lib/wctype_.h: Likewise.
21375
21376 2007-05-29  Bruno Haible  <bruno@clisp.org>
21377
21378         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
21379         for the moment.
21380
21381 2007-05-29  Bruno Haible  <bruno@clisp.org>
21382
21383         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
21384         invocation.
21385         Reported by Eric Blake.
21386
21387 2007-05-29  Bruno Haible  <bruno@clisp.org>
21388
21389         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
21390         compiling case.
21391
21392 2007-05-29  Eric Blake  <ebb9@byu.net>
21393             Bruno Haible  <bruno@clisp.org>
21394
21395         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
21396         cross compiles.
21397
21398 2007-05-28  Eric Blake  <ebb9@byu.net>
21399
21400         * modules/closein-tests (test_closein_LDADD): Support test on
21401         cygwin with libtool.
21402
21403 2007-05-28  Bruno Haible  <bruno@clisp.org>
21404
21405         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
21406         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
21407         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
21408         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
21409         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
21410         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
21411         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
21412         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
21413         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
21414
21415 2007-05-28  Eric Blake  <ebb9@byu.net>
21416
21417         Unconditionally include <config.h> in unit tests.
21418         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
21419         * tests/test-allocsa.c, tests/test-arcfour.c,
21420         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
21421         tests/test-array_list.c, tests/test-array_oset.c,
21422         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
21423         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
21424         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
21425         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
21426         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
21427         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
21428         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
21429         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
21430         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
21431         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
21432         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
21433         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
21434         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
21435         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
21436         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
21437         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
21438         test-md5.c, test-memmem.c, test-printf-posix.c,
21439         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
21440         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
21441         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
21442         test-strcasestr.c, test-striconv.c, test-striconveh.c,
21443         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
21444         test-vasnprintf-posix2.c, test-vasnprintf.c,
21445         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
21446         test-vfprintf-posix.c, test-vprintf-posix.c,
21447         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
21448         test-xvasprintf.c: Likewise.
21449
21450 2007-05-28  Bruno Haible  <bruno@clisp.org>
21451
21452         * gnulib-tool (func_import): Remember the --with-tests command-line
21453         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
21454         Reported by Eric Blake.
21455
21456 2007-05-28  Bruno Haible  <bruno@clisp.org>
21457
21458         * modules/ftell-tests: New file.
21459         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
21460         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
21461
21462         * lib/ftell.c: New file.
21463         * modules/ftell: New file.
21464         * m4/ftell.m4: New file.
21465         * doc/functions/ftell.texi: Update.
21466         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
21467         REPLACE_FTELL.
21468         * lib/stdio_.h (rpl_ftell): New declaration.
21469         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
21470         REPLACE_FTELL.
21471
21472 2007-05-28  Eric Blake  <ebb9@byu.net>
21473
21474         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
21475
21476 2007-05-28  Bruno Haible  <bruno@clisp.org>
21477
21478         * modules/fseek-tests: New file.
21479         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
21480         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
21481
21482         * lib/fseek.c: New file.
21483         * modules/fseek: New file.
21484         * m4/fseek.m4: New file.
21485         * doc/functions/fseek.texi: Update.
21486         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
21487         REPLACE_FSEEK.
21488         * lib/stdio_.h (rpl_fseek): New declaration.
21489         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
21490         REPLACE_FSEEK.
21491
21492 2007-05-28  Bruno Haible  <bruno@clisp.org>
21493
21494         * lib/stdio_.h (fflush): More comments.
21495
21496 2007-05-28  Bruno Haible  <bruno@clisp.org>
21497
21498         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
21499         runtime test.
21500
21501 2007-05-28  Eric Blake  <ebb9@byu.net>
21502
21503         Improve lseek module.
21504         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
21505         * lib/unistd_.h (lseek): Scale back link warning message.
21506         * tests/test-lseek.c: Beef up test.
21507         * tests/test-lseek.sh: Exercise more facets of lseek.
21508         Reported by Bruno Haible.
21509
21510 2007-05-28  Bruno Haible  <bruno@clisp.org>
21511
21512         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
21513         to define.
21514
21515 2007-05-27  Bruno Haible  <bruno@clisp.org>
21516
21517         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
21518
21519 2007-05-27  Bruno Haible  <bruno@clisp.org>
21520
21521         * modules/openmp: New file.
21522         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
21523         Noah Misch.
21524
21525 2007-05-26  Bruno Haible  <bruno@clisp.org>
21526
21527         * modules/chdir-long (Depends-on): Add fchdir.
21528         * modules/chdir-safer (Depends-on): Likewise.
21529         * modules/fts (Depends-on): Likewise.
21530         * modules/fts-lgpl (Depends-on): Likewise.
21531         * modules/openat (Depends-on): Likewise.
21532         * modules/savewd (Depends-on): Likewise.
21533
21534 2007-05-24  Eric Blake  <ebb9@byu.net>
21535
21536         Fix lseek on mingw.
21537         * modules/lseek: New module.
21538         * m4/lseek.m4: New file.
21539         * lib/lseek.c: New file.
21540         * modules/lseek-tests: New file.
21541         * tests/test-lseek.c: New file.
21542         * tests/test-lseek.sh: New file.
21543         * MODULES.html.sh: Document lseek module.
21544         * modules/fflush (Depends-on): Add lseek, fseeko.
21545         * modules/fseeko (Depends-on): Likewise.
21546         * modules/ftello (Depends-on): Likewise.
21547         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
21548         broken.
21549         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
21550         broken.
21551         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
21552         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
21553         * lib/ftello.c (rpl_ftello): Likewise.
21554         * tests/test-fseeko.c (main): Test this.
21555         * tests/test-fseeko.sh: Likewise.
21556         * tests/test-ftello.c (main): Likewise.
21557         * tests/test-ftello.sh: Likewise.
21558         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
21559         implies replacing fseek.
21560         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
21561         HAVE_FTELLO.
21562         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
21563         * modules/unistd (Makefile.am): Likewise.
21564         * lib/unistd_.h (lseek): Declare a replacement.
21565         * doc/functions/lseek.texi (lseek): Document this fix.
21566         * doc/functions/fseek.texi (fseek): Likewise.
21567         * doc/functions/ftell.texi (ftell): Likewise.
21568
21569 2007-05-24  Bruno Haible  <bruno@clisp.org>
21570
21571         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
21572         in the printed representation of a NaN.
21573         * tests/test-vasprintf-posix.c (test_function): Likewise.
21574         * tests/test-snprintf-posix.h (test_function): Likewise.
21575         * tests/test-sprintf-posix.h (test_function): Likewise.
21576         Reported by Eric Blake.
21577
21578 2007-05-23  Eric Blake  <ebb9@byu.net>
21579
21580         Fix fseeko/ftello on cygwin 1.5.24.
21581         * doc/functions/fseeko.texi (fseeko): Document the fix.
21582         * doc/functions/ftello.texi (ftello): Document the fix.
21583         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
21584         * doc/functions/stdout.text (stdout): New file.
21585         * doc/functions/stderr.text (stderr): New file.
21586         * doc/gnulib.texi (Function Substitutes): Use new files.
21587         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
21588         prior to 1.7.0.
21589         * tests/test-ftello.c (main): Likewise for ftello.
21590         * tests/test-fseeko.sh: New file.
21591         * tests/test-ftello.sh: New file.
21592         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
21593         with seekable stdin.
21594         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
21595         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
21596         (gl_REPLACE_FSEEKO): New macro.
21597         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
21598         * modules/fseeko (Files): Distribute fseeko.c.
21599         * modules/ftello (Files): Distribute ftello.c.
21600         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
21601         mode.
21602         * lib/ftello.c (rpl_ftello): New file.
21603         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
21604         fseeko, ftello.
21605         (gl_STDIN_LARGE_OFFSET): New macro.
21606         * modules/stdio (Makefile.am): Perform the replacement.
21607         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
21608
21609 2007-05-23  Bruno Haible  <bruno@clisp.org>
21610
21611         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
21612         GNULIB_POSIXCHECK is defined.
21613
21614 2007-05-21  Bruno Haible  <bruno@clisp.org>
21615
21616         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
21617         Check also the output for NaN arguments. When cross-compiling, guess
21618         no on IRIX.
21619         * lib/vasnprintf.c: Update comments.
21620         * tests/test-vasnprintf-posix.c (strisnan): New function.
21621         (test_function): Use it.
21622         * tests/test-vasprintf-posix.c (strisnan): New function.
21623         (test_function): Use it.
21624         * tests/test-snprintf-posix.h (strisnan): New function.
21625         (test_function): Use it.
21626         * tests/test-sprintf-posix.h (strisnan): New function.
21627         (test_function): Use it.
21628         Reported by Eric Blake.
21629
21630 2007-05-20  Bruno Haible  <bruno@clisp.org>
21631
21632         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
21633         numbers that fails on BeOS.
21634         * doc/functions/frexpl.texi: Update.
21635
21636 2007-05-20  Jim Meyering  <jim@meyering.net>
21637
21638         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
21639         forced upon us by glibc-2.6.
21640
21641 2007-05-20  Bruno Haible  <bruno@clisp.org>
21642
21643         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
21644         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
21645         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
21646         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
21647         NEED_PRINTF_INFINITE.
21648         (is_infinitel): New function.
21649         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
21650         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
21651         gl_PREREQ_VASNPRINTF_INFINITE.
21652         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
21653         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21654         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
21655         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
21656         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
21657         gl_PREREQ_VASNPRINTF_INFINITE.
21658         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21659         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21660         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21661         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21662         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21663         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21664         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21665         * doc/functions/fprintf.texi: Update.
21666         * doc/functions/printf.texi: Update.
21667         * doc/functions/snprintf.texi: Update.
21668         * doc/functions/sprintf.texi: Update.
21669         * doc/functions/vfprintf.texi: Update.
21670         * doc/functions/vprintf.texi: Update.
21671         * doc/functions/vsnprintf.texi: Update.
21672         * doc/functions/vsprintf.texi: Update.
21673
21674 2007-05-20  Bruno Haible  <bruno@clisp.org>
21675
21676         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
21677         was not found in libc.
21678         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
21679
21680 2007-05-20  Bruno Haible  <bruno@clisp.org>
21681
21682         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
21683         printed as "-nan" instead of "nan".
21684         * tests/test-vasprintf-posix.c (test_function): Likewise.
21685         * tests/test-snprintf-posix.h (test_function): Likewise.
21686         * tests/test-sprintf-posix.h (test_function): Likewise.
21687         Needed for HP-UX 11.
21688
21689 2007-05-20  Jim Meyering  <jim@meyering.net>
21690
21691         Fix buggy test for the fchownat-deref bug.
21692         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
21693         symlink required for the run-test.  Without it, this test would
21694         always declare that fchownat doesn't work, and client code would
21695         unnecessarily use the replacement function with fixed libc.
21696         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
21697         Reported by Greg Schafer.
21698
21699 2007-05-19  Bruno Haible  <bruno@clisp.org>
21700
21701         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
21702         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
21703         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
21704         Needed for IRIX 6.5 and Solaris 2.5.1.
21705
21706 2007-05-19  Bruno Haible  <bruno@clisp.org>
21707
21708         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
21709         (test_function): Skip tests involving -0.0 on platforms where
21710         -0.0 = 0.0.
21711         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
21712         (test_function): Skip tests involving -0.0 on platforms where
21713         -0.0 = 0.0.
21714         * tests/test-snprintf-posix.h (have_minus_zero): New function.
21715         (test_function): Skip tests involving -0.0 on platforms where
21716         -0.0 = 0.0.
21717         * tests/test-sprintf-posix.h (have_minus_zero): New function.
21718         (test_function): Skip tests involving -0.0 on platforms where
21719         -0.0 = 0.0.
21720         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
21721         tests.
21722         * tests/test-printf-posix.h (test_function): Likewise.
21723         * tests/test-printf-posix.output: Remove all -0.0 related results.
21724         Needed for IRIX 6.5.
21725
21726 2007-05-19  Bruno Haible  <bruno@clisp.org>
21727
21728         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
21729         printed as "nan0x7fffffff" instead of "nan".
21730         * tests/test-vasprintf-posix.c (test_function): Likewise.
21731         * tests/test-snprintf-posix.h (test_function): Likewise.
21732         * tests/test-sprintf-posix.h (test_function): Likewise.
21733         * tests/test-fprintf-posix.h (NaN): Remove macro.
21734         (test_function): Remove all NaN related tests.
21735         * tests/test-printf-posix.h (NaN): Remove macro.
21736         (test_function): Remove all NaN related tests.
21737         * tests/test-printf-posix.output: Remove all NaN related results.
21738         Needed for IRIX 6.5.
21739
21740 2007-05-19  Bruno Haible  <bruno@clisp.org>
21741
21742         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
21743         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
21744
21745 2007-05-19  Bruno Haible  <bruno@clisp.org>
21746
21747         * lib/float_.h: New file.
21748         * m4/float_h.m4: New file.
21749         * modules/float: New file.
21750         * modules/isnanl (Dependencies): Add float.
21751         * modules/isnanl-nolibm (Dependencies): Likewise.
21752         * modules/mathl (Dependencies): Likewise.
21753         * modules/printf-frexpl (Dependencies): Likewise.
21754         * modules/signbit (Dependencies): Likewise.
21755         * modules/vasnprintf (Dependencies): Likewise.
21756         * doc/headers/float.texi: Update.
21757
21758 2007-05-19  Jim Meyering  <jim@meyering.net>
21759
21760         * lib/utimens.c (gl_futimens): Rename from futimens,
21761         now that glibc-2.6 declares futimens.
21762         * lib/utimens.h: Likewise.
21763
21764 2007-05-19  Bruno Haible  <bruno@clisp.org>
21765
21766         Avoid test failures on mingw.
21767         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
21768         * tests/test-printf-posix.sh: Likewise.
21769         * tests/test-vfprintf-posix.sh: Likewise.
21770         * tests/test-vprintf-posix.sh: Likewise.
21771
21772 2007-05-19  Bruno Haible  <bruno@clisp.org>
21773
21774         Fix *printf result for NaN, Inf, -0.0 on mingw.
21775         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
21776         * lib/vasnprintf.c: Include math.h and isnan.h.
21777         (is_infinite_or_zero): New function.
21778         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
21779         values in the %f, %F, %e, %E, %g, %G directives.
21780         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
21781         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21782         gl_PRINTF_INFINITE and test its result. Invoke
21783         gl_PREREQ_VASNPRINTF_INFINITE.
21784         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21785         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21786         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21787         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21788         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21789         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21790         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21791         * doc/functions/fprintf.texi: Update.
21792         * doc/functions/printf.texi: Update.
21793         * doc/functions/snprintf.texi: Update.
21794         * doc/functions/sprintf.texi: Update.
21795         * doc/functions/vfprintf.texi: Update.
21796         * doc/functions/vprintf.texi: Update.
21797         * doc/functions/vsnprintf.texi: Update.
21798         * doc/functions/vsprintf.texi: Update.
21799
21800 2007-05-19  Bruno Haible  <bruno@clisp.org>
21801
21802         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
21803         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
21804         Instead of multiplying with 10^k, set extra_zeroes to k.
21805         (scale10_round_long_double): Remove function.
21806
21807 2007-05-18  Bruno Haible  <bruno@clisp.org>
21808
21809         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
21810         introduced on 2007-05-06.
21811
21812 2007-05-18  Bruno Haible  <bruno@clisp.org>
21813
21814         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
21815         %g directives.
21816         * tests/test-vasprintf-posix.c (test_function): Likewise.
21817         * tests/test-snprintf-posix.h (test_function): Likewise.
21818         * tests/test-sprintf-posix.h (test_function): Likewise.
21819
21820 2007-05-18  Bruno Haible  <bruno@clisp.org>
21821
21822         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
21823         (strmatch): New function.
21824         (test_function): Test the %f directive on numbers of various exponents.
21825         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
21826         (strmatch): New function.
21827         (test_function): Test the %f directive on numbers of various exponents.
21828         * tests/test-snprintf-posix.h (strmatch): New function.
21829         (test_function): Test the %f directive on numbers of various exponents.
21830         * tests/test-sprintf-posix.h (strmatch): New function.
21831         (test_function): Test the %f directive on numbers of various exponents.
21832         * tests/test-snprintf-posix.c (SIZEOF): New macro.
21833         * tests/test-sprintf-posix.c (SIZEOF): New macro.
21834         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
21835         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
21836
21837 2007-05-18  Bruno Haible  <bruno@clisp.org>
21838
21839         Add support for 'long double' number output.
21840         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
21841         * lib/vasnprintf.c: Include math.h and float+.h.
21842         (mp_limb_t): New type.
21843         (GMP_LIMB_BITS): New macro.
21844         (mp_twolimb_t): New type.
21845         (GMP_TWOLIMB_BITS): New macro.
21846         (mpn_t): New type.
21847         (multiply, divide, convert_to_decimal, decode_long_double,
21848         scale10_round_long_double, scale10_round_decimal_long_double,
21849         floorlog10l): New functions.
21850         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
21851         for the %f, %F, %e, %E, %g, %G directives.
21852         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
21853         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21854         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
21855         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
21856         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21857         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21858         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21859         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21860         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21861         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21862         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21863         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
21864         * modules/snprintf-posix (Depends-on): Likewise.
21865         * modules/sprintf-posix (Depends-on): Likewise.
21866         * modules/vasnprintf-posix (Depends-on): Likewise.
21867         * modules/vasprintf-posix (Depends-on): Likewise.
21868         * modules/vfprintf-posix (Depends-on): Likewise.
21869         * modules/vsnprintf-posix (Depends-on): Likewise.
21870         * modules/vsprintf-posix (Depends-on): Likewise.
21871         * modules/vasnprintf (Files): Add lib/float+.h.
21872         * doc/functions/fprintf.texi: Update.
21873         * doc/functions/printf.texi: Update.
21874         * doc/functions/snprintf.texi: Update.
21875         * doc/functions/sprintf.texi: Update.
21876         * doc/functions/vfprintf.texi: Update.
21877         * doc/functions/vprintf.texi: Update.
21878         * doc/functions/vsnprintf.texi: Update.
21879         * doc/functions/vsprintf.texi: Update.
21880
21881 2007-05-18  Bruno Haible  <bruno@clisp.org>
21882
21883         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
21884
21885 2007-05-18  Bruno Haible  <bruno@clisp.org>
21886
21887         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
21888         for printing 64-bit integers. Needed for mingw.
21889
21890 2007-05-18  Bruno Haible  <bruno@clisp.org>
21891
21892         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
21893         gl_FUNC_FREXPL_WORKS.
21894         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
21895
21896 2007-05-18  Bruno Haible  <bruno@clisp.org>
21897
21898         * modules/frexpl-nolibm-tests: New file.
21899
21900         * modules/frexpl-nolibm: New file.
21901         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
21902
21903 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
21904
21905         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
21906         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
21907         GCC 4.2, which otherwise issues a lot of warnings.
21908         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
21909         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
21910         Likewise.
21911         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
21912         * modules/iconv_open (iconv.h): Likewise.
21913         * modules/locale (locale.h): Likewise.
21914         * modules/netinet_in (netinet/in.h): Likewise.
21915         * modules/sys_select (sys_select.h): Likewise.
21916         * modules/sys_socket (sys/socket.h): Likewise.
21917         * modules/sys_stat (sys/stat.h): Likewise.
21918         * modules/sysexits (sysexits.h): Likewise.
21919         * modules/unistd (unistd.h): Likewise.
21920
21921 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21922
21923         * modules/closein-tests (Makefile.am): Distribute
21924         `test-closein.sh'.
21925
21926 2007-05-17  Bruno Haible  <bruno@clisp.org>
21927
21928         * tests/test-printf-posix.output: Renamed from
21929         tests/test-fprintf-posix.out.
21930         * modules/fprintf-posix-tests: Update.
21931         * modules/printf-posix-tests: Update.
21932         * modules/vfprintf-posix-tests: Update.
21933         * modules/vprintf-posix-tests: Update.
21934         * tests/test-fprintf-posix.sh: Update.
21935         * tests/test-printf-posix.sh: Update.
21936         * tests/test-vfprintf-posix.sh: Update.
21937         * tests/test-vprintf-posix.sh: Update.
21938         Reported by Ralf Wildenhues.
21939
21940 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
21941
21942         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
21943         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
21944         GCC 4.2, which otherwise issues a lot of warnings.
21945         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
21946         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
21947         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
21948         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
21949         it should no longer be needed.
21950         * lib/string_.h: Likewise.
21951         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
21952         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
21953         * modules/inttypes (inttypes.h): Likewise.
21954         * modules/math (math.h): Likewise.
21955         * modules/search (search.h): Likewise.
21956         * modules/signal (signal.h): Likewise.
21957         * modules/stdint (stdint.h): Likewise.
21958         * modules/stdio (stdio.h): Likewise.
21959         * modules/stdlib (stdlib.h): Likewise.
21960         * modules/string (string.h): Likewise.
21961         * modules/sys_time (sys/time.h): Likewise.
21962         * modules/time (time.h): Likewise.
21963         * modules/wchar (wchar.h): Likewise.
21964         * modules/wctype (wtype.h): Likewise.
21965
21966 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
21967
21968         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
21969
21970 2007-05-13  Bruno Haible  <bruno@clisp.org>
21971
21972         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
21973         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
21974         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
21975         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
21976         (gl_PREREQ_STRTOK_R): Don't require it here.
21977
21978 2007-05-13  Bruno Haible  <bruno@clisp.org>
21979
21980         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
21981         when used in C++ mode.
21982
21983 2007-05-12  Bruno Haible  <bruno@clisp.org>
21984
21985         * lib/linebuffer.h: Tweak doc.
21986         * lib/linebuffer.c: Likewise.
21987
21988 2007-05-12  James Youngman  <jay@gnu.org>
21989
21990         * lib/linebuffer.c (readlinebuffer_delim): New function,
21991         like readlinebuffer, but use a caller-specified delimiter.
21992         (readlinebuffer): Just call readlinebuffer_delim with '\n'
21993         as the delimiter.
21994         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
21995
21996 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
21997
21998         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
21999         * modules/openat (Files): Remove openat-die.c.
22000         (Depends-on): Add openat-die.
22001         * modules/openat-die: New module.
22002
22003 2007-05-06  Bruno Haible  <bruno@clisp.org>
22004
22005         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
22006         Update with info about Cygwin.
22007         * doc/functions/fprintf.texi: Update.
22008         * doc/functions/printf.texi: Update.
22009         * doc/functions/snprintf.texi: Update.
22010         * doc/functions/sprintf.texi: Update.
22011         * doc/functions/vfprintf.texi: Update.
22012         * doc/functions/vprintf.texi: Update.
22013         * doc/functions/vsnprintf.texi: Update.
22014         * doc/functions/vsprintf.texi: Update.
22015         Reported by Eric Blake.
22016
22017 2007-05-06  Bruno Haible  <bruno@clisp.org>
22018
22019         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
22020         padding ourselves for the floating-point directives.
22021         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
22022         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
22023         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22024         gl_PRINTF_FLAG_ZERO and test its result. Invoke
22025         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
22026         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22027         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
22028         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22029         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22030         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22031         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22032         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22033         * tests/test-snprintf-posix.h (test_function): Also check the width
22034         and some flags in the %f directive.
22035         * tests/test-sprintf-posix.h (test_function): Likewise.
22036         * tests/test-vasnprintf-posix.c (test_function): Likewise.
22037         * tests/test-vasprintf-posix.c (test_function): Likewise.
22038         * doc/functions/fprintf.texi: Update.
22039         * doc/functions/printf.texi: Update.
22040         * doc/functions/snprintf.texi: Update.
22041         * doc/functions/sprintf.texi: Update.
22042         * doc/functions/vfprintf.texi: Update.
22043         * doc/functions/vprintf.texi: Update.
22044         * doc/functions/vsnprintf.texi: Update.
22045         * doc/functions/vsprintf.texi: Update.
22046
22047 2007-05-06  Bruno Haible  <bruno@clisp.org>
22048
22049         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
22050         pass the ' flag character to sprintf or snprintf.
22051         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
22052         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
22053         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22054         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
22055         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
22056         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22057         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
22058         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22059         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22060         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22061         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22062         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22063         * tests/test-snprintf-posix.h (test_function): Also check the grouping
22064         flag.
22065         * tests/test-sprintf-posix.h (test_function): Likewise.
22066         * tests/test-vasnprintf-posix.c (test_function): Likewise.
22067         * tests/test-vasprintf-posix.c (test_function): Likewise.
22068         * doc/functions/fprintf.texi: Update.
22069         * doc/functions/printf.texi: Update.
22070         * doc/functions/snprintf.texi: Update.
22071         * doc/functions/sprintf.texi: Update.
22072         * doc/functions/vfprintf.texi: Update.
22073         * doc/functions/vprintf.texi: Update.
22074         * doc/functions/vsnprintf.texi: Update.
22075         * doc/functions/vsprintf.texi: Update.
22076
22077 2007-05-01  Bruno Haible  <bruno@clisp.org>
22078
22079         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
22080
22081 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
22082
22083         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
22084         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
22085
22086 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
22087
22088         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
22089         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
22090         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
22091
22092 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
22093
22094         * lib/argp-help.c (struct hol_entry): New member `ord'.
22095         (HOL_ENTRY_PTRCMP): Use ord for comparison
22096         (hol_sort): Initialize ord.
22097
22098 2007-05-01  Bruno Haible  <bruno@clisp.org>
22099
22100         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
22101         Reported by Eric Blake.
22102         * doc/gnulib.texi (Function Substitutes): Update.
22103
22104 2007-05-01  Bruno Haible  <bruno@clisp.org>
22105
22106         * doc/functions.texi: Remove file, now redundant through
22107         doc/functions/*.texi.
22108
22109 2007-05-01  Bruno Haible  <bruno@clisp.org>
22110
22111         * modules/argp (Depends-on): Add sleep.
22112
22113 2007-05-01  Bruno Haible  <bruno@clisp.org>
22114
22115         * modules/sleep-tests: New file.
22116         * tests/test-sleep.c: New file.
22117
22118         * modules/sleep: New file.
22119         * lib/sleep.c: New file.
22120         * m4/sleep.m4: New file.
22121         * lib/unistd_.h (sleep): New declaration.
22122         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
22123         HAVE_SLEEP.
22124         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
22125         * doc/functions/sleep.texi: Document the sleep module.
22126
22127 2007-05-01  Bruno Haible  <bruno@clisp.org>
22128
22129         * lib/sigprocmask.h: Remove file.
22130         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
22131         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
22132         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
22133         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
22134         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
22135         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
22136         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
22137         HAVE_SIGSET_T as a shell variable.
22138         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
22139         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
22140         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
22141         (Depends-on): Add signal. Remove verify.
22142         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
22143         (Include): Mention <signal.h> instead of sigprocmask.h.
22144         * NEWS: Mention the change.
22145         * lib/fatal-signal.c: Don't include sigprocmask.h.
22146
22147 2007-05-01  Bruno Haible  <bruno@clisp.org>
22148
22149         * modules/signal: New file.
22150         * lib/signal_.h: New file.
22151         * m4/signal_h.m4: New file.
22152
22153 2007-05-01  Bruno Haible  <bruno@clisp.org>
22154
22155         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
22156         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
22157         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
22158         HAVE_WCTYPE_CTMP_BUG into wctype.h.
22159
22160 2007-05-01  Bruno Haible  <bruno@clisp.org>
22161
22162         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
22163         configure time.
22164         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
22165         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
22166         * modules/sys_stat (Makefile.am): Substitute their values into
22167         sys/stat.h.
22168
22169 2007-05-01  Bruno Haible  <bruno@clisp.org>
22170
22171         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
22172         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
22173         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
22174
22175 2007-05-01  Bruno Haible  <bruno@clisp.org>
22176
22177         * doc/header/assert.texi: Undo last change: don't mention the gnulib
22178         'assert' module here.
22179
22180 2007-05-01  Bruno Haible  <bruno@clisp.org>
22181
22182         * doc/functions/*.texi: New files.
22183         * doc/functions/google-ranking.txt: New file.
22184         * doc/gnulib.texi (Function Substitutes): New chapter.
22185         (ctime, inet_ntoa): Remove sections.
22186         * doc/ctime.texi: Remove file.
22187         * doc/inet_ntoa.texi: Remove file.
22188         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
22189         dependencies.
22190         (%.info): New rule, specifying a --reference-limit.
22191
22192 2007-05-01  Bruno Haible  <bruno@clisp.org>
22193
22194         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
22195
22196 2007-05-01  Bruno Haible  <bruno@clisp.org>
22197
22198         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
22199         the portability of 'mkdir' to mingw systems.
22200
22201 2007-05-01  Bruno Haible  <bruno@clisp.org>
22202
22203         * doc/headers/google-ranking.txt: New file.
22204
22205 2007-04-30  Eric Blake  <ebb9@byu.net>
22206
22207         Prefer fseeko to fseek.
22208         * modules/getpass (Depends-on): Add fseeko.
22209         * lib/getpass.c (getpass): Use fseeko, not fseek.
22210
22211 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
22212
22213         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
22214         assumes the sorting is stable, while most qsort implementations
22215         are not.  Use argument addresses to ensure they never compare as
22216         equal.
22217
22218         * tests/test-argp-2.sh (usage-indent test): Fix output
22219         (func_compare): Restore diff options
22220         * tests/test-argp.c: Restore #include "progname.h"
22221
22222 2007-04-29  Bruno Haible  <bruno@clisp.org>
22223
22224         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
22225         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22226         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
22227         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22228         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
22229         (configure.ac): Define CHECK_SNPRINTF_POSIX.
22230         (TESTS, check_PROGRAMS): Add test-snprintf.
22231         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
22232         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
22233         (TESTS, check_PROGRAMS): Add test-vsnprintf.
22234         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
22235         assertions that fail on HP-UX, OSF/1, or IRIX.
22236         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
22237
22238 2007-04-29  Bruno Haible  <bruno@clisp.org>
22239
22240         * MODULES.html.sh (posix_functions): Remove 'contents'.
22241
22242 2007-04-29  Karl Berry  <karl@gnu.org>
22243
22244         * config/srclist.txt (gendocs_template_min): new entry.
22245
22246 2007-04-29  Bruno Haible  <bruno@clisp.org>
22247
22248         Work around fpurge bug on BSD systems.
22249         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
22250         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
22251         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
22252         fpurge to rpl_fpurge if the system already has this function.
22253         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
22254         the case where the system already has this function. Correct invariants
22255         on BSD systems.
22256         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
22257         BSD systems.
22258
22259 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
22260
22261         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
22262         proposed by Sven Verdoolaege.
22263
22264         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
22265         options.
22266         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
22267         (usage and help tests): Update
22268
22269 2007-04-29  Bruno Haible  <bruno@clisp.org>
22270
22271         * tests/test-fflush.c (main): Use a file of size 17, not 10.
22272         Print more information in case of failure. Disable a test on BeOS.
22273
22274 2007-04-29  Bruno Haible  <bruno@clisp.org>
22275
22276         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
22277         This helps debugging on systems on which no gdb is available.
22278
22279 2007-04-29  Bruno Haible  <bruno@clisp.org>
22280
22281         * lib/freading.h: Improve comments.
22282         * lib/fwriting.h: Likewise.
22283         * tests/test-freading.c (main): Don't check freading immediately after
22284         repositioning. Needed for glibc.
22285
22286 2007-04-29  Bruno Haible  <bruno@clisp.org>
22287
22288         * lib/freading.c (freading): Trivial simplification.
22289
22290 2007-04-28  Bruno Haible  <bruno@clisp.org>
22291
22292         * tests/test-fwriting.c (main): Also test the interaction between
22293         fflush and fwriting.
22294         * modules/fwriting-tests (Depends-on): Add fflush.
22295
22296         * tests/test-freading.c (main): Also test the interaction between
22297         fflush and freading.
22298         * modules/freading-tests (Depends-on): Add fflush.
22299
22300 2007-04-28  Bruno Haible  <bruno@clisp.org>
22301
22302         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
22303         fseeko and ftello.
22304         Suggested by Eric Blake.
22305
22306 2007-04-28  Jim Meyering  <jim@meyering.net>
22307
22308         Avoid false-negative in gl_STDINT_H's C99 conformance test.
22309         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
22310         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
22311
22312 2007-04-27  Eric Blake  <ebb9@byu.net>
22313
22314         * doc/headers/assert.texi (assert.h): Document assert module use.
22315
22316 2007-04-27  Bruno Haible  <bruno@clisp.org>
22317
22318         * doc/headers/*.texi: New files.
22319         * doc/gnulib.texi (Header File Substitutes): New chapter.
22320         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
22321         dependencies.
22322         (standards.info ,standards.html, standards.dvi): Update dependencies.
22323         (mostlyclean, clean): New targets.
22324
22325 2007-04-27  Bruno Haible  <bruno@clisp.org>
22326
22327         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
22328         * modules/sysexits (Files, Makefile.am): Update.
22329
22330         * lib/sys_socket_.h: Renamed from lib/socket_.h.
22331         * modules/sys_socket (Files, Makefile.am): Update.
22332
22333         * lib/sys_stat_.h: Renamed from lib/stat_.h.
22334         * modules/sys_stat (Files, Makefile.am): Update.
22335
22336 2007-04-27  Eric Blake  <ebb9@byu.net>
22337
22338         * lib/freading.h: Improve comments.
22339         * lib/fwriting.h: Likewise.
22340         * lib/fflush.c: Likewise.
22341
22342         Fix closein for mingw.
22343         * modules/closein-tests: Add tests for closein.
22344         * tests/test-closein.c: New file.
22345         * tests/test-closein.sh: Likewise.
22346         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
22347         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
22348
22349 2007-04-27  Bruno Haible  <bruno@clisp.org>
22350
22351         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
22352         version is < 6.
22353         * lib/math_.h [__DECC]: Likewise.
22354         * lib/stdio_.h [__DECC]: Likewise.
22355         * lib/stdlib_.h [__DECC]: Likewise.
22356         * lib/string_.h [__DECC]: Likewise.
22357         * lib/time_.h [__DECC]: Likewise.
22358         * lib/wchar_.h [__DECC]: Likewise.
22359         * lib/wctype_.h [__DECC]: Likewise.
22360
22361 2007-04-27  Bruno Haible  <bruno@clisp.org>
22362
22363         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
22364
22365 2007-04-27  Bruno Haible  <bruno@clisp.org>
22366
22367         * lib/fflush.c: Add comments.
22368         * modules/fpurge-tests (Depends-on): Add fflush.
22369         * modules/freadable-tests (Depends-on): Likewise.
22370         * modules/fwritable-tests (Depends-on): Likewise.
22371
22372 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
22373
22374         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
22375         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
22376         Report by Bruno Haible <bruno@clisp.org>.
22377
22378 2007-04-26  Eric Blake  <ebb9@byu.net>
22379
22380         Fix fflush on mingw.
22381         * modules/fflush (Depends-on): Add freading.
22382         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
22383         but unread data.
22384
22385 2007-04-26  Eric Blake  <ebb9@byu.net>
22386         and Bruno Haible  <bruno@clisp.org>
22387
22388         Implement freading and fwriting.
22389         * lib/freading.c: New file.
22390         * lib/freading.h: Likewise.
22391         * m4/freading.m4: Likewise.
22392         * modules/freading: Likewise.
22393         * modules/freading-tests: Likewise.
22394         * tests/test-freading.c: Likewise.
22395         * lib/fwriting.c: New file.
22396         * lib/fwriting.h: Likewise.
22397         * m4/fwriting.m4: Likewise.
22398         * modules/fwriting: Likewise.
22399         * modules/fwriting-tests: Likewise.
22400         * tests/test-fwriting.c: Likewise.
22401         * MODULES.html.sh (File stream based Input/Output): Mention them.
22402
22403 2007-04-26  Bruno Haible  <bruno@clisp.org>
22404
22405         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
22406         'long' when we assume it.
22407         Suggested by Eric Blake.
22408
22409 2007-04-26  Bruno Haible  <bruno@clisp.org>
22410
22411         Ensure fseeko, ftello are declared on glibc systems.
22412         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
22413         * modules/fseeko (configure.ac-early): Likewise.
22414         * modules/ftello (configure.ac-early): Likewise.
22415         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
22416         AC_FUNC_FSEEKO for this.
22417         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
22418         (gl_CHECK_FSEEKO): Remove macro.
22419
22420 2007-04-26  Bruno Haible  <bruno@clisp.org>
22421
22422         * tests/test-fflush.c (main): Also check the ftell result after
22423         fflush and fseek/fseeko.
22424         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
22425         file descriptor position cache in the stream.
22426         * lib/fseeko.c (rpl_fseeko): Likewise.
22427
22428 2007-04-26  Bruno Haible  <bruno@clisp.org>
22429
22430         * modules/fflush-tests (Depends-on): Add fseeko.
22431
22432 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
22433             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22434
22435         * lib/argz_.h: ensure error_t definition is obtained in same
22436         mechanism system argz.h would have.
22437         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
22438         argz facilities are known bad.  Err on the side of caution if
22439         cross-compiling.
22440
22441 2007-04-25  Eric Blake  <ebb9@byu.net>
22442
22443         * lib/fpurge.c (includes): Use stdlib.h for free.
22444         * tests/test-fflush.c (main): Also test fflush-fseeko.
22445
22446 2007-04-25  Bruno Haible  <bruno@clisp.org>
22447
22448         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
22449         * lib/fseeko.c: New file.
22450         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
22451         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
22452         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
22453         gl_FUNC_FSEEKO.
22454         (gl_FUNC_FSEEKO): Invoke it.
22455         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
22456         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
22457         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
22458
22459 2007-04-25  Bruno Haible  <bruno@clisp.org>
22460
22461         * modules/fflush (Depends-on): Add ftello.
22462
22463 2007-04-25  Bruno Haible  <bruno@clisp.org>
22464
22465         * modules/ftello-tests: New file.
22466         * tests/test-ftello.c: New file.
22467
22468         * modules/ftello: New file.
22469         * m4/ftello.m4: New file.
22470         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
22471         HAVE_FTELLO.
22472         * lib/stdio_.h (ftello): New declaration.
22473         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
22474         HAVE_FTELLO.
22475
22476 2007-04-25  Bruno Haible  <bruno@clisp.org>
22477
22478         * modules/fseeko-tests: New file.
22479         * tests/test-fseeko.c: New file.
22480
22481         * modules/fseeko: New file.
22482         * m4/fseeko.m4: New file.
22483         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
22484         HAVE_FSEEKO.
22485         * lib/stdio_.h (fseeko): New declaration.
22486         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
22487         HAVE_FSEEKO.
22488
22489 2007-04-25  Bruno Haible  <bruno@clisp.org>
22490
22491         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
22492
22493 2007-04-25  Bruno Haible  <bruno@clisp.org>
22494
22495         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
22496         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
22497         * tests/test-unistd.c: Likewise.
22498         * tests/test-fcntl.c: Likewise.
22499
22500 2007-04-23  Eric Blake  <ebb9@byu.net>
22501
22502         * lib/fflush.c: Fix missing include.
22503         Reported by Bruno Haible.
22504
22505 2007-04-23  Bruno Haible  <bruno@clisp.org>
22506
22507         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
22508         Reported by Eric Blake.
22509
22510 2007-04-23  Bruno Haible  <bruno@clisp.org>
22511
22512         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
22513
22514 2007-04-23  Bruno Haible  <bruno@clisp.org>
22515
22516         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
22517
22518 2007-04-23  Bruno Haible  <bruno@clisp.org>
22519
22520         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
22521         Needed on HP-UX 11.
22522
22523 2007-04-16  Eric Blake  <ebb9@byu.net>
22524
22525         Make fflush rely on fpurge.
22526         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
22527         open coding all variants.
22528         * modules/fflush (Depends-on): Add fpurge and unistd.
22529         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
22530         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
22531
22532         Fix --with-tests compilation on cygwin.
22533         * modules/argmatch-tests (Makefile.am): List gnulib library first
22534         in LDADD.
22535         * modules/argp-tests (Makefile.am): Likewise.
22536         * modules/array-list-tests (Makefile.am): Likewise.
22537         * modules/array-oset-tests (Makefile.am): Likewise.
22538         * modules/avltree-list-tests (Makefile.am): Likewise.
22539         * modules/avltree-oset-tests (Makefile.am): Likewise.
22540         * modules/avltreehash-list-tests (Makefile.am): Likewise.
22541         * modules/carray-list-tests (Makefile.am): Likewise.
22542         * modules/dirname-tests (Makefile.am): Likewise.
22543         * modules/frexp-tests (Makefile.am): Likewise.
22544         * modules/isnanl-tests (Makefile.am): Likewise.
22545         * modules/linked-list-tests (Makefile.am): Likewise.
22546         * modules/linkedhash-list-tests (Makefile.am): Likewise.
22547         * modules/lock-tests (Makefile.am): Likewise.
22548         * modules/rbtree-list-tests (Makefile.am): Likewise.
22549         * modules/rbtree-oset-tests (Makefile.am): Likewise.
22550         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
22551         * modules/tls-tests (Makefile.am): Likewise.
22552         * modules/tsearch-tests (Makefile.am): Likewise.
22553         * modules/xvasprintf-tests (Makefile.am): Likewise.
22554
22555         Fix fpurge for cygwin.
22556         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
22557         value.
22558         * modules/fpurge-tests (Depends-on): Clean up trash.
22559
22560 2007-04-16  Simon Josefsson  <simon@josefsson.org>
22561
22562         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
22563
22564         * m4/autobuild.m4: Re-indent.
22565
22566 2007-04-13  Bruno Haible  <bruno@clisp.org>
22567
22568         * modules/fpurge-tests: New file.
22569         * tests/test-fpurge.c: New file.
22570
22571         * modules/fpurge: New file.
22572         * lib/fpurge.h: New file.
22573         * lib/fpurge.c: New file.
22574         * m4/fpurge.m4: New file.
22575
22576 2007-04-13  Bruno Haible  <bruno@clisp.org>
22577
22578         * modules/fbufmode-tests: New file.
22579         * tests/test-fbufmode.c: New file.
22580
22581         * modules/fbufmode: New file.
22582         * lib/fbufmode.h: New file.
22583         * lib/fbufmode.c: New file.
22584         * m4/fbufmode.m4: New file.
22585
22586 2007-04-13  Bruno Haible  <bruno@clisp.org>
22587
22588         * modules/fwritable-tests: New file.
22589         * tests/test-fwritable.c: New file.
22590
22591         * modules/fwritable: New file.
22592         * lib/fwritable.h: New file.
22593         * lib/fwritable.c: New file.
22594         * m4/fwritable.m4: New file.
22595
22596 2007-04-13  Bruno Haible  <bruno@clisp.org>
22597
22598         * modules/freadable-tests: New file.
22599         * tests/test-freadable.c: New file.
22600
22601         * modules/freadable: New file.
22602         * lib/freadable.h: New file.
22603         * lib/freadable.c: New file.
22604         * m4/freadable.m4: New file.
22605
22606 2007-04-13  Bruno Haible  <bruno@clisp.org>
22607
22608         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
22609         MOSTLYCLEANFILES.
22610
22611 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
22612
22613         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
22614         gzip bootstrap.conf to avoid dragging in i18n machinery.
22615         (gnulib_tool_option): Use it.
22616
22617 2007-04-13  Bruno Haible  <bruno@clisp.org>
22618
22619         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
22620         %F directives.
22621         * tests/test-vasprintf-posix.c (test_function): Likewise.
22622         * tests/test-snprintf-posix.h (test_function): Likewise.
22623         * tests/test-sprintf-posix.h (test_function): Likewise.
22624         * tests/test-fprintf-posix.h (test_function): Likewise.
22625         * tests/test-printf-posix.h (test_function): Likewise.
22626         * tests/test-fprintf-posix.out: Likewise.
22627
22628 2007-04-13  Bruno Haible  <bruno@clisp.org>
22629
22630         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
22631         * modules/tls-tests (configure.ac): Likewise.
22632         Reported by Arto C. Nirkko <anirkko@insel.ch>.
22633
22634 2007-04-13  Bruno Haible  <bruno@clisp.org>
22635
22636         * lib/tls.c (glthread_tls_get): Fix return type.
22637         Patch by Arto C. Nirkko <anirkko@insel.ch>.
22638
22639 2007-04-12  Eric Blake  <ebb9@byu.net>
22640
22641         * modules/gettime (Depends-on): Remove gettime.
22642         Reported by Dmitry V. Levin.
22643
22644 2007-04-12  Bruno Haible  <bruno@clisp.org>
22645
22646         * modules/fflush (Include): Mention <stdio.h>.
22647         * modules/strtoimax (Include): Mention <inttypes.h>.
22648         * modules/strtoumax (Include): Likewise.
22649
22650 2007-04-12  Eric Blake  <ebb9@byu.net>
22651
22652         * .cvsignore: New file.
22653         * .gitignore: Likewise.
22654
22655 2007-04-12  Bruno Haible  <bruno@clisp.org>
22656
22657         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
22658         not before, since $(LDADD) often contains libgnu.a.
22659         * modules/striconv-tests (test_striconv_LDADD): Likewise.
22660         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
22661         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
22662         Needed on Cygwin.
22663
22664 2007-04-12  Eric Blake  <ebb9@byu.net>
22665
22666         Work around glibc's failure to flush stdin on fclose.
22667         * lib/closein.c (close_stdin): Flush stdin before closing.
22668
22669         Work around glibc's failure to reset seekable stdin on exit.
22670         * modules/closein: New module.
22671         * lib/closein.c: New file.
22672         * lib/closein.h: Likewise.
22673         * m4/closein.m4: Likewise.
22674         * MODULES.html.sh (File stream based Input/Output): Document it.
22675
22676 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22677
22678         * gnulib-tool: Rename generated 'autobuild' script to
22679         'do-autobuild' in --create-megatestdir output.
22680
22681         * doc/gnulib.texi (Build robot for gnulib): Fix.
22682
22683 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22684
22685         * modules/sysexits (Depends-on): Add absolute-header.
22686
22687 2007-04-12  Eric Blake  <ebb9@byu.net>
22688
22689         No need to preserve errno on success.
22690         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
22691         Reported by Bruno Haible.
22692
22693 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22694
22695         * MODULES.html.sh (Support for maintaining and releasing
22696         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
22697
22698 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22699
22700         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
22701
22702 2007-04-12  Simon Josefsson  <simon@josefsson.org>
22703
22704         * modules/autobuild: New module.
22705
22706         * m4/autobuild.m4: New file.
22707
22708 2007-04-11  Bruno Haible  <bruno@clisp.org>
22709
22710         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
22711         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
22712         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
22713         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
22714         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22715         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22716         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22717         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
22718         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22719         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22720         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
22721         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22722         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22723         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
22724         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22725         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22726         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
22727         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22728         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22729         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
22730         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22731         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22732         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
22733         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22734         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22735         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
22736         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
22737         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
22738         Reported by Eric Blake.
22739
22740 2007-04-11  Bruno Haible  <bruno@clisp.org>
22741
22742         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
22743
22744 2007-04-10  Bruno Haible  <bruno@clisp.org>
22745
22746         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
22747         for NaN and Infinity. Needed on FreeBSD 6.1.
22748         * tests/test-vasnprintf-posix.c (test_function): Undo last change
22749         regarding results for "%010a" of Infinity and NaN.
22750         * tests/test-vasprintf-posix.c (test_function): Likewise.
22751         * tests/test-snprintf-posix.h (test_function): Likewise.
22752         * tests/test-sprintf-posix.h (test_function): Likewise.
22753         * tests/test-fprintf-posix.h (test_function): Likewise.
22754         * tests/test-printf-posix.h (test_function): Likewise.
22755         * tests/test-fprintf-posix.out: Likewise.
22756
22757 2007-04-10  Bruno Haible  <bruno@clisp.org>
22758
22759         * modules/locale-tests: New file.
22760         * tests/test-locale.c: New file.
22761
22762         * modules/locale: New file.
22763         * lib/locale_.h: New file.
22764         * m4/locale_h.m4: New file.
22765
22766 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
22767             Bruno Haible  <bruno@clisp.org>
22768
22769         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
22770         be determined, test for availability of the copysignf, copysign,
22771         copysignl functions.
22772         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
22773         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
22774         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
22775
22776 2007-04-09  Eric Blake  <ebb9@byu.net>
22777
22778         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
22779         * modules/stdio (Makefile.am): Support fflush.
22780         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
22781         * modules/fflush: New file.
22782         * lib/fflush.c: Likewise.
22783         * m4/fflush.m4: Likewise.
22784         * modules/fflush-tests: New test.
22785         * tests/test-fflush.c: Likewise.
22786         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
22787
22788 2007-04-06  Bruno Haible  <bruno@clisp.org>
22789
22790         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
22791         (VASNPRINTF): Use signbit for faster determination whether to print a
22792         minus sign.
22793         * modules/vasnprintf (Files): Remove lib/float+.h.
22794         * modules/fprintf-posix (Depends-on): Add signbit.
22795         * modules/snprintf-posix (Depends-on): Likewise.
22796         * modules/sprintf-posix (Depends-on): Likewise.
22797         * modules/vasnprintf-posix (Depends-on): Likewise.
22798         * modules/vasprintf-posix (Depends-on): Likewise.
22799         * modules/vfprintf-posix (Depends-on): Likewise.
22800         * modules/vsnprintf-posix (Depends-on): Likewise.
22801         * modules/vsprintf-posix (Depends-on): Likewise.
22802
22803 2007-04-06  Bruno Haible  <bruno@clisp.org>
22804
22805         * tests/test-frexp.c (main): Test also the sign bit of zero results.
22806         * tests/test-frexpl.c (main): Likewise.
22807         * tests/test-ldexpl.c (main): Likewise.
22808         * modules/frexp-tests (Depends-on): Add signbit.
22809         * modules/frexpl-tests (Depdends-on): Likewise.
22810         * modules/ldexpl-tests (Depdends-on): Likewise.
22811
22812 2007-04-06  Bruno Haible  <bruno@clisp.org>
22813
22814         * modules/signbit-tests: New file.
22815         * tests/test-signbit.c: New file.
22816
22817         * modules/signbit: New file.
22818         * lib/signbitf.c: New file.
22819         * lib/signbitd.c: New file.
22820         * lib/signbitl.c: New file.
22821         * m4/signbit.m4: New file.
22822         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
22823         (signbit): New macro.
22824         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
22825         REPLACE_SIGNBIT.
22826         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
22827         REPLACE_FREXPL into math.h.
22828
22829 2007-04-06  Bruno Haible  <bruno@clisp.org>
22830
22831         * modules/isnanf-nolibm-tests: New file.
22832         * tests/test-isnanf.c: New file.
22833
22834         * modules/isnanf-nolibm: New file.
22835         * lib/isnanf.h: New file.
22836         * lib/isnanf.c: New file.
22837         * lib/isnan.c: Consider the USE_FLOAT macro.
22838         * m4/isnanf.m4: New file.
22839
22840 2007-04-06  Bruno Haible  <bruno@clisp.org>
22841
22842         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
22843         (Link): New section.
22844
22845         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
22846
22847 2007-04-06  Bruno Haible  <bruno@clisp.org>
22848
22849         Assume the 'long double' type.
22850         * m4/longdouble.m4: Remove file.
22851         * config/srclist.txt: Don't mention longdouble.m4.
22852         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
22853         * lib/float+.h: Likewise.
22854         * lib/frexp.c: Likewise.
22855         * lib/printf-args.h: Likewise.
22856         * lib/printf-args.c: Likewise.
22857         * lib/printf-frexp.c: Likewise.
22858         * lib/printf-parse.c: Likewise.
22859         * lib/vasnprintf.c: Likewise.
22860         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
22861         * m4/intl.m4: Likewise.
22862         * m4/isnanl.m4: Likewise.
22863         * m4/printf.m4: Likewise.
22864         * m4/printf-frexpl.m4: Likewise.
22865         * m4/vasnprintf.m4: Likewise.
22866         * modules/allocsa (Files): Remove m4/longdouble.m4.
22867         * modules/gettext (Files): Likewise.
22868         * modules/relocatable-prog-wrapper (Files): Likewise.
22869         * modules/vasnprintf (Files): Likewise.
22870         * modules/isnanl (Files): Likewise.
22871         (Include): Simplify.
22872         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
22873         (Include): Simplify.
22874         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
22875         (Include): Simplify.
22876         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
22877         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22878         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
22879         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22880         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
22881         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22882         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
22883         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22884         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
22885         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22886         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
22887         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
22888         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
22889         * tests/test-isnanl.c: Likewise.
22890         * tests/test-snprintf-posix.h: Likewise.
22891         * tests/test-sprintf-posix.h: Likewise.
22892         * tests/test-vasnprintf-posix.c: Likewise.
22893         * tests/test-vasnprintf-posix2.c: Likewise.
22894         * tests/test-vasprintf-posix.c: Likewise.
22895
22896 2007-04-06  Bruno Haible  <bruno@clisp.org>
22897
22898         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
22899         * lib/math_.h [__DECC]: Include the overridden include file through
22900         #include_next, outside the double-inclusion guard.
22901         * lib/stdio_.h [__DECC]: Likewise.
22902         * lib/stdlib_.h [__DECC]: Likewise.
22903         * lib/string_.h [__DECC]: Likewise.
22904         * lib/time_.h [__DECC]: Likewise.
22905         * lib/wchar_.h [__DECC]: Likewise.
22906         * lib/wctype_.h [__DECC]: Likewise.
22907         * lib/inttypes_.h [__DECC]: Likewise.
22908         Reported by Albert Chin <china@thewrittenword.com> in
22909         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
22910
22911 2007-04-04  Eric Blake  <ebb9@byu.net>
22912
22913         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
22914         1.5.x.
22915
22916 2007-04-04  Bruno Haible  <bruno@clisp.org>
22917
22918         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
22919         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
22920
22921 2007-04-04  Bruno Haible  <bruno@clisp.org>
22922
22923         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
22924         results for "%010a" of Infinity and NaN.
22925         * tests/test-vasprintf-posix.c (test_function): Likewise.
22926         * tests/test-snprintf-posix.h (test_function): Likewise.
22927         * tests/test-sprintf-posix.h (test_function): Likewise.
22928         * tests/test-fprintf-posix.h (test_function): Remove these tests.
22929         * tests/test-printf-posix.h (test_function): Likewise.
22930         * tests/test-fprintf-posix.out: Update.
22931         Needed for FreeBSD 6.1.
22932
22933 2007-04-04  Bruno Haible  <bruno@clisp.org>
22934
22935         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
22936         directly used by the gnulib modules nor by gnulib-tool.
22937
22938 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
22939
22940         * DEPENDENCIES: Give overall description of version dependency
22941         desirability.  Use more-typical names for apps.
22942         Add shell, coreutils, diffutils, grep, tar, gzip.
22943
22944 2007-04-04  Simon Josefsson  <simon@josefsson.org>
22945
22946         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
22947
22948 2007-04-04  Karl Berry  <karl@gnu.org>
22949
22950         * MODULES.html.sh (func_module): missing '.
22951
22952 2007-04-03  Bruno Haible  <bruno@clisp.org>
22953
22954         * modules/argmatch-tests (Makefile.am): New variable
22955         test_argmatch_LDADD.
22956         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
22957         * modules/array-list-tests (Makefile.am): New variable
22958         test_array_list_LDADD.
22959         * modules/array-oset-tests (Makefile.am): New variable
22960         test_array_oset_LDADD.
22961         * modules/avltree-list-tests (Makefile.am): New variable
22962         test_avltree_list_LDADD.
22963         * modules/avltree-oset-tests (Makefile.am): New variable
22964         test_avltree_oset_LDADD.
22965         * modules/avltreehash-list-tests (Makefile.am): New variable
22966         test_avltreehash_list_LDADD.
22967         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
22968         test_canonicalize_lgpl_LDADD.
22969         * modules/carray-list-tests (Makefile.am): New variable
22970         test_carray_list_LDADD.
22971         * modules/dirname-tests (Makefile.am): New variable
22972         test_dirname_LDADD.
22973         * modules/linked-list-tests (Makefile.am): New variable
22974         test_linked_list_LDADD.
22975         * modules/linkedhash-list-tests (Makefile.am): New variable
22976         test_linkedhash_list_LDADD.
22977         * modules/rbtree-list-tests (Makefile.am): New variable
22978         test_rbtree_list_LDADD.
22979         * modules/rbtree-oset-tests (Makefile.am): New variable
22980         test_rbtree_oset_LDADD.
22981         * modules/rbtreehash-list-tests (Makefile.am): New variable
22982         test_rbtreehash_list_LDADD.
22983         * modules/xvasprintf-tests (Makefile.am): New variable
22984         test_xvasprintf_LDADD.
22985         Reported by Eric Blake.
22986
22987 2007-04-03  Eric Blake  <ebb9@byu.net>
22988
22989         * DEPENDENCIES: Weaken m4 requirements.
22990
22991 2007-04-03  Bruno Haible  <bruno@clisp.org>
22992
22993         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
22994         * modules/isnanl-tests (configure.ac): Likewise.
22995
22996 2007-04-03  Ben Pfaff  <blp@gnu.org>
22997
22998         * modules/iconv_open: Add $(srcdir)/ to source directory
22999         references in Makefile fragments that call gperf, to fix VPATH
23000         builds.
23001
23002 2007-04-03  Bruno Haible  <bruno@clisp.org>
23003
23004         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
23005         * lib/ldexpl.c: Undo last change.
23006
23007 2007-04-03  Bruno Haible  <bruno@clisp.org>
23008
23009         * modules/printf-frexpl (Depends-on): Undo last change.
23010         (Files): Add m4/ldexpl.m4.
23011
23012 2007-04-03  Bruno Haible  <bruno@clisp.org>
23013
23014         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
23015         * modules/isnanl (Link): New section.
23016
23017         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
23018         * modules/frexp (Link): New section.
23019
23020         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
23021         * modules/frexpl (Link): New section.
23022
23023         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
23024         * modules/ldexpl (Link): New section.
23025
23026 2007-04-03  Bruno Haible  <bruno@clisp.org>
23027
23028         * modules/TEMPLATE-EXTENDED: New file.
23029         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
23030
23031 2007-04-03  Bruno Haible  <bruno@clisp.org>
23032
23033         * DEPENDENCIES: New file.
23034         Suggested by Simon Josefsson.
23035
23036 2007-04-03  Bruno Haible  <bruno@clisp.org>
23037
23038         * doc/gnulib.texi: Escape @.
23039
23040 2007-04-03  James Youngman  <jay@gnu.org>
23041         and Paul Eggert  <eggert@cs.ucla.edu>
23042
23043         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
23044         birthtime on all systems that have birthtime, not just those which
23045         use st_birthtimensec rather than st_birthtim.  Putting zero in
23046         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
23047         that the birth time is not available for files on an NFS mount.
23048
23049 2007-04-03  Simon Josefsson  <simon@josefsson.org>
23050
23051         * modules/memxor: Move back from crypto/, suggested by Bruno.
23052         * modules/crypto/hmac-sha1: Fix memxor dependency.
23053
23054         * modules/crypto/gc: Moved from ../.
23055
23056 2007-04-02  Eric Blake  <ebb9@byu.net>
23057
23058         * lib/ldexpl.c (includes): Avoid libm.
23059
23060         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
23061
23062 2007-04-02  Bruno Haible  <bruno@clisp.org>
23063
23064         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
23065         on IRIX.
23066
23067 2007-04-02  Bruno Haible  <bruno@clisp.org>
23068
23069         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
23070         x86 or x86_64 platforms running MacOS X.
23071         Reported by Ryan Schmidt <@ryandesign.com>.
23072
23073 2007-04-02  Bruno Haible  <bruno@clisp.org>
23074
23075         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
23076         i386.
23077
23078 2007-04-01  Simon Josefsson  <simon@josefsson.org>
23079
23080         * modules/crypto/arcfour: Moved from ../.
23081         * modules/crypto/arcfour-tests: Moved from ../.
23082         * modules/crypto/arctwo: Moved from ../.
23083         * modules/crypto/arctwo-tests: Moved from ../.
23084         * modules/crypto/des: Moved from ../.
23085         * modules/crypto/des-tests: Moved from ../.
23086         * modules/crypto/gc-arcfour: Moved from ../.
23087         * modules/crypto/gc-arcfour-tests: Moved from ../.
23088         * modules/crypto/gc-arctwo: Moved from ../.
23089         * modules/crypto/gc-arctwo-tests: Moved from ../.
23090         * modules/crypto/gc-des: Moved from ../.
23091         * modules/crypto/gc-des-tests: Moved from ../.
23092         * modules/crypto/gc-hmac-md5: Moved from ../.
23093         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
23094         * modules/crypto/gc-hmac-sha1: Moved from ../.
23095         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
23096         * modules/crypto/gc-md2: Moved from ../.
23097         * modules/crypto/gc-md2-tests: Moved from ../.
23098         * modules/crypto/gc-md4: Moved from ../.
23099         * modules/crypto/gc-md4-tests: Moved from ../.
23100         * modules/crypto/gc-md5: Moved from ../.
23101         * modules/crypto/gc-md5-tests: Moved from ../.
23102         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
23103         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
23104         * modules/crypto/gc-random: Moved from ../.
23105         * modules/crypto/gc-rijndael: Moved from ../.
23106         * modules/crypto/gc-rijndael-tests: Moved from ../.
23107         * modules/crypto/gc-sha1: Moved from ../.
23108         * modules/crypto/gc-sha1-tests: Moved from ../.
23109         * modules/crypto/gc-tests: Moved from ../.
23110         * modules/crypto/hmac-md5: Moved from ../.
23111         * modules/crypto/hmac-md5-tests: Moved from ../.
23112         * modules/crypto/hmac-sha1: Moved from ../.
23113         * modules/crypto/hmac-sha1-tests: Moved from ../.
23114         * modules/crypto/md2: Moved from ../.
23115         * modules/crypto/md2-tests: Moved from ../.
23116         * modules/crypto/md4: Moved from ../.
23117         * modules/crypto/md4-tests: Moved from ../.
23118         * modules/crypto/md5: Moved from ../.
23119         * modules/crypto/md5-tests: Moved from ../.
23120         * modules/crypto/memxor: Moved from ../.
23121         * modules/crypto/rijndael: Moved from ../.
23122         * modules/crypto/rijndael-tests: Moved from ../.
23123         * modules/crypto/sha1: Moved from ../.
23124
23125 2007-03-30  James Youngman  <jay@gnu.org>
23126
23127         * tests/test-stat-time.c (prepare_test): use chmod() rather than
23128         rename() to change the ctime of a file (because ctime is unaffected
23129         by rename on jfs2 on AIX 5.1).
23130         (main): Start by doing cleanup, in case a previous run failed leaving
23131         test files behind.
23132
23133 2007-03-31  Bruno Haible  <bruno@clisp.org>
23134
23135         Support old proprietary implementations of iconv.
23136         * modules/iconv_open: New file.
23137         * lib/iconv_.h: New file.
23138         * m4/iconv_h.m4: New file.
23139         * lib/iconv_open.c: New file.
23140         * lib/iconv_open-aix.gperf: New file.
23141         * lib/iconv_open-hpux.gperf: New file.
23142         * lib/iconv_open-irix.gperf: New file.
23143         * lib/iconv_open-osf.gperf: New file.
23144         * m4/iconv_open.m4: New file.
23145         * modules/linebreak (Depends-on): Add iconv_open.
23146         * modules/striconv (Depends-on): Likewise.
23147         * modules/striconveh (Depends-on): Likewise.
23148         * modules/unicodeio (Depends-on): Likewise.
23149         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
23150         (iconv_t)(-1).
23151         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
23152         conversion if cd is (iconv_t)(-1).
23153         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
23154         is not possible.
23155
23156 2007-03-31  Bruno Haible  <bruno@clisp.org>
23157
23158         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
23159         work on Solaris either. Protect also second use of "autodetect_jp".
23160
23161 2007-03-31  Bruno Haible  <bruno@clisp.org>
23162
23163         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
23164         the function is not present.
23165
23166 2007-03-31  Bruno Haible  <bruno@clisp.org>
23167
23168         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
23169         the function is not present.
23170
23171 2007-03-31  Bruno Haible  <bruno@clisp.org>
23172
23173         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
23174         a bug in HP-UX iconv_open().
23175
23176 2007-03-31  Bruno Haible  <bruno@clisp.org>
23177
23178         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
23179         (Mathematics <math.h>): New section, add fpieee.
23180         (Input/output <stdio.h>): Add fseterr.
23181         (Mathematics <math.h>): New section, add printf-frexp.
23182         (Container data structures): Add sublist.
23183         (Core language properties): Add fpucw, inline.
23184         (Functions for greatest-width integer types <inttypes.h>): Add
23185         imaxabs, imaxdiv, inttypes.
23186         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
23187         isnanl-nolibm, ldexp.
23188         (Mathematics <math.h>): New section, add printf-frexpl.
23189         (Support for systems lacking POSIX:2001): Add fprintf-posix,
23190         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
23191         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
23192         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
23193         (Unicode string functions): Add unistr/u*-mbtoucr.
23194         (Java): Add javacomp-script, javaexec-script.
23195         (C#): Add csharpcomp-script, csharpexec-script.
23196         (Support for building libraries and executables): Add havelib,
23197         relocatable-*.
23198         (Support for maintaining and releasing projects): Renamed from
23199         'Support for maintaining and release projects'. Add announce-gen.
23200
23201 2007-03-31  Bruno Haible  <bruno@clisp.org>
23202
23203         * README: Talk primarily about git.
23204         (git and CVS): Renamed from CVS.
23205         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
23206         gnulib is available through git.
23207         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
23208
23209 2007-03-30  Bruno Haible  <bruno@clisp.org>
23210
23211         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
23212         * lib/poll_.h: Likewise.
23213         * lib/stat_.h: Likewise.
23214         * lib/sys_time_.h: Likewise.
23215         * lib/sysexit_.h: Likewise.
23216         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
23217         * lib/stdbool_.h: Likewise.
23218         * lib/byteswap_.h: Add double-inclusion guard.
23219
23220 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
23221
23222         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
23223
23224 2007-03-30  Karl Berry  <karl@gnu.org>
23225
23226         * config/srclist-update: double space after USA in the license
23227         substitution, since that's how it's usually (?) written.
23228
23229 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
23230
23231         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
23232         reported by Bruno Haible.
23233
23234 2007-03-29  Bruno Haible  <bruno@clisp.org>
23235
23236         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
23237         a bug in AIX iconv().
23238
23239 2007-03-29  Bruno Haible  <bruno@clisp.org>
23240
23241         * modules/ldexpl-tests: New file.
23242         * tests/test-ldexpl.c: New file.
23243
23244 2007-03-29  Bruno Haible  <bruno@clisp.org>
23245
23246         * lib/ldexpl.c: Include fpucw.h.
23247         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
23248         multiplication.
23249         * modules/ldexpl (Depends-on): Add fpucw.
23250
23251 2007-03-29  Bruno Haible  <bruno@clisp.org>
23252
23253         * modules/ldexpl: New file.
23254         * m4/ldexpl.m4: New file.
23255         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
23256         set.
23257         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
23258         REPLACE_LDEXPL.
23259         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
23260         REPLACE_LDEXPL.
23261         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
23262         gl_FUNC_LDEXPL_WORKS.
23263         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
23264         * modules/mathl (Files): Remove lib/ldexpl.c.
23265         (Depends-on): Add ldexpl.
23266
23267 2007-03-29  Bruno Haible  <bruno@clisp.org>
23268
23269         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
23270
23271 2007-03-29  Bruno Haible  <bruno@clisp.org>
23272
23273         * tests/test-striconveh.c (main): Don't assume that a direct conversion
23274         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
23275         and possibly also HP-UX.
23276         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
23277         work on AIX, IRIX, HP-UX, OSF/1.
23278         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
23279         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
23280         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
23281         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
23282         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
23283         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
23284
23285 2007-03-29  Bruno Haible  <bruno@clisp.org>
23286
23287         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
23288
23289 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
23290
23291         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
23292         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
23293
23294 2007-03-29  Eric Blake  <ebb9@byu.net>
23295
23296         * lib/acl-internal.h: Remove redundant include.
23297         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
23298         Cygwin when a file is locked.
23299
23300 2007-03-29  Bruno Haible  <bruno@clisp.org>
23301
23302         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
23303         file.
23304         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
23305
23306 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
23307
23308         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
23309         try to remove a parent directory if the child couldn't be removed
23310         (except for the first rmdir, which could fail because the child
23311         doesn't exist).  Problem reported by Jeff Blaine in
23312         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
23313
23314 2007-03-28  Bruno Haible  <bruno@clisp.org>
23315
23316         * lib/striconveh.c (utf8conv_carefully): New function.
23317         (mem_cd_iconveh_internal): Invoke it.
23318
23319 2007-03-28  Bruno Haible  <bruno@clisp.org>
23320
23321         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
23322         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
23323         input.
23324         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
23325         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
23326         unistr/u8-uctomb.
23327
23328 2007-03-28  Bruno Haible  <bruno@clisp.org>
23329
23330         * modules/unistr/u8-mbtoucr: New file.
23331         * lib/unistr/u8-mbtoucr.c: New file.
23332         * modules/unistr/u16-mbtoucr: New file.
23333         * lib/unistr/u16-mbtoucr.c: New file.
23334         * modules/unistr/u16-mbtoucr: New file.
23335         * lib/unistr/u16-mbtoucr.c: New file.
23336         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
23337
23338 2007-03-27  Simon Josefsson  <simon@josefsson.org>
23339             Bruno Haible  <bruno@clisp.org>
23340
23341         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
23342         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
23343         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
23344
23345         * m4/stdio_h.m4: Add stubs for vasprintf too.
23346
23347         * modules/stdio: Support vasprintf in sed command.
23348
23349         * modules/vasprintf: Depend on stdio for prototypes.  Remove
23350         vasprintf.h.  Add stdio module indicator.
23351
23352         * lib/stdio_.h: Declare asprintf and vasprintf, based on
23353         vasprintf.h.
23354
23355         * lib/vasprintf.h: File removed.
23356
23357         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
23358         * lib/vasprintf.c: Ditto.
23359         * lib/xvasprintf.c: Ditto.
23360         * tests/test-vasprintf-posix.c: Ditto.
23361         * tests/test-vasprintf.c: Ditto.
23362
23363 2007-03-27  Bruno Haible  <bruno@clisp.org>
23364
23365         Make vasnprintf multithread-safe.
23366         * lib/vasnprintf.c (decimal_point_char): New function.
23367         (VASNPRINTF): Use it.
23368         Suggested by Simon Josefsson.
23369
23370 2007-03-27  Eric Blake  <ebb9@byu.net>
23371
23372         Support sub-second birthtime on cygwin.
23373         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
23374         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
23375         (get_stat_birthtime): Also work with st_birthtim.
23376
23377 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
23378
23379         * lib/stat-time.h (USE_BIRTHTIME): Remove.
23380         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
23381         (get_stat_birthtime_ns): Do not try to use "spare" fields.
23382         (get_stat_birthtime_ns): Simplify compile-time tests.
23383         (get_stat_birthtime): Change the API to look like
23384         get_stat_mtime etc., except return a negative tv_nsec on error.
23385         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
23386         Don't check for "spare" fields.
23387         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
23388         or for struct stat.st_birthtime, as these tests aren't used.
23389         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
23390
23391 2007-03-27  Bruno Haible  <bruno@clisp.org>
23392
23393         * lib/stat-time.h: Include <sys/stat.h>.
23394
23395 2007-03-27  James Youngman  <jay@gnu.org>
23396
23397         * lib/stat-time.h (get_stat_birthtime): New function for
23398           retrieving st_birthtime as provided by UFS2 (hence *BSD).
23399         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
23400           and its variants.
23401         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
23402         * modules/stat-time-test: New file.
23403         * tests/test-stat-time.c: New test, devised by Bruno Haible.
23404
23405 2007-03-26  Bruno Haible  <bruno@clisp.org>
23406
23407         Better support of signalling NaNs.
23408         * lib/atanl.c: Include isnanl.h.
23409         (atanl): Perform test for NaN at the beginning of the function and
23410         through a call to isnanl.
23411         * lib/cosl.c: Include isnanl.h.
23412         (cosl): Perform test for NaN at the beginning of the function and
23413         through a call to isnanl.
23414         * lib/ldexpl.c: Include isnanl.h.
23415         (ldexpl): Perform test for NaN through a call to isnanl.
23416         * lib/logl.c: Include isnanl.h.
23417         (logl): Perform test for NaN at the beginning of the function and
23418         through a call to isnanl.
23419         * lib/sinl.c: Include isnanl.h.
23420         (sinl): Perform test for NaN at the beginning of the function and
23421         through a call to isnanl.
23422         * lib/sqrtl.c: Include isnanl.h.
23423         (sqrtl): Perform test for NaN at the beginning of the function and
23424         through a call to isnanl.
23425         * lib/tanl.c: Include isnanl.h.
23426         (tanl): Perform test for NaN at the beginning of the function and
23427         through a call to isnanl.
23428         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
23429         * modules/mathl (Depends-on): Add isnanl.
23430
23431 2007-03-26  Eric Blake  <ebb9@byu.net>
23432
23433         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
23434         regression in logic sense of previous patch.
23435
23436 2007-03-26  Bruno Haible  <bruno@clisp.org>
23437
23438         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
23439         unportable shell command "if ! ...".
23440         Reported by Ralf Wildenhues.
23441
23442 2007-03-25  Bruno Haible  <bruno@clisp.org>
23443
23444         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
23445         <sysexits.h> file, and only add EX_CONFIG.
23446         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
23447         absolute file name and whether it is sufficient. Substitute also
23448         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
23449         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
23450         ABSOLUTE_SYSEXITS_H into sysexits.h.
23451
23452 2007-03-25  Bruno Haible  <bruno@clisp.org>
23453
23454         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
23455         hints is NULL.
23456
23457 2007-03-25  Bruno Haible  <bruno@clisp.org>
23458
23459         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
23460         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
23461
23462 2007-03-25  Bruno Haible  <bruno@clisp.org>
23463
23464         * lib/vasnprintf.c: Include langinfo.h.
23465         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
23466         multithread-safe.
23467         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
23468         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
23469         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
23470         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
23471         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
23472         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
23473         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
23474         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
23475         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
23476         Reported by Simon Josefsson.
23477
23478 2007-03-25  Bruno Haible  <bruno@clisp.org>
23479
23480         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
23481         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
23482         * modules/vasnprintf (Depends-on): Add stdint.
23483
23484 2007-03-25  Bruno Haible  <bruno@clisp.org>
23485
23486         * modules/fpieee: New file.
23487         * m4/fpieee.m4: New file.
23488         * modules/isnan-nolibm (Depends-on): Add fpieee.
23489         * modules/isnanl-nolibm (Depends-on): Add fpieee.
23490         * modules/isnanl (Depends-on): Add fpieee.
23491
23492 2007-03-25  Bruno Haible  <bruno@clisp.org>
23493
23494         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
23495
23496 2007-03-25  Bruno Haible  <bruno@clisp.org>
23497
23498         Avoid test failures on IRIX 6.5.
23499         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
23500         (main): Use it.
23501         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
23502         macros.
23503         (main): Use them.
23504
23505 2007-03-25  Bruno Haible  <bruno@clisp.org>
23506
23507         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
23508         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
23509         exists but doesn't work.
23510         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
23511         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
23512         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
23513         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
23514
23515 2007-03-25  Bruno Haible  <bruno@clisp.org>
23516
23517         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
23518         returns inf. Needed on IRIX 6.5.
23519
23520 2007-03-25  Bruno Haible  <bruno@clisp.org>
23521
23522         * tests/test-frexpl.c: Include isnanl-nolibm.h.
23523         (main): Use isnanl instead of x != x idiom.
23524         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
23525
23526         * tests/test-frexp.c: Include isnan.h.
23527         (main): Use isnan instead of x != x idiom.
23528         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
23529
23530 2007-03-25  Bruno Haible  <bruno@clisp.org>
23531
23532         * tests/test-frexp.c (NaN): New function/macro.
23533         (main): Use it instead of 0.0 / 0.0.
23534         * tests/test-isnan.c (NaN): New function/macro.
23535         (main): Use it instead of 0.0 / 0.0.
23536         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
23537         (test_function): Use it instead of 0.0 / 0.0.
23538         * tests/test-vasprintf-posix.c (NaN): New function/macro.
23539         (test_function): Use it instead of 0.0 / 0.0.
23540         * tests/test-snprintf-posix.h (NaN): New function/macro.
23541         (test_function): Use it instead of 0.0 / 0.0.
23542         * tests/test-sprintf-posix.h (NaN): New function/macro.
23543         (test_function): Use it instead of 0.0 / 0.0.
23544         * tests/test-fprintf-posix.h (NaN): New function/macro.
23545         (test_function): Use it instead of 0.0 / 0.0.
23546         * tests/test-printf-posix.h (NaN): New function/macro.
23547         (test_function): Use it instead of 0.0 / 0.0.
23548
23549         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
23550
23551 2007-03-25  Bruno Haible  <bruno@clisp.org>
23552
23553         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
23554
23555 2007-03-25  Bruno Haible  <bruno@clisp.org>
23556
23557         * lib/regexec.c (merge_state_with_log): Make static.
23558
23559 2007-03-25  Bruno Haible  <bruno@clisp.org>
23560
23561         * lib/trigl.c (kernel_rem_pio2): Make static.
23562
23563 2007-03-25  Bruno Haible  <bruno@clisp.org>
23564
23565         * lib/sincosl.c (sincosl_table): Make static.
23566
23567 2007-03-25  Bruno Haible  <bruno@clisp.org>
23568
23569         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
23570         if the compiler does not support C99.
23571
23572 2007-03-25  Bruno Haible  <bruno@clisp.org>
23573
23574         * modules/time (Makefile.am): Ensure all rule action lines start with a
23575         tab.
23576
23577 2007-03-24  Bruno Haible  <bruno@clisp.org>
23578
23579         * modules/tsearch-tests: New file.
23580         * tests/test-tsearch.sh: New file.
23581         * tests/test-tsearch.c: New file, mostly copied from glibc.
23582
23583         * modules/search-tests: New file.
23584         * tests/test-search.c: New file.
23585
23586         * modules/search: New file.
23587         * lib/search_.h: New file, incorporating lib/tsearch.h.
23588         * m4/search_h.m4: New file.
23589         * lib/tsearch.h: Remove file.
23590         * lib/tsearch.c: Include search.h instead of tsearch.h.
23591         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
23592         HAVE_TSEARCH.
23593         * modules/tsearch (Files): Remove lib/tsearch.h.
23594         (Depends-on): Add search.
23595         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
23596         (Include): Change tsearch.h into search.h.
23597
23598 2007-03-24  Bruno Haible  <bruno@clisp.org>
23599
23600         * modules/fpucw: New file.
23601         * lib/fpucw.h: New file.
23602         * lib/frexp.c: Include fpucw.h.
23603         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
23604         (FUNC): Use them.
23605         * lib/printf-frexp.c: Include fpucw.h.
23606         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
23607         (FUNC): Use them.
23608         * lib/vasnprintf.c: Include fpucw.h.
23609         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
23610         'long double' calculations.
23611         * tests/test-frexpl.c: Include fpucw.h.
23612         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
23613         * tests/test-printf-frexpl.c: Include fpucw.h.
23614         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
23615         * modules/frexpl (Depends-on): Add fpucw.
23616         * modules/printf-frexpl (Depends-on): Likewise.
23617         * modules/fprintf-posix (Depends-on): Likewise.
23618         * modules/snprintf-posix (Depends-on): Likewise.
23619         * modules/sprintf-posix (Depends-on): Likewise.
23620         * modules/vasnprintf-posix (Depends-on): Likewise.
23621         * modules/vasprintf-posix (Depends-on): Likewise.
23622         * modules/vfprintf-posix (Depends-on): Likewise.
23623         * modules/vsnprintf-posix (Depends-on): Likewise.
23624         * modules/vsprintf-posix (Depends-on): Likewise.
23625         * modules/frexpl-tests (Depends-on): Likewise.
23626         * modules/printf-frexpl-tests (Depends-on): Likewise.
23627
23628 2007-03-24  Bruno Haible  <bruno@clisp.org>
23629
23630         * lib/float+.h: New file.
23631         * lib/isnan.c: Include float+.h.
23632         (SIZE): New macro.
23633         (FUNC): Compare only SIZE bytes of the value.
23634         * lib/vasnprintf.c: Include float+.h.
23635         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
23636         SIZEOF_LDBL or SIZEOF_DBL bytes.
23637         * modules/isnan-nolibm (Files): Add lib/float+.h.
23638         * modules/isnanl-nolibm (Files): Add lib/float+.h.
23639         * modules/isnanl (Files): Add lib/float+.h.
23640         * modules/vasnprintf (Files): Add lib/float+.h.
23641
23642 2007-03-24  Bruno Haible  <bruno@clisp.org>
23643
23644         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
23645         include isnanl-nolibm.h.
23646
23647 2007-03-24  Bruno Haible  <bruno@clisp.org>
23648
23649         * tests/test-read-file.c (main): Don't produce spurious output for
23650         expected situations. Make the test fail if it encountered unexpected
23651         results.
23652
23653 2007-03-24  Bruno Haible  <bruno@clisp.org>
23654
23655         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
23656         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
23657
23658 2007-03-24  Bruno Haible  <bruno@clisp.org>
23659
23660         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
23661
23662 2007-03-24  Bruno Haible  <bruno@clisp.org>
23663
23664         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
23665         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
23666
23667         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
23668         * modules/utf8-ucs4: Turn into a symbolic link to module
23669         unistr/u8-mbtouc.
23670
23671         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
23672         utf8-ucs4-unsafe.
23673         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
23674         unistr/u8-mbtouc-unsafe.
23675
23676         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
23677         * modules/utf16-ucs4: Turn into a symbolic link to module
23678         unistr/u16-mbtouc.
23679
23680         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
23681         utf16-ucs4-unsafe.
23682         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
23683         unistr/u16-mbtouc-unsafe.
23684
23685         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
23686         * modules/ucs4-utf8: Turn into a symbolic link to module
23687         unistr/u8-ubtomb.
23688
23689         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
23690         * modules/ucs4-utf16: Turn into a symbolic link to module
23691         unistr/u16-ubtomb.
23692
23693 2007-03-24  Bruno Haible  <bruno@clisp.org>
23694
23695         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
23696         Enable the function only if HAVE_INLINE.
23697         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
23698         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
23699         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
23700         Enable the function only if HAVE_INLINE.
23701         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
23702         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
23703         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
23704         Enable the function only if HAVE_INLINE.
23705         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
23706         Enable the function only if HAVE_INLINE.
23707         * modules/utf8-ucs4: Update.
23708         * modules/utf8-ucs4-unsafe: Update.
23709         * modules/utf16-ucs4: Update.
23710         * modules/utf16-ucs4-unsafe: Update.
23711         * modules/ucs4-utf8: Update.
23712         * modules/ucs4-utf16: Update.
23713
23714 2007-03-24  Bruno Haible  <bruno@clisp.org>
23715
23716         * lib/utf8-ucs4.h: Remove file.
23717         * lib/utf8-ucs4-unsafe.h: Remove file.
23718         * lib/utf16-ucs4.h: Remove file.
23719         * lib/utf16-ucs4-unsafe.h: Remove file.
23720         * lib/ucs4-utf8.h: Remove file.
23721         * lib/ucs4-utf16.h: Remove file.
23722         * lib/unistr.h: Include their previous contents.
23723         * m4/utf-ucs4.m4: Remove file.
23724         * m4/ucs4-utf.m4: Remove file.
23725         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
23726         (Depends-on): Add unistr/base.
23727         (configure.ac): Remove gl_UTF_UCS4.
23728         (Makefile.am): Update.
23729         (Include): Change to unistr.h.
23730         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
23731         (Depends-on): Add unistr/base.
23732         (configure.ac): Remove gl_UTF_UCS4.
23733         (Makefile.am): Update.
23734         (Include): Change to unistr.h.
23735         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
23736         (Depends-on): Add unistr/base.
23737         (configure.ac): Remove gl_UTF_UCS4.
23738         (Makefile.am): Update.
23739         (Include): Change to unistr.h.
23740         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
23741         (Depends-on): Add unistr/base.
23742         (configure.ac): Remove gl_UTF_UCS4.
23743         (Makefile.am): Update.
23744         (Include): Change to unistr.h.
23745         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
23746         (Depends-on): Add unistr/base.
23747         (configure.ac): Remove gl_UCS4_UTF.
23748         (Makefile.am): Update.
23749         (Include): Change to unistr.h.
23750         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
23751         (Depends-on): Add unistr/base.
23752         (configure.ac): Remove gl_UCS4_UTF.
23753         (Makefile.am): Update.
23754         (Include): Change to unistr.h.
23755         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
23756         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
23757         utf8-ucs4-unsafe.h.
23758         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
23759         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
23760         utf16-ucs4-unsafe.h.
23761         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
23762         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
23763         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
23764         * lib/unistr/u8-strchr.c: Likewise.
23765         * lib/unistr/u8-strrchr.c: Likewise.
23766         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
23767         * lib/unistr/u16-strchr.c: Likewise.
23768         * lib/unistr/u16-strrchr.c: Likewise.
23769         * lib/striconveh.c: Update.
23770         * lib/linebreak.c: Update.
23771
23772 2007-03-24  Bruno Haible  <bruno@clisp.org>
23773
23774         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
23775         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
23776
23777 2007-03-22  Bruno Haible  <bruno@clisp.org>
23778
23779         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
23780
23781 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
23782
23783         * MODULES.html.sh (File system functions): New module write-any-file.
23784         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
23785         * m4/write-any-file.m4: New files.
23786
23787 2007-03-23  Eric Blake  <ebb9@byu.net>
23788
23789         * gnulib-tool: Rearrange space-tab sequences, since some editors
23790         like to eat them.
23791
23792 2007-03-23  Eric Blake  <ebb9@byu.net>
23793
23794         * lib/version-etc.c (version_etc_va): Update license wording to
23795         be more concise.  Recommended by Richard Stallman.
23796
23797 2007-03-22  Bruno Haible  <bruno@clisp.org>
23798
23799         * lib/poll.c (MSG_PEEK): New fallback definition.
23800
23801 2007-03-22  Bruno Haible  <bruno@clisp.org>
23802
23803         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
23804         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
23805         (main): Update.
23806         Fixes a compilation error on BeOS.
23807
23808 2007-03-22  Bruno Haible  <bruno@clisp.org>
23809
23810         * modules/frexpl-tests: New file.
23811         * tests/test-frexpl.c: New file.
23812
23813         * modules/frexpl: New file.
23814         * m4/frexpl.m4: New file.
23815         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
23816         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
23817         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
23818         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
23819         (Depends-on): Add frexpl. Remove isnanl-nolibm.
23820         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
23821
23822 2007-03-22  Bruno Haible  <bruno@clisp.org>
23823
23824         * lib/frexpl.c: Share code with lib/frexp.c.
23825         * modules/mathl (Files): Add lib/frexp.c.
23826         (Depends-on): Add isnanl-nolibm.
23827
23828 2007-03-22  Bruno Haible  <bruno@clisp.org>
23829
23830         * modules/printf-frexp (Files): Add m4/frexp.m4.
23831         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
23832         only if the found frexp function actually works.
23833
23834 2007-03-22  Bruno Haible  <bruno@clisp.org>
23835
23836         * lib/frexp.c: Remove older implementation that uses divisions.
23837
23838 2007-03-21  Bruno Haible  <bruno@clisp.org>
23839
23840         * modules/frexp-tests: New file.
23841         * tests/test-frexp.c: New file.
23842
23843         * modules/frexp: New file.
23844         * lib/frexp.c: New file.
23845         * m4/frexp.m4: New file.
23846         * lib/math_.h (frexp): New declaration.
23847         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
23848         REPLACE_FREXP.
23849         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
23850
23851 2007-03-21  Bruno Haible  <bruno@clisp.org>
23852
23853         * modules/isnanl-tests: New file.
23854         * tests/test-isnanl.c: New file.
23855
23856         * modules/isnanl: New file.
23857         * lib/isnanl.h: New file.
23858         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
23859         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
23860         gl_FUNC_ISNANL_WORKS.
23861         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
23862         New macros.
23863
23864 2007-03-21  Bruno Haible  <bruno@clisp.org>
23865
23866         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
23867         lib/isnanl.h.
23868         (Include): Update.
23869         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
23870         * lib/vasnprintf.c: Update.
23871         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
23872         tests/test-isnanl.h, remove tests/test-isnanl.c.
23873         (Makefile.am): Update.
23874         * tests/test-isnanl-nolibm.c: New file.
23875         * tests/test-isnanl.h: New file.
23876         * tests/test-isnanl.c: Remove file.
23877
23878 2007-03-21  Jim Meyering  <jim@meyering.net>
23879
23880         When trying to open ".", treat ESTALE like EACCES.
23881         * lib/savewd.c (savewd_save): Resort to forking not just upon
23882         failure with EACCES, but also when errno is ESTALE.
23883
23884 2007-03-20  Bruno Haible  <bruno@clisp.org>
23885
23886         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
23887         Needed on AIX 5.1. Reported by Matthew Woehlke.
23888
23889 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
23890
23891         Suggestions by Bruno Haible:
23892         * lib/acl-internal.h: Include "gettext.h" rather than rolling
23893         our own.
23894         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
23895         * modules/acl (Depends-on): Add gettext.
23896
23897 2007-03-19  Bruno Haible  <bruno@clisp.org>
23898
23899         * modules/iconvme: Remove file.
23900         * lib/iconvme.h: Remove file.
23901         * lib/iconvme.c: Remove file.
23902         * m4/iconvme.m4: Remove file.
23903
23904 2007-03-19  Bruno Haible  <bruno@clisp.org>
23905
23906         * doc/relocatable-maint.texi: Break long shell script line.
23907         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
23908
23909 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
23910
23911         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
23912         handle file_has_acl.
23913         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
23914         * lib/acl.c: Move header inclusions and related macro defns into
23915         lib/acl-internal.h.
23916         (S_ISLNK): Remove defn, since that's now done for us.
23917         (file_has_acl): Move to lib/file-has-acl.c.
23918         Call acl_trivial if available.  This is the crucial part of the fix.
23919         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
23920         shared within the library.  Rewrite a bit, partly to make it compatible
23921         with the GNU coding style.
23922         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
23923         Remove unnecessary double-quotes.
23924         Don't test for acl_to_text; the build will catch that.
23925         Replace acl_entries if it doesn't exist and it is needed.
23926         Check for -lsec and acl_trivial (as used on Solaris 10).
23927         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
23928         lib/file-has-acl.c.
23929         (Depends-on): Add sys_stat, for S_ISLNK.
23930
23931 2007-03-19  Ben Pfaff  <blp@gnu.org>
23932
23933         * doc/gnulib.texi: Fix typos.
23934         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
23935
23936 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
23937
23938         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
23939         If size is zero here, buf must be zero.
23940
23941 2007-03-19  Simon Josefsson  <simon@josefsson.org>
23942
23943         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
23944         <bruno@clisp.org>.
23945
23946 2007-03-18  Bruno Haible  <bruno@clisp.org>
23947
23948         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
23949         Suggested by Eric Blake.
23950
23951 2007-03-18  Ben Pfaff  <blp@gnu.org>
23952
23953         * doc/relocatable.texi: Recommend using as prefix a directory
23954         that does not exist and will never be created.  Based on
23955         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
23956         and others.
23957
23958 2007-03-17  Bruno Haible  <bruno@clisp.org>
23959
23960         * lib/fchownat.c: Include lchown.h.
23961
23962 2007-03-17  Bruno Haible  <bruno@clisp.org>
23963
23964         Fix endless loop when the given allocated size was > INT_MAX.
23965         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
23966         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
23967         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
23968         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
23969         * lib/sprintf.c (sprintf): Likewise.
23970
23971 2007-03-17  Bruno Haible  <bruno@clisp.org>
23972
23973         * tests/test-argp-2.sh (func_compare): Output a context diff.
23974
23975 2007-03-17  Bruno Haible  <bruno@clisp.org>
23976
23977         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
23978         locale's decimal-point character.
23979
23980 2007-03-17  Bruno Haible  <bruno@clisp.org>
23981
23982         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
23983         before comparing it. Needed because on some platforms (e.g. x86) a
23984         'long double' occupies less bytes than sizeof (long double).
23985
23986 2007-03-17  Bruno Haible  <bruno@clisp.org>
23987
23988         * tests/test-crc.c (main): Make printf statements 64-bit clean.
23989         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
23990         * tests/test-getaddrinfo.c (simple): Likewise.
23991         * tests/test-read-file.c (main): Likewise.
23992
23993 2007-03-17  Bruno Haible  <bruno@clisp.org>
23994
23995         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
23996
23997 2007-03-17  Bruno Haible  <bruno@clisp.org>
23998
23999         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
24000         unused variable.
24001
24002 2007-03-17  Bruno Haible  <bruno@clisp.org>
24003
24004         * tests/test-c-strcasecmp.c: Include c-strcase.h.
24005         * tests/test-c-strncasecmp.c: Likewise.
24006
24007 2007-03-17  Bruno Haible  <bruno@clisp.org>
24008
24009         * modules/stdlib (Depends-on): Add unistd.
24010         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
24011         Needed for MacOS X 10.3.
24012
24013 2007-03-17  Bruno Haible  <bruno@clisp.org>
24014
24015         * lib/unistr/u-strdup.h: Include <stdlib.h>.
24016
24017 2007-03-17  Bruno Haible  <bruno@clisp.org>
24018
24019         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
24020
24021 2007-03-17  Bruno Haible  <bruno@clisp.org>
24022
24023         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
24024         to reflect files copied from gnulib (with or without modifications).
24025         Suggested by Jim Meyering.
24026
24027 2007-03-17  Eric Blake  <ebb9@byu.net>
24028
24029         * NEWS: Document stdlib change from 2007-02-18.
24030
24031 2007-03-17  Jim Meyering  <jim@meyering.net>
24032
24033         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
24034         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
24035         someone uses a name containing shell meta-characters.
24036         Reported by Alfred M. Szmidt.
24037
24038         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
24039
24040 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
24041
24042         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
24043         and copy gettext configuration files only if configure.ac contains
24044         a use of AM_GNU_GETTEXT_VERSION.
24045
24046 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
24047
24048         * build-aux/bootstrap (gnulib_name): New variable.
24049         (gnulib_tool_options): Use it.
24050
24051 2007-03-13  Simon Josefsson  <simon@josefsson.org>
24052
24053         * tests/test-des.c: Use new namespace.
24054
24055 2007-03-15  Bruno Haible  <bruno@clisp.org>
24056
24057         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
24058         Reported by James Youngman <jay@gnu.org>.
24059
24060 2007-03-15  Bruno Haible  <bruno@clisp.org>
24061
24062         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
24063         declared prototype. Needed with cc on OSF/1 5.1.
24064
24065 2007-03-15  Bruno Haible  <bruno@clisp.org>
24066
24067         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
24068         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
24069         (struct gl_list_implementation): Add dispose_fn argument to the
24070         'create_empty', 'create' methods.
24071         (struct gl_list_impl_base): Add field 'dispose_fn'.
24072         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
24073         argument.
24074         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
24075         dispose_fn argument.
24076         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
24077         dispose_fn on the dropped values.
24078         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
24079         dispose_fn argument.
24080         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
24081         dropped values.
24082         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
24083         (gl_tree_remove_node): Call dispose_fn on the dropped value.
24084         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
24085         (gl_tree_remove_node): Call dispose_fn on the dropped value.
24086         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
24087         argument.
24088         (gl_tree_list_free): Call dispose_fn on the dropped values.
24089         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
24090         the dropped values.
24091         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
24092         Add dispose_fn argument.
24093         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
24094         Call dispose_fn on the dropped values.
24095         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
24096         Add dispose_fn argument.
24097         (gl_sublist_create): Initialize the 'dispose_fn' field.
24098         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
24099         * tests/test-array_list.c (main): Update.
24100         * tests/test-carray_list.c (main): Update.
24101         * tests/test-avltree_list.c (main): Update.
24102         * tests/test-rbtree_list.c (main): Update.
24103         * tests/test-avltreehash_list.c (main): Update.
24104         * tests/test-rbtreehash_list.c (main): Update.
24105         * tests/test-linked_list.c (main): Update.
24106         * tests/test-linkedhash_list.c (main): Update.
24107         * tests/test-array_oset.c (main): Update.
24108
24109 2007-03-15  Bruno Haible  <bruno@clisp.org>
24110
24111         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
24112         (gl_oset_create_empty): Add dispose_fn argument.
24113         (struct gl_oset_implementation): Add dispose_fn argument to
24114         'create_empty' method.
24115         (struct gl_oset_impl_base): Add dispose_fn field.
24116         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
24117         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
24118         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
24119         values.
24120         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
24121         (gl_tree_oset_free): Call dispose_fn on the dropped values.
24122         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
24123         dropped value.
24124         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
24125         dropped value.
24126         * tests/test-array_oset.c (main): Update.
24127         * tests/test-avltree_oset.c (main): Update.
24128         * tests/test-rbtree_oset.c (main): Update.
24129         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
24130
24131 2007-03-13  Bruno Haible  <bruno@clisp.org>
24132
24133         * tests/test-stdbool.c (i): Update after last patch.
24134
24135 2007-03-12  Bruno Haible  <bruno@clisp.org>
24136
24137         * lib/quotearg.c: Include <wctype.h> early, before the definition of
24138         the iswprint macro. Needed on Solaris 2.5.1.
24139
24140 2007-03-12  Bruno Haible  <bruno@clisp.org>
24141
24142         * tests/test-printf-frexp.c (main): Declare x as volatile.
24143
24144 2007-03-12  Simon Josefsson  <simon@josefsson.org>
24145
24146         * doc/gnulib.texi (Build robot for gnulib): New section.
24147
24148 2007-03-12  Jim Meyering  <jim@meyering.net>
24149
24150         * build-aux/bootstrap: New file.
24151         * build-aux/bootstrap.conf: New file, from coreutils.
24152
24153 2007-03-11  Bruno Haible  <bruno@clisp.org>
24154
24155         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
24156
24157 2007-03-12  Simon Josefsson  <simon@josefsson.org>
24158
24159         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
24160         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
24161         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
24162
24163 2007-03-11  Bruno Haible  <bruno@clisp.org>
24164
24165         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
24166         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
24167
24168 2007-03-11  Bruno Haible  <bruno@clisp.org>
24169
24170         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
24171         formula. Needed for SunPRO C 5.0.
24172
24173 2007-03-11  Bruno Haible  <bruno@clisp.org>
24174
24175         * modules/long-options (Depends-on): Add getopt.
24176
24177 2007-03-11  Bruno Haible  <bruno@clisp.org>
24178
24179         * modules/modechange (Depends-on): Add stdbool.
24180
24181 2007-03-11  Bruno Haible  <bruno@clisp.org>
24182
24183         * modules/i-ring (Depends-on): Add stdbool.
24184
24185 2007-03-11  Bruno Haible  <bruno@clisp.org>
24186
24187         * modules/gc-des (Depends-on): Add stdbool.
24188
24189 2007-03-11  Bruno Haible  <bruno@clisp.org>
24190
24191         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
24192
24193 2007-03-11  Bruno Haible  <bruno@clisp.org>
24194
24195         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
24196
24197 2007-03-11  Bruno Haible  <bruno@clisp.org>
24198
24199         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
24200
24201 2007-03-11  Bruno Haible  <bruno@clisp.org>
24202
24203         * lib/vasnprintf.c (sprintf): Undefine.
24204
24205 2007-03-11  Bruno Haible  <bruno@clisp.org>
24206
24207         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
24208         initializers in SunPRO C and Compaq C compilers.
24209
24210 2007-03-11  Bruno Haible  <bruno@clisp.org>
24211
24212         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
24213         decrementing code ANSI C compliant.
24214
24215 2007-03-11  Bruno Haible  <bruno@clisp.org>
24216
24217         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
24218         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
24219
24220 2007-03-11  Bruno Haible  <bruno@clisp.org>
24221
24222         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
24223         <stdbool.h> substitute doesn't pass.
24224
24225 2007-03-11  Bruno Haible  <bruno@clisp.org>
24226
24227         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
24228
24229 2007-03-11  Bruno Haible  <bruno@clisp.org>
24230
24231         * gnulib-tool (func_create_megatestdir): Create also an autobuild
24232         script, for submission to autobuild.josefsson.org.
24233
24234 2007-03-10  Bruno Haible  <bruno@clisp.org>
24235
24236         * modules/canonicalize-lgpl-tests: New file.
24237         * tests/test-canonicalize-lgpl.sh: New file.
24238         * tests/test-canonicalize-lgpl.c: New file.
24239
24240         * modules/c-strcase-tests: New file.
24241         * tests/test-c-strcase.sh: New file.
24242         * tests/test-c-strcasecmp.c: New file.
24243         * tests/test-c-strncasecmp.c: New file.
24244
24245         * modules/atexit-tests: New file.
24246         * tests/test-atexit.sh: New file.
24247         * tests/test-atexit.c: New file.
24248
24249 2007-03-10  Bruno Haible  <bruno@clisp.org>
24250
24251         * tests/test-binary-io.sh: Use temporary filenames that are not so
24252         likely to clash with those of other tests (in a parallel make).
24253         * tests/test-binary-io.c: Likewise.
24254
24255 2007-03-10  Bruno Haible  <bruno@clisp.org>
24256
24257         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
24258         fallback; use #error instead.
24259         Suggested by Simon Josefsson.
24260
24261 2007-03-10  Bruno Haible  <bruno@clisp.org>
24262
24263         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
24264         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
24265         first and the last.
24266
24267 2007-03-10  Bruno Haible  <bruno@clisp.org>
24268
24269         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
24270
24271 2007-03-10  Bruno Haible  <bruno@clisp.org>
24272
24273         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
24274         "make distcheck".
24275         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
24276         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
24277         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
24278
24279 2007-03-10  Bruno Haible  <bruno@clisp.org>
24280
24281         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
24282         variable.
24283         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
24284         variable.
24285
24286 2007-03-09  Eric Blake  <ebb9@byu.net>
24287         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
24288
24289         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
24290         types are not being provided by gnulib.
24291         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
24292         types are supported.
24293
24294 2007-03-10  Bruno Haible  <bruno@clisp.org>
24295
24296         * lib/stdio_.h (__attribute__): New macro.
24297         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
24298         vsprintf): Specify __attribute__ __format__ for GCC.
24299         Suggested by Eric Blake.
24300
24301 2007-03-09  Bruno Haible  <bruno@clisp.org>
24302
24303         * modules/printf-posix-tests: New file.
24304         * tests/test-printf-posix.sh: New file.
24305         * tests/test-printf-posix.c: New file.
24306
24307         * modules/printf-posix: New file.
24308         * lib/printf.c: New file.
24309         * m4/printf-posix-rpl.m4: New file.
24310         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
24311         REPLACE_PRINTF.
24312         * lib/stdio_.h (printf): New declaration.
24313         (format, __format__, ____printf____, ____scanf____, ____strftime____,
24314         ____strfmon____): New macros.
24315         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
24316         REPLACE_PRINTF.
24317
24318 2007-03-09  Bruno Haible  <bruno@clisp.org>
24319
24320         * tests/test-vasnprintf-posix2.sh: New file.
24321         * tests/test-vasnprintf-posix2.c: New file.
24322         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
24323         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
24324         (Makefile.am): Activate test-vasnprintf-posix2.sh.
24325
24326         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
24327         a locale dependent decimal point, rather than always '.'.
24328
24329 2007-03-09  Eric Blake  <ebb9@byu.net>
24330
24331         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
24332         spite of platforms like Tandem/NSK that define it to -1.
24333
24334 2007-03-08  Bruno Haible  <bruno@clisp.org>
24335
24336         * modules/vprintf-posix-tests: New file.
24337         * tests/test-vprintf-posix.sh: New file.
24338         * tests/test-vprintf-posix.c: New file.
24339         * tests/test-printf-posix.h: New file.
24340
24341         * modules/vprintf-posix: New file.
24342         * lib/vprintf.c: New file.
24343         * m4/vprintf-posix.m4: New file.
24344         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
24345         REPLACE_VPRINTF.
24346         * lib/stdio_.h (vprintf): New declaration.
24347         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
24348         REPLACE_VPRINTF.
24349
24350 2007-03-08  Bruno Haible  <bruno@clisp.org>
24351
24352         * modules/fprintf-posix-tests: New file.
24353         * tests/test-fprintf-posix.sh: New file.
24354         * tests/test-fprintf-posix.c: New file.
24355
24356         * modules/fprintf-posix: New file.
24357         * lib/fprintf.c: New file.
24358         * m4/fprintf-posix.m4: New file.
24359         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
24360         REPLACE_FPRINTF.
24361         * lib/stdio_.h (fprintf): New declaration.
24362         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
24363         REPLACE_FPRINTF.
24364
24365 2007-03-08  Bruno Haible  <bruno@clisp.org>
24366
24367         * modules/vfprintf-posix-tests: New file.
24368         * tests/test-vfprintf-posix.sh: New file.
24369         * tests/test-vfprintf-posix.c: New file.
24370         * tests/test-fprintf-posix.h: New file.
24371         * tests/test-fprintf-posix.out: New file.
24372
24373         * modules/vfprintf-posix: New file.
24374         * lib/vfprintf.c: New file.
24375         * m4/vfprintf-posix.m4: New file.
24376         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
24377         REPLACE_VFPRINTF.
24378         * lib/stdio_.h (vfprintf): New declaration.
24379         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
24380         REPLACE_VFPRINTF.
24381
24382 2007-03-08  Bruno Haible  <bruno@clisp.org>
24383
24384         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
24385
24386 2007-03-08  Bruno Haible  <bruno@clisp.org>
24387
24388         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
24389         instead of 'expr' invocations.
24390         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
24391         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
24392         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
24393         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
24394         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
24395         Suggested by Paul Eggert.
24396
24397 2007-03-08  Bruno Haible  <bruno@clisp.org>
24398
24399         * modules/fseterr-tests: New file.
24400         * tests/test-fseterr.c: New file.
24401
24402         * modules/fseterr: New file.
24403         * lib/fseterr.h: New file.
24404         * lib/fseterr.c: New file.
24405
24406 2007-03-08  Bruno Haible  <bruno@clisp.org>
24407
24408         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
24409         * lib/getopt_.h: Likewise.
24410         * lib/mbswidth.h: Likewise.
24411         * lib/setenv.h: Likewise.
24412         * lib/vasnprintf.h: Likewise.
24413         * lib/vasprintf.h: Likewise.
24414         * lib/verror.h: Likewise.
24415         * lib/xsetenv.h: Likewise.
24416         * lib/xvasprintf.h: Likewise.
24417
24418 2007-03-08  Jim Meyering  <jim@meyering.net>
24419
24420         * users.txt: Add parted.
24421
24422         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
24423
24424 2007-03-07  Bruno Haible  <bruno@clisp.org>
24425
24426         * m4/printf.m4: Make the shell script snippets copy&pastable.
24427
24428 2007-03-02  Bruno Haible  <bruno@clisp.org>
24429
24430         * lib/netinet_in_.h: New file.
24431         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
24432         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
24433         * modules/netinet_in (Files): Add lib/netinet_in_.h.
24434         (Depends-on): Add absolute-header.
24435         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
24436         into netinet/in.h.
24437
24438 2007-03-03  Bruno Haible  <bruno@clisp.org>
24439
24440         * lib/sys_select_.h: New file.
24441         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
24442         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
24443         * modules/sys_select (Files): Add lib/sys_select_.h.
24444         (Depends-on): Add absolute-header.
24445         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
24446         into sys/select.h.
24447
24448 2007-03-02  Bruno Haible  <bruno@clisp.org>
24449
24450         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
24451         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
24452         values.
24453         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
24454         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
24455         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
24456         * modules/sys_socket (Depends-on): Add absolute-header.
24457         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
24458         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
24459         (Include): Remove requirement of inclusion of <sys/types.h>.
24460
24461 2007-03-02  Bruno Haible  <bruno@clisp.org>
24462
24463         * lib/byteswap_.h (bswap_32): Fix formula.
24464
24465 2007-03-06  Bruno Haible  <bruno@clisp.org>
24466
24467         * modules/sprintf-posix-tests: New file.
24468         * tests/test-sprintf-posix.c: New file.
24469
24470         * modules/sprintf-posix: New file.
24471         * lib/sprintf.c: New file.
24472         * m4/sprintf-posix.m4: New file.
24473         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
24474         REPLACE_SPRINTF.
24475         * lib/stdio_.h (sprintf): New declaration.
24476         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
24477         REPLACE_SPRINTF.
24478
24479 2007-03-06  Bruno Haible  <bruno@clisp.org>
24480
24481         * modules/vsprintf-posix-tests: New file.
24482         * tests/test-vsprintf-posix.c: New file.
24483         * tests/test-sprintf-posix.h: New file.
24484
24485         * modules/vsprintf-posix: New file.
24486         * lib/vsprintf.c: New file.
24487         * m4/vsprintf-posix.m4: New file.
24488         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
24489         REPLACE_VSPRINTF.
24490         * lib/stdio_.h (vsprintf): New declaration.
24491         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
24492         REPLACE_VSPRINTF.
24493
24494 2007-03-06  Bruno Haible  <bruno@clisp.org>
24495
24496         * modules/vsnprintf (Depend-on): Remove minmax.
24497
24498 2007-03-06  Bruno Haible  <bruno@clisp.org>
24499
24500         * modules/snprintf-posix-tests: New file.
24501         * tests/test-snprintf-posix.c: New file.
24502
24503         * modules/snprintf-posix: New file.
24504         * m4/snprintf-posix.m4: New file.
24505         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
24506         gl_FUNC_SNPRINTF.
24507         (gl_FUNC_SNPRINTF): Invoke it.
24508         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
24509         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
24510         is set.
24511         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
24512
24513 2007-03-06  Bruno Haible  <bruno@clisp.org>
24514
24515         * modules/vsnprintf-posix-tests: New file.
24516         * tests/test-vsnprintf-posix.c: New file.
24517         * tests/test-snprintf-posix.h: New file.
24518
24519         * modules/vsnprintf-posix: New file.
24520         * m4/vsnprintf-posix.m4: New file.
24521         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
24522         gl_FUNC_VSNPRINTF.
24523         (gl_FUNC_VSNPRINTF): Invoke it.
24524         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
24525         * lib/stdio_.h (vsnprintf): Define as a replacement if
24526         REPLACE_VSNPRINTF is set.
24527         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
24528
24529 2007-03-06  Bruno Haible  <bruno@clisp.org>
24530
24531         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
24532         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
24533
24534 2007-03-06  Bruno Haible  <bruno@clisp.org>
24535
24536         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
24537         (asinl): Declare also if HAVE_DECL_ASINL is set.
24538         (atanl): Declare also if HAVE_DECL_ATANL is set.
24539         (ceill): Declare also if HAVE_DECL_CEILL is set.
24540         (cosl): Declare also if HAVE_DECL_COSL is set.
24541         (expl): Declare also if HAVE_DECL_EXPL is set.
24542         (floorl): Declare also if HAVE_DECL_FLOORL is set.
24543         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
24544         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
24545         (logl): Declare also if HAVE_DECL_LOGL is set.
24546         (sinl): Declare also if HAVE_DECL_SINL is set.
24547         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
24548         (tanl): Declare also if HAVE_DECL_TANL is set.
24549         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
24550         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
24551         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
24552         declaration of frexpl, ldexpl.
24553         * modules/printf-frexpl (Depends-on): Add math.
24554         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
24555
24556 2007-03-05  Bruno Haible  <bruno@clisp.org>
24557
24558         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
24559         frexpl and ldexpl are declared.
24560         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
24561
24562 2007-03-05  Bruno Haible  <bruno@clisp.org>
24563
24564         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
24565         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
24566
24567 2007-03-05  Bruno Haible  <bruno@clisp.org>
24568
24569         * lib/stdio_.h: Include <stddef.h>.
24570
24571 2007-03-05  Bruno Haible  <bruno@clisp.org>
24572
24573         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
24574
24575 2007-03-05  Bruno Haible  <bruno@clisp.org>
24576
24577         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
24578         NetBSD 4, from Ralf Wildenhues.
24579
24580 2007-03-04  Bruno Haible  <bruno@clisp.org>
24581
24582         * lib/vasprintf.h: Update #if logic for the case when the functions
24583         exist but are overridden.
24584
24585 2007-03-04  Bruno Haible  <bruno@clisp.org>
24586
24587         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
24588         implementations: glibc-2.4 and MacOS X 10.3.
24589         * tests/test-vasnprintf-posix.c (test_function): Test also the case
24590         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
24591         * tests/test-vasprintf-posix.c (test_function): Likewise.
24592
24593 2007-03-04  Bruno Haible  <bruno@clisp.org>
24594
24595         * modules/vasprintf-posix-tests: New file.
24596         * tests/test-vasprintf-posix.c: New file.
24597
24598         * modules/vasprintf-posix: New file.
24599         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
24600         defined.
24601         * m4/vasprintf-posix.m4: New file.
24602         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
24603         gl_FUNC_VASPRINTF.
24604         (gl_FUNC_VASPRINTF): Invoke it.
24605         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
24606         here.
24607         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
24608
24609 2007-03-04  Bruno Haible  <bruno@clisp.org>
24610
24611         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
24612         REPLACE_GETTIMEOFDAY.
24613         * modules/sys_time (Makefile.am): Likewise.
24614         * m4/sys_time_h.m4: Likewise.
24615         * m4/gettimeofday.m4: Likewise.
24616
24617 2007-03-04  Bruno Haible  <bruno@clisp.org>
24618
24619         * modules/vasnprintf-posix-tests: New file.
24620         * tests/test-vasnprintf-posix.c: New file.
24621
24622         * modules/vasnprintf-posix: New file.
24623         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
24624         printf-frexpl.h.
24625         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
24626         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
24627         REPLACE_VASNPRINTF is defined.
24628         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
24629         gl_FUNC_VASNPRINTF.
24630         (gl_FUNC_VASNPRINTF): Invoke it.
24631         * m4/vasnprintf-posix.m4: New file.
24632         * m4/printf.m4: New file.
24633
24634 2007-03-04  Bruno Haible  <bruno@clisp.org>
24635
24636         Compile progreloc.c only if --enable-relocatable is specified.
24637         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
24638         if --enable-relocatable was specified.
24639         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
24640         lib_SOURCES.
24641
24642 2007-03-04  Jim Meyering  <jim@meyering.net>
24643
24644         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
24645         Use it consistently, rather than enumerating errno constants.
24646
24647 2007-03-04  Bruno Haible  <bruno@clisp.org>
24648
24649         * modules/xvasprintf-tests: New file.
24650         * tests/test-xvasprintf.c: New file.
24651
24652         * modules/vasprintf-tests: New file.
24653         * tests/test-vasprintf.c: New file.
24654
24655         * modules/vasnprintf-tests: New file.
24656         * tests/test-vasnprintf.c: New file.
24657
24658         * modules/vsnprintf-tests: New file.
24659         * tests/test-vsnprintf.c: New file.
24660
24661         * modules/snprintf-tests: New file.
24662         * tests/test-snprintf.c: New file.
24663
24664 2007-03-04  Bruno Haible  <bruno@clisp.org>
24665
24666         Compile relocatable.c only if --enable-relocatable is specified.
24667         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
24668         gl_RELOCATABLE_LIBRARY.
24669         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
24670         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
24671         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
24672         gl_RELOCATABLE_LIBRARY.
24673         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
24674         (Makefile.am): Remove lib_SOURCES.
24675         * modules/relocatable-lib-lgpl (configure.ac): Invoke
24676         gl_RELOCATABLE_LIBRARY.
24677         (Makefile.am): Remove lib_SOURCES.
24678         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
24679         always.
24680         * modules/relocatable-prog-wrapper (configure.ac): Invoke
24681         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
24682
24683 2007-03-04  Bruno Haible  <bruno@clisp.org>
24684
24685         * modules/argmatch-tests: New file.
24686         * tests/test-argmatch.c: New file.
24687
24688         * tests/test-allocsa.c (main): Halve the number of loop runs.
24689
24690         * modules/alloca-opt-tests: New file.
24691         * tests/test-alloca-opt.c: New file.
24692
24693 2007-03-04  Jim Meyering  <jim@meyering.net>
24694
24695         Work around difference between Linux ACLs and Solaris 10 ZFS.
24696         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
24697         for EINVAL.
24698
24699 2007-03-03  Bruno Haible  <bruno@clisp.org>
24700
24701         * modules/relocatable-prog (Depends-on): Add back progreloc's
24702         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
24703
24704 2007-03-03  Bruno Haible  <bruno@clisp.org>
24705
24706         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
24707         * modules/relocatable-lib: New file.
24708
24709 2007-03-03  Bruno Haible  <bruno@clisp.org>
24710
24711         * modules/relocatable-prog: Renamed from modules/relocatable.
24712         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
24713
24714 2007-03-03  Bruno Haible  <bruno@clisp.org>
24715
24716         * modules/relocatable-script (Files): Add doc/relocatable.texi,
24717         m4/relocatable-lib.m4.
24718         (Depends-on): Remove 'relocatable'.
24719         (configure.ac): Add gl_RELOCATABLE_NOP.
24720
24721 2007-03-03  Bruno Haible  <bruno@clisp.org>
24722
24723         * modules/relocatable-prog-wrapper: New file.
24724         * modules/relocatable (Depends-on): Add it. Remove all other
24725         dependencies except progname.
24726         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
24727
24728         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
24729         (gl_FUNC_STRERROR): Nop.
24730         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
24731
24732         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
24733         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
24734
24735         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
24736         (gl_FUNC_READLINK): Update.
24737
24738         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
24739
24740 2007-03-03  Bruno Haible  <bruno@clisp.org>
24741
24742         * lib/xreadlink.c: Include <unistd.h> unconditionally.
24743         * modules/xreadlink (Depends-on): Add unistd.
24744         * modules/xreadlink-with-size (Depends-on): Likewise.
24745
24746 2007-03-03  Bruno Haible  <bruno@clisp.org>
24747
24748         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
24749         extracted from gt_FUNC_SETENV.
24750         (gt_FUNC_SETENV): Remove macro.
24751         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
24752         remove gt_FUNC_SETENV.
24753
24754 2007-03-03  Bruno Haible  <bruno@clisp.org>
24755
24756         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
24757         ENABLE_RELOCATABLE here.
24758         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
24759
24760 2007-03-03  Bruno Haible  <bruno@clisp.org>
24761
24762         * modules/rbtreehash-list-tests (Depends-on): Add progname.
24763         * tests/test-rbtreehash_list.c: Include progname.h.
24764         (main): Call set_program_name.
24765
24766         * modules/rbtree-oset-tests (Depends-on): Add progname.
24767         * tests/test-rbtree_oset.c: Include progname.h.
24768         (main): Call set_program_name.
24769
24770         * modules/rbtree-list-tests (Depends-on): Add progname.
24771         * tests/test-rbtree_list.c: Include progname.h.
24772         (main): Call set_program_name.
24773
24774         * modules/linked-list-tests (Depends-on): Add progname.
24775         * tests/test-linked_list.c: Include progname.h.
24776         (main): Call set_program_name.
24777
24778 2007-03-03  Bruno Haible  <bruno@clisp.org>
24779
24780         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
24781         All uses of __restrict changed to _Restrict_.
24782         * lib/glob_.h (__restrict): Remove macro.
24783
24784 2007-03-02  Bruno Haible  <bruno@clisp.org>
24785
24786         * modules/gettext (configure.ac): Require gettext infrastructure
24787         from version 0.16.1.
24788
24789 2007-03-02  Bruno Haible  <bruno@clisp.org>
24790
24791         * modules/linkedhash-list-tests (Depends-on): Add progname.
24792         * tests/test-linkedhash_list.c: Include progname.h.
24793         (main): Call set_program_name.
24794
24795         * modules/carray-list-tests (Depends-on): Add progname.
24796         * tests/test-carray_list.c: Include progname.h.
24797         (main): Call set_program_name.
24798
24799         * modules/avltreehash-list-tests (Depends-on): Add progname.
24800         * tests/test-avltreehash_list.c: Include progname.h.
24801         (main): Call set_program_name.
24802
24803         * modules/avltree-oset-tests (Depends-on): Add progname.
24804         * tests/test-avltree_oset.c: Include progname.h.
24805         (main): Call set_program_name.
24806
24807         * modules/avltree-list-tests (Depends-on): Add progname.
24808         * tests/test-avltree_list.c: Include progname.h.
24809         (main): Call set_program_name.
24810
24811         * modules/array-oset-tests (Depends-on): Add progname.
24812         * tests/test-array_oset.c: Include progname.h.
24813         (main): Call set_program_name.
24814
24815         * modules/array-list-tests (Depends-on): Add progname.
24816         * tests/test-array_list.c: Include progname.h.
24817         (main): Call set_program_name.
24818
24819         * modules/argp-tests (Depends-on): Add progname.
24820         * tests/test-argp.c: Include argp.h first. Include progname.h.
24821         (main): Call set_program_name.
24822
24823 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
24824
24825         * doc/gnulib-tool.texi (Initial import): Reword description of
24826         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
24827         limited effect even if defined after the first system include.
24828
24829 2007-03-01  Bruno Haible  <bruno@clisp.org>
24830
24831         * build-aux/config.libpath: Update to libtool-1.5.22.
24832         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
24833
24834 2007-03-01  Bruno Haible  <bruno@clisp.org>
24835
24836         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
24837         foo_CFLAGS.
24838         Reported by Ralf Wildenhues.
24839
24840 2007-03-01  Bruno Haible  <bruno@clisp.org>
24841
24842         * build-aux/install-reloc: Remove object files left over by some
24843         compilers.
24844         Reported by Ralf Wildenhues.
24845
24846 2007-03-01  Bruno Haible  <bruno@clisp.org>
24847
24848         * build-aux/install-reloc: Break long lines.
24849
24850 2007-03-01  Bruno Haible  <bruno@clisp.org>
24851
24852         * doc/relocatable.texi: Document that it may not work on OpenBSD.
24853         Reported by Ralf Wildenhues.
24854
24855 2007-03-01  Bruno Haible  <bruno@clisp.org>
24856
24857         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
24858         include ordering constraints.
24859
24860 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
24861
24862         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
24863         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
24864         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
24865         as another example.
24866         * lib/time_.h: Fix misspelling.
24867         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
24868         Require gl_HEADER_TIME_H_DEFAULTS.
24869         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
24870         * m4/time_r.m4 (gl_TIME_R): Likewise.
24871         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
24872
24873 2007-03-01  Bruno Haible  <bruno@clisp.org>
24874
24875         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
24876         * m4/utimens.m4 (gl_UTIMENS): Likewise.
24877
24878 2007-03-01  Jim Meyering  <jim@meyering.net>
24879
24880         * modules/xreadlink (Maintainer): Add my name.
24881         * modules/xreadlink-with-size (Depends-on): Alphabetize.
24882
24883 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
24884             Bruno Haible  <bruno@clisp.org>
24885
24886         * build-aux/install-reloc: Compile also c-ctype.c.
24887         * build-aux/relocatable.sh.in: New file.
24888         * doc/relocatable.texi: New file.
24889         * doc/relocatable-maint.texi: New file.
24890         * doc/gnulib.texi: Include relocatable-maint.texi.
24891         * lib/progreloc.c: Include unistd.h unconditionally.
24892         * lib/relocwrapper.c: Include unistd.h unconditionally.
24893         Include c-ctype.h.
24894         (add_dotbin): Use c_tolower.
24895         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
24896         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
24897         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
24898         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
24899         to m4/relocatable-lib.m4.
24900         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
24901         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
24902         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
24903         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
24904         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
24905         * modules/relocatable: New file.
24906         * modules/relocatable-lib: New file.
24907         * modules/relocatable-script: New file.
24908
24909 2007-02-28  Bruno Haible  <bruno@clisp.org>
24910
24911         Import --enable-relocatable infrastructure.
24912         * build-aux/config.libpath: New file, from GNU gettext.
24913         * build-aux/install-reloc: New file, from GNU gettext.
24914         * build-aux/reloc-ldflags: New file, from GNU gettext.
24915         * lib/relocatable.h: New file, from GNU gettext.
24916         * lib/relocatable.c: New file, from GNU gettext.
24917         * lib/relocwrapper.c: New file, from GNU gettext.
24918         * m4/relocatable.m4: New file, from GNU gettext.
24919
24920 2007-02-28  Bruno Haible  <bruno@clisp.org>
24921
24922         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
24923
24924         * modules/xreadlink: New file, from GNU gettext with modifications.
24925         * lib/xreadlink.c: New file, from GNU gettext.
24926         * lib/xreadlink.h: Add comments.
24927         (xreadlink): New declaration.
24928
24929         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
24930         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
24931         lib/xreadlink-with-size.c.
24932         (configure.ac): Remove gl_XREADLINK invocation.
24933         (Makefile.am): Augment lib_SOURCES.
24934         * m4/xreadlink.m4: Remove file.
24935         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
24936         (xreadlink_with_size): Renamed from xreadink.
24937         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
24938         * modules/canonicalize (Depends-on): Replace xreadlink with
24939         xreadlink-with-size.
24940         * lib/canonicalize.c (canonicalize_filename_mode): Update.
24941
24942 2007-02-25  Jim Meyering  <jim@meyering.net>
24943
24944         * build-aux/announce-gen: When complaining about excess arguments,
24945         list them.
24946
24947 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
24948
24949         * README: Document signed integer overflow situation more
24950         accurately.
24951
24952 2007-02-25  Bruno Haible  <bruno@clisp.org>
24953
24954         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
24955         'a' or 'A' conversion.
24956
24957 2007-02-25  Bruno Haible  <bruno@clisp.org>
24958
24959         * modules/filename: Renamed from modules/pathname.
24960         (Files): Replace lib/pathname.h with lib/filename.h. Replace
24961         lib/concatpath.c with lib/concat-filename.c.
24962         (Makefile.am): Update.
24963         (Include): Replace pathname.h with filename.h.
24964         * lib/filename.h: Renamed from lib/pathname.h.
24965         (concatenated_filename): Renamed from concatenated_pathname.
24966         * lib/concat-filename.c: Renamed from lib/concatpath.c.
24967         (concatenated_filename): Renamed from concatenated_pathname.
24968         * lib/findprog.c: Include filename.h instead of pathname.h.
24969         (find_in_path): Update.
24970         * lib/javacomp.c: Include filename.h instead of pathname.h.
24971         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
24972         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
24973         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
24974         is_oldgcj_14_13_usable, is_javac_usable): Update.
24975         * lib/javaexec.c: Include filename.h instead of pathname.h.
24976         (execute_java_class): Update.
24977         * modules/findprog: Update.
24978         * modules/javacomp: Update.
24979         * modules/javaexec: Update.
24980         * MODULES.html.sh (File system functions): Add 'filename', remove
24981         'pathname'.
24982
24983 2007-02-25  Bruno Haible  <bruno@clisp.org>
24984
24985         * modules/printf-frexpl-tests: New file.
24986         * tests/test-printf-frexpl.c: New file.
24987
24988         * modules/printf-frexpl: New file.
24989         * lib/printf-frexpl.h: New file.
24990         * lib/printf-frexpl.c: New file.
24991         * m4/printf-frexpl.m4: New file.
24992
24993 2007-02-25  Bruno Haible  <bruno@clisp.org>
24994
24995         * modules/printf-frexp-tests: New file.
24996         * tests/test-printf-frexp.c: New file.
24997
24998         * modules/printf-frexp: New file.
24999         * lib/printf-frexp.h: New file.
25000         * lib/printf-frexp.c: New file.
25001         * m4/printf-frexp.m4: New file.
25002
25003 2007-02-25  Bruno Haible  <bruno@clisp.org>
25004
25005         Assume automake >= 1.10 for the tests.
25006         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
25007         * modules/arctwo-tests: Likewise.
25008         * modules/argp-tests: Likewise.
25009         * modules/avltree-list-tests: Likewise.
25010         * modules/avltree-oset-tests: Likewise.
25011         * modules/avltreehash-list-tests: Likewise.
25012         * modules/carray-list-tests: Likewise.
25013         * modules/crc-tests: Likewise.
25014         * modules/des-tests: Likewise.
25015         * modules/gc-arcfour-tests: Likewise.
25016         * modules/gc-arctwo-tests: Likewise.
25017         * modules/gc-des-tests: Likewise.
25018         * modules/gc-hmac-md5-tests: Likewise.
25019         * modules/gc-hmac-sha1-tests: Likewise.
25020         * modules/gc-md2-tests: Likewise.
25021         * modules/gc-md4-tests: Likewise.
25022         * modules/gc-md5-tests: Likewise.
25023         * modules/gc-pbkdf2-sha1-tests: Likewise.
25024         * modules/gc-rijndael-tests: Likewise.
25025         * modules/gc-sha1-tests: Likewise.
25026         * modules/gc-tests: Likewise.
25027         * modules/getaddrinfo-tests: Likewise.
25028         * modules/hmac-md5-tests: Likewise.
25029         * modules/hmac-sha1-tests: Likewise.
25030         * modules/linked-list-tests: Likewise.
25031         * modules/linkedhash-list-tests: Likewise.
25032         * modules/lock-tests: Likewise.
25033         * modules/md2-tests: Likewise.
25034         * modules/md4-tests: Likewise.
25035         * modules/md5-tests: Likewise.
25036         * modules/rbtree-list-tests: Likewise.
25037         * modules/rbtree-oset-tests: Likewise.
25038         * modules/rbtreehash-list-tests: Likewise.
25039         * modules/read-file-tests: Likewise.
25040         * modules/rijndael-tests: Likewise.
25041         * modules/stdint-tests: Likewise.
25042         * modules/tls-tests: Likewise.
25043
25044 2007-02-24  Bruno Haible  <bruno@clisp.org>
25045
25046         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
25047         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
25048         function; instead check whether isnan with a double argument links.
25049         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
25050         function; instead check whether isnan with a 'long double' argument
25051         links.
25052         Reported by Eric Blake <ebb9@byu.net>.
25053
25054 2007-02-24  Bruno Haible  <bruno@clisp.org>
25055
25056         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
25057         defined.
25058         * lib/isnanl.c: Remove all code. Just include isnan.c.
25059         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
25060
25061 2007-02-25  Jim Meyering  <jim@meyering.net>
25062
25063         Avoid conflicting types for 'unsetenv' on FreeBSD.
25064         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
25065         conflicting with FreeBSD's (5.0 and 6.1) function declaration
25066         in stdlib.h.
25067
25068 2007-02-24  Bruno Haible  <bruno@clisp.org>
25069
25070         * modules/isnanl-nolibm-tests: New file.
25071         * tests/test-isnanl.c: New file.
25072
25073         * modules/isnanl-nolibm: New file.
25074         * lib/isnanl.h: New file.
25075         * lib/isnanl.c: New file.
25076         * m4/isnanl.m4: New file.
25077
25078 2007-02-24  Bruno Haible  <bruno@clisp.org>
25079
25080         * modules/isnan-nolibm-tests: New file.
25081         * tests/test-isnan.c: New file.
25082
25083         * modules/isnan-nolibm: New file.
25084         * lib/isnan.h: New file.
25085         * lib/isnan.c: New file.
25086         * m4/isnan.m4: New file.
25087
25088 2007-02-24  Bruno Haible  <bruno@clisp.org>
25089
25090         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
25091         assume that an exponent fits in 20 bits.
25092
25093 2007-02-24  Jim Meyering  <jim@meyering.net>
25094
25095         * m4/regex.m4: Update the description of the configure-time option,
25096         --without-included-regex, to state accurately what the defaults are,
25097         and perhaps to give people an idea why using this option is risky.
25098
25099 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
25100
25101         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
25102         loops on small arguments.  This attempts to avoid the problem
25103         Bruno Haible reported for AIX 4.3.2 in
25104         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
25105
25106 2007-02-23  Bruno Haible  <bruno@clisp.org>
25107
25108         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
25109         Needed for help2man.
25110
25111 2007-02-23  Karl Berry  <karl@gnu.org>
25112
25113         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
25114         exists, foo.h should be cvs-ignored, not committed.
25115
25116 2007-02-23  Eric Blake  <ebb9@byu.net>
25117
25118         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
25119         * lib/stat-time.h (includes): Likewise.
25120         * lib/utimecmp.c (includes): Likewise.
25121         * lib/utimens.h (includes): Likewise.
25122         * lib/getdate.y (includes): Also include "timespec.h" for use
25123         internal to the module.
25124         * modules/utimens (Depends-on): Revert yesterday's patch.
25125         * modules/nanosleep (Depends-on): Add missing dependency.
25126
25127 2007-02-22  Bruno Haible  <bruno@clisp.org>
25128
25129         * lib/glob.c: Don't include getlogin_r.h.
25130
25131 2007-02-22  Jim Meyering  <jim@meyering.net>
25132
25133         * modules/utimens (Depends-on): Add timespec, required for
25134         utimens.h's inclusion of timespec.h.
25135
25136 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
25137
25138         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
25139         long unreadable paths in GNU/Linux.  Problem reported by Andreas
25140         Schwab in
25141         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
25142         I'll try to think of a better way to fix the Solaris problem.
25143
25144         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
25145         like glibc; on Solaris 10, it fails with errno == EINVAL.
25146         POSIX says the behavior is unspecified if the first argument is NULL,
25147         so play it safe and never pass NULL to the system getcwd.
25148
25149 2007-02-21  Jim Meyering  <jim@meyering.net>
25150
25151         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
25152         of gettimeofday.  It would conflict with the one now always
25153         provided via sys_time_.h.  Reported by Matthew Woehlke, as
25154         an IRIX 6.5 build failure.
25155
25156 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
25157
25158         Minor fixups to port to Solaris 10 with Sun C 5.8.
25159         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
25160         * modules/getcwd (Depends-on): Add dirfd.
25161         * lib/putenv.c (putenv): #undef it.
25162         (rpl_putenv): New decl.
25163         (malloc, free): Include <stdlib.h> rather than prototyping separately.
25164
25165 2007-02-20  Bruno Haible  <bruno@clisp.org>
25166
25167         * modules/stdio-tests: New file.
25168         * tests/test-stdio.c: New file.
25169
25170         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
25171         (Depends-on): Add stdio.
25172         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
25173         (Include): Use <stdio.h> instead of vsnprintf.h.
25174         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
25175         HAVE_DECL_VSNPRINTF.
25176         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
25177
25178         * modules/snprintf (Files): Remove lib/snprintf.h.
25179         (Depends-on): Add stdio.
25180         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
25181         (Include): Use <stdio.h> instead of snprintf.h.
25182         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
25183         HAVE_DECL_SNPRINTF.
25184         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
25185         * lib/getaddrinfo.c: Likewise.
25186
25187         * modules/stdio: New file.
25188         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
25189         * lib/snprintf.h: Remove file.
25190         * lib/vsnprintf.h: Remove file.
25191         * lib/.cppi-disable: Remove snprintf.h.
25192         * m4/stdio_h.m4: New file.
25193         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
25194
25195 2007-02-20  Jim Meyering  <jim@meyering.net>
25196
25197         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
25198         used by e.g., mingw.  From Bruno Haible.
25199
25200 2007-02-19  Bruno Haible  <bruno@clisp.org>
25201
25202         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
25203         warnings.
25204         Reported by Ben Pfaff <blp@cs.stanford.edu>.
25205
25206 2007-02-19  Bruno Haible  <bruno@clisp.org>
25207
25208         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
25209         from mingw users.
25210
25211 2007-02-19  Bruno Haible  <bruno@clisp.org>
25212
25213         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
25214         warnings.
25215         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
25216
25217 2007-02-19  Jim Meyering  <jim@meyering.net>
25218
25219         Don't use FD after a successful "fdopendir (fd)".
25220         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
25221         Reset it by calling dirfd on the just-obtained DIR*.
25222
25223         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
25224         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
25225
25226 2007-02-18  Bruno Haible  <bruno@clisp.org>
25227
25228         * lib/readlink.c: Include <unistd.h>.
25229         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
25230         HAVE_READLINK.
25231         * modules/readlink (Depends-on): Add unistd.
25232         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25233         (Include): Add <unistd.h>.
25234
25235         * lib/getlogin_r.h: Remove file.
25236         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
25237         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
25238         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
25239         HAVE_DECL_GETLOGIN_R.
25240         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
25241         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25242         (Include): Use <unistd.h> instead of getlogin_r.h.
25243
25244         * lib/getcwd.h: Remove file.
25245         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
25246         * lib/xgetcwd.c: Likewise.
25247         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
25248         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
25249         * modules/getcwd (Files): Remove lib/getcwd.h.
25250         (Depends-on): Add unistd.
25251         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25252         (Include): Use <unistd.h> instad of getcwd.h.
25253
25254         * lib/ftruncate.c: Include <unistd.h> first.
25255         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
25256         Set HAVE_FTRUNCATE.
25257         * modules/ftruncate (Depends-on): Add unistd.
25258         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25259
25260         * lib/fchdir.c: Include <unistd.h> first.
25261         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
25262         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
25263         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
25264         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25265         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
25266
25267         * lib/dup2.c: Include <unistd.h> first.
25268         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
25269         HAVE_DUP2.
25270         * modules/dup2 (Depends-on): Add unistd.
25271         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25272
25273         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
25274         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
25275         REPLACE_CHOWN. Don't define chown as a macro here.
25276         * modules/chown (Depends-on): Add unistd.
25277         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25278
25279         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
25280         Add definition for GL_LINK_WARNING.
25281         (chown, dup2): New declarations.
25282         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
25283         link warning.
25284         (ftruncate): New declaration.
25285         (getcwd): New declaration, taken from old getcwd.h.
25286         (getlogin_r): New declaration, taken from old getlogin_r.h.
25287         (readlink): New declaration.
25288         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
25289         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
25290         (gl_PREREQ_UNISTD): Remove macro.
25291         (gl_UNISTD_MODULE_INDICATOR): New macro.
25292         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
25293         many new variables. Don't set UNISTD_H.
25294         * modules/unistd (Description): Change.
25295         (Depends-on): Add link-warning.
25296         (configure.ac): Update.
25297         (Makefile.am): Create unistd.h always. Substitute many new variables
25298         into it.
25299
25300 2007-02-18  Bruno Haible  <bruno@clisp.org>
25301
25302         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
25303         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
25304         HAVE_GETSUBOPT.
25305         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
25306         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
25307         * lib/getsubopt.h: Remove file.
25308         * modules/getsubopt (Files): Remove lib/getsubopt.h.
25309         (Depends-on): Add stdlib.
25310         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25311         (Includes): Use <stdlib.h> instead of getsubopt.h.
25312         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
25313         Set HAVE_GETSUBOPT.
25314         * lib/getsubopt.c: Don't include getsubopt.h.
25315
25316 2007-02-18  Bruno Haible  <bruno@clisp.org>
25317
25318         * modules/fchdir (Depends-on): Add dup2.
25319
25320 2007-02-18  Bruno Haible  <bruno@clisp.org>
25321
25322         * lib/stdlib_.h: Handle glibc's special invocation convention
25323         specially.
25324
25325 2007-02-18  Bruno Haible  <bruno@clisp.org>
25326
25327         * modules/stdlib-tests: New file.
25328         * tests/test-stdlib.c: New file.
25329
25330         * modules/mkstemp (Files): Remove lib/mkstemp.h.
25331         (Depends-on): Add stdlib.
25332         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25333         (Includes): Use <stdlib.h> instead of mkstemp.h.
25334         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
25335         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
25336         * lib/mkstemp.c: Don't include mkstemp.h.
25337         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
25338         * lib/stdlib--.h: Don't include mkstemp.h.
25339
25340         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
25341         (Depends-on): Add stdlib.
25342         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
25343         (Includes): Use <stdlib.h> instead of mkdtemp.h.
25344         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
25345         HAVE_MKDTEMP.
25346         * lib/mkdtemp.c: Don't include mkdtemp.h.
25347         * lib/clean-temp.c: Don't include mkdtemp.h.
25348
25349         * modules/exit (Files): Remove lib/exit.h.
25350         (Depends-on): Add stdlib.
25351         (Makefile.am): Remove lib_SOURCES.
25352         (Include): Use <stdlib.h> instead of exit.h.
25353         * lib/argmatch.c: Don't include exit.h.
25354         * lib/execute.c: Likewise.
25355         * lib/pagealign_alloc.c: Likewise.
25356         * lib/pipe.c: Likewise.
25357         * lib/wait-process.c: Likewise.
25358         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
25359         * lib/exitfail.c: Likewise.
25360         * lib/savewd.c: Likewise.
25361         * lib/xsetenv.c: Likewise.
25362
25363         * modules/stdlib: New file.
25364         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
25365         and extra comments about mkstemp().
25366         * lib/exit.h: Remove file.
25367         * lib/mkdtemp.h: Remove file.
25368         * lib/mkstemp.h: Remove file.
25369         * m4/stdlib_h.m4: New file.
25370         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
25371
25372 2007-02-18  Bruno Haible  <bruno@clisp.org>
25373
25374         * modules/math-tests: New file.
25375         * tests/test-math.c: New file.
25376
25377         * modules/math: New file.
25378         * modules/mathl (Files): Remove lib/mathl.h.
25379         (Depends-on): Add math.
25380         (Makefile.am): Don't mention mathl.h.
25381         (Include): Use <math.h> instead of mathl.h.
25382         * lib/math_.h: New file.
25383         * lib/mathl.h: Remove file.
25384         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
25385         mathl.h.
25386         * lib/asinl.c: Likewise.
25387         * lib/atanl.c: Likewise.
25388         * lib/ceill.c: Likewise.
25389         * lib/cosl.c: Likewise.
25390         * lib/expl.c: Likewise.
25391         * lib/floorl.c: Likewise.
25392         * lib/frexpl.c: Likewise.
25393         * lib/ldexpl.c: Likewise.
25394         * lib/logl.c: Likewise.
25395         * lib/sincosl.c: Likewise.
25396         * lib/sinl.c: Likewise.
25397         * lib/sqrtl.c: Likewise.
25398         * lib/tanl.c: Likewise.
25399         * lib/trigl.c: Likewise.
25400         * m4/math_h.m4: New file.
25401         * MODULES.html.sh (Mathematics): Add math.
25402
25403 2007-02-17  Bruno Haible  <bruno@clisp.org>
25404
25405         * modules/wctype-tests: New file.
25406         * tests/test-wctype.c: New file.
25407
25408         * modules/wchar-tests: New file.
25409         * tests/test-wchar.c: New file.
25410
25411         * modules/unistd-tests: New file.
25412         * tests/test-unistd.c: New file.
25413
25414         * modules/time-tests: New file.
25415         * tests/test-time.c: New file.
25416
25417         * modules/sysexits-tests: New file.
25418         * tests/test-sysexits.c: New file.
25419
25420         * modules/sys_time-tests: New file.
25421         * tests/test-sys_time.c: New file.
25422
25423         * modules/sys_stat-tests: New file.
25424         * tests/test-sys_stat.c: New file.
25425
25426         * modules/sys_socket-tests: New file.
25427         * tests/test-sys_socket.c: New file.
25428
25429         * modules/sys_select-tests: New file.
25430         * tests/test-sys_select.c: New file.
25431
25432         * modules/string-tests: New file.
25433         * tests/test-string.c: New file.
25434
25435         * modules/stdbool-tests: New file.
25436         * tests/test-stdbool.c: New file.
25437
25438         * modules/netinet_in-tests: New file.
25439         * tests/test-netinet_in.c: New file.
25440
25441         * modules/inttypes-tests: New file.
25442         * tests/test-inttypes.c: New file.
25443
25444         * modules/fcntl-tests: New file.
25445         * tests/test-fcntl.c: New file.
25446
25447         * modules/byteswap-tests: New file.
25448         * tests/test-byteswap.c: New file.
25449
25450         * modules/arpa_inet-tests: New file.
25451         * tests/test-arpa_inet.c: New file.
25452
25453 2007-02-17  Bruno Haible  <bruno@clisp.org>
25454
25455         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
25456         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
25457         if the corresponding module is not enabled. Emit link warnings if
25458         the function is used nevertheless.
25459         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
25460         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
25461         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
25462         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
25463         * modules/inttypes (Depends-on): Add link-warning.
25464         (Makefile.am): Copy the contents of build-aux/link-warning.h into
25465         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
25466         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
25467         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
25468         * modules/imaxdiv (configure.ac): Likewise.
25469         * modules/strtoimax (configure.ac): Likewise.
25470         * modules/strtoumax (configure.ac): Likewise.
25471
25472 2007-02-17  Bruno Haible  <bruno@clisp.org>
25473
25474         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
25475         gl_STRING_MODULE_INDICATOR_DEFAULTS.
25476         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
25477         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
25478
25479 2007-02-17  Bruno Haible  <bruno@clisp.org>
25480
25481         * modules/link-warning: New file.
25482         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
25483         * lib/string_.h (GL_LINK_WARNING): Remove definition.
25484         * modules/string (Depends-on): Add link-warning.
25485         (Makefile.am): Copy the contents of build-aux/link-warning.h into
25486         string.h.
25487         * MODULES.html.sh (Support for building libraries and executables): Add
25488         link-warning.
25489
25490 2007-02-17  Bruno Haible  <bruno@clisp.org>
25491
25492         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
25493         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
25494         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
25495         long lines.
25496
25497 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
25498             Bruno Haible  <bruno@clisp.org>
25499
25500         * modules/tmpfile: New file.
25501         * lib/tmpfile.c: New file.
25502         * m4/tmpfile.m4: New file.
25503         * MODULES.html.sh (func_all_modules): New section "Input/output".
25504
25505 2007-02-15  Bruno Haible  <bruno@clisp.org>
25506
25507         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
25508         (supports_delete_on_close): New function.
25509         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
25510
25511 2007-02-14  Bruno Haible  <bruno@clisp.org>
25512
25513         * modules/mbspcasecmp-tests: New file.
25514         * tests/test-mbspcasecmp.sh: New file.
25515         * tests/test-mbspcasecmp.c: New file.
25516
25517         New module mbspcasecmp.
25518         * modules/mbspcasecmp: New file.
25519         * lib/mbspcasecmp.c: New file.
25520         * lib/string_.h (strncasecmp): Change warning message.
25521         (mbspcasecmp): New declaration.
25522         * m4/mbspcasecmp.m4: New file.
25523         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25524         GNULIB_MBSPCASECMP.
25525         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
25526         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
25527
25528 2007-02-14  Bruno Haible  <bruno@clisp.org>
25529
25530         * modules/mbsncasecmp-tests: New file.
25531         * tests/test-mbsncasecmp.sh: New file.
25532         * tests/test-mbsncasecmp.c: New file.
25533
25534         New module mbsncasecmp.
25535         * modules/mbsncasecmp: New file.
25536         * lib/mbsncasecmp.c: New file.
25537         * lib/string_.h (mbsncasecmp): New declaration.
25538         * m4/mbsncasecmp.m4: New file.
25539         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25540         GNULIB_MBSNCASECMP.
25541         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
25542         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
25543
25544 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
25545
25546         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
25547         Verify that it doesn't overlap with our flags.
25548         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
25549         do not have the desired effect in multibyte locales; instead, use
25550         mbscasecmp.
25551         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
25552         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
25553         we don't require GNU fnmatch ourselves (if our users require it, they
25554         should do so explicitly).
25555
25556         Fix regex code so it doesn't rely on strcasecmp.
25557         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
25558         Otherwise, include gnulib's langinfo.h.
25559         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
25560         undesirable behavior in non-C locales.  Instead, rely on localecharset.
25561         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
25562         * modules/regex (FILES): Remove m4/codeset.m4.
25563         (Depends-on): Add localcharset.  Remove strcase.
25564
25565 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25566
25567         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
25568         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
25569
25570 2007-02-13  Bruno Haible  <bruno@clisp.org>
25571
25572         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
25573         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25574
25575 2007-02-12  Bruno Haible  <bruno@clisp.org>
25576
25577         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
25578         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
25579         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
25580         time warning rather than a link error.
25581
25582 2007-02-12  Bruno Haible  <bruno@clisp.org>
25583
25584         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
25585         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
25586         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25587
25588 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
25589
25590         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
25591         args, not 2.
25592
25593 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
25594
25595         New module 'time', so that apps can include <time.h> as per
25596         POSIX and GNU instead of separate include files like time_r.h
25597         and timegm.h.  This implementation tries out a simpler approach
25598         for replacing decls in standard include files (as compared to
25599         the string module), somewhat as an experiment.
25600
25601         * config/srclist.txt: Comment out mktime.c for now.
25602         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
25603         since it doesn't apply any more.  Use generic wording instead.
25604         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
25605         'time'.
25606         * lib/time_.h, m4/time_h.m4, modules/time: New files.
25607         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
25608         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
25609         Don't include <sys/types.h>; no longer needed since we assume C89.
25610         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
25611         * lib/strftime.c: Likewise.
25612         * lib/time_r.c: Likewise.
25613         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
25614         * lib/nanosleep.c: Include <time.h> first, to check interface.
25615         * lib/strptime.c: Likewise.
25616         * lib/time_r.c: Likewise.
25617         * lib/timegm.c: Likewise.
25618         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
25619         needed.
25620         * lib/timegm.c: Don't include timegm.h; no longer needed.
25621         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
25622         time.h now handles any problems in that area.
25623         (struct timespec, nanosleep): Remove; time.h now arranges for these.
25624         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
25625         that time.h defines struct timespec.
25626         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
25627         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
25628         handles that.
25629         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
25630         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
25631         needed.  Set REPLACE_LOCALTIME.
25632         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
25633         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
25634         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
25635         nanosleep; time_h.m4 now does that.  Don't require
25636         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
25637         module handles this now.
25638         * modules/getdate (Depends-on): Remove timespec.  Add time.
25639         * modules/nanosleep (Depends-on): Likewise.
25640         * modules/stat-time (Depends-on): Likewise.
25641         * modules/nanosleep (Include): Include time.h, not timespec.h.
25642         * modules/strptime (Files): Remove lib/strptime.h.
25643         (Depends-on): Add extensions, time.
25644         (Include): Include time.h, not strptime.h.
25645         * modules/time_r (Files): Remove lib/time_r.h.
25646         (Depends-on): Add time.
25647         (Include): Include time.h, not time_r.h.
25648         * modules/timegm: Likewise.
25649         * modules/timespec (Description): Now does timespec-related decls
25650         of our own, instead of struct timespec itself.
25651         (Depends-on): Add time; remove extensions.
25652         (Maintainer): Add self.
25653         * modules/utimecmp (Depends-on): Add time; remove timespec.
25654         * modules/utimens (Depends-on): Likewise.
25655         * modules/xnanosleep (Depends-on): Likewise.
25656
25657 2007-02-11  Bruno Haible  <bruno@clisp.org>
25658
25659         * lib/c-strstr.c: Include allocsa.h.
25660         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25661         * lib/c-strcasestr.c: Include allocsa.h.
25662         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25663         * lib/strcasestr.c: Include allocsa.h.
25664         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
25665         * lib/mbsstr.c: Include allocsa.h.
25666         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
25667         allocsa/freesa instead of malloc/free.
25668         * lib/mbscasestr.c: Include allocsa.h.
25669         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
25670         allocsa/freesa instead of malloc/free.
25671         * modules/c-strstr (Depends-on): Add allocsa.
25672         * modules/c-strcasestr (Depends-on): Likewise.
25673         * modules/strcasestr (Depends-on): Likewise.
25674         * modules/mbsstr (Depends-on): Likewise.
25675         * modules/mbscasestr (Depends-on): Likewise.
25676
25677 2007-02-11  Bruno Haible  <bruno@clisp.org>
25678
25679         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
25680
25681         * modules/mbsspn-tests: New file.
25682         * tests/test-mbsspn.sh: New file.
25683         * tests/test-mbsspn.c: New file.
25684
25685 2007-02-11  Bruno Haible  <bruno@clisp.org>
25686
25687         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
25688
25689         * modules/mbspbrk-tests: New file.
25690         * tests/test-mbspbrk.sh: New file.
25691         * tests/test-mbspbrk.c: New file.
25692
25693 2007-02-11  Bruno Haible  <bruno@clisp.org>
25694
25695         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
25696         unneeded cast.
25697
25698         * modules/mbscspn-tests: New file.
25699         * tests/test-mbscspn.sh: New file.
25700         * tests/test-mbscspn.c: New file.
25701
25702 2007-02-11  Bruno Haible  <bruno@clisp.org>
25703
25704         * modules/mbscasecmp-tests: New file.
25705         * tests/test-mbscasecmp.sh: New file.
25706         * tests/test-mbscasecmp.c: New file.
25707
25708 2007-02-11  Bruno Haible  <bruno@clisp.org>
25709
25710         Ensure O(n) worst-case complexity of mbscasestr.
25711         * lib/mbscasestr.c: Include stdbool.h.
25712         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
25713         functions.
25714         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
25715         the bookkeeping indicates that it's worth it.
25716         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
25717
25718         * modules/mbscasestr-tests: New file.
25719         * tests/test-mbscasestr1.c: New file.
25720         * tests/test-mbscasestr2.sh: New file.
25721         * tests/test-mbscasestr2.c: New file.
25722         * tests/test-mbscasestr3.sh: New file.
25723         * tests/test-mbscasestr3.c: New file.
25724         * tests/test-mbscasestr4.sh: New file.
25725         * tests/test-mbscasestr4.c: New file.
25726         * m4/locale-tr.m4: New file.
25727
25728 2007-02-11  Bruno Haible  <bruno@clisp.org>
25729
25730         Ensure O(n) worst-case complexity of mbsstr.
25731         * lib/mbsstr.c: Include stdbool.h.
25732         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
25733         functions.
25734         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
25735         bookkeeping indicates that it's worth it.
25736         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
25737
25738         * modules/mbsstr-tests: New file.
25739         * tests/test-mbsstr1.c: New file.
25740         * tests/test-mbsstr2.sh: New file.
25741         * tests/test-mbsstr2.c: New file.
25742         * tests/test-mbsstr3.sh: New file.
25743         * tests/test-mbsstr3.c: New file.
25744         * m4/locale-fr.m4: New file.
25745
25746 2007-02-11  Bruno Haible  <bruno@clisp.org>
25747
25748         * lib/mbsrchr.c (mbsrchr): Fix bug.
25749
25750         * modules/mbsrchr-tests: New file.
25751         * tests/test-mbsrchr.sh: New file.
25752         * tests/test-mbsrchr.c: New file.
25753
25754 2007-02-11  Bruno Haible  <bruno@clisp.org>
25755
25756         * lib/mbschr.c (mbschr): Fix bug.
25757
25758         * modules/mbschr-tests: New file.
25759         * tests/test-mbschr.sh: New file.
25760         * tests/test-mbschr.c: New file.
25761         * m4/locale-zh.m4: New file.
25762
25763 2007-02-11  Bruno Haible  <bruno@clisp.org>
25764
25765         Support for copying multibyte string iterators.
25766         * lib/mbiter.h: Include <string.h>.
25767         (mbiter_multi_copy): New function.
25768         (mbi_copy): New macro.
25769         * lib/mbuiter.h: Include <string.h>.
25770         (mbuiter_multi_copy): New function.
25771         (mbui_copy): New macro.
25772
25773 2007-02-11  Bruno Haible  <bruno@clisp.org>
25774
25775         New module mbslen.
25776         * modules/mbslen: New file.
25777         * lib/mbslen.c: New file.
25778         * lib/string_.h (mbslen): New declaration.
25779         * m4/mbslen.m4: New file.
25780         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25781         GNULIB_MBSLEN.
25782         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
25783         * MODULES.html.sh (Internationalization functions): Add mbslen.
25784
25785 2007-02-11  Bruno Haible  <bruno@clisp.org>
25786
25787         Ensure O(n) worst-case complexity of strcasestr substitute.
25788         * lib/strcasestr.c: Include stdbool.h.
25789         (knuth_morris_pratt): New function.
25790         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
25791         bookkeeping indicates that it's worth it.
25792         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
25793
25794         * modules/strcasestr-tests: New file.
25795         * tests/test-strcasestr.c: New file.
25796
25797 2007-02-11  Bruno Haible  <bruno@clisp.org>
25798
25799         Ensure O(n) worst-case complexity of c_strcasestr.
25800         * lib/c-strcasestr.c: Include stdbool.h, string.h.
25801         (knuth_morris_pratt): New function.
25802         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
25803         the bookkeeping indicates that it's worth it.
25804         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
25805
25806         * modules/c-strcasestr-tests: New file.
25807         * tests/test-c-strcasestr.c: New file.
25808
25809 2007-02-11  Bruno Haible  <bruno@clisp.org>
25810
25811         Ensure O(n) worst-case complexity of c_strstr.
25812         * lib/c-strstr.c: Include stdbool.h, string.h.
25813         (knuth_morris_pratt): New function.
25814         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
25815         bookkeeping indicates that it's worth it.
25816         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
25817
25818         * lib/c-strstr.c: Complete rewrite for maintainability.
25819
25820         * modules/c-strstr-tests: New file.
25821         * tests/test-c-strstr.c: New file.
25822
25823 2007-02-11  Bruno Haible  <bruno@clisp.org>
25824
25825         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
25826         5.2.1 and earlier, whereby \055 was treated just like the range
25827         delimiter '-'.
25828         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
25829
25830 2007-02-08  Bruno Haible  <bruno@clisp.org>
25831
25832         * modules/regex (Depends-on): Add stdbool.
25833         Reported by Dalibor Topic <robilad@kaffe.org>.
25834
25835 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
25836
25837         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
25838         Prefer returning from main to exiting from it.
25839         Remove unnecessary parens after sizeof.
25840
25841 2007-02-05  Bruno Haible  <bruno@clisp.org>
25842
25843         New module mbssep.
25844         * modules/mbssep: New file.
25845         * lib/mbssep.c: New file.
25846         * lib/string_.h (strsep): Add a conditional link warning.
25847         (mbssep): New declaration.
25848         * m4/mbssep.m4: New file.
25849         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25850         GNULIB_MBSSEP.
25851         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
25852         * MODULES.html.sh (Internationalization functions): Add mbssep.
25853
25854 2007-02-05  Bruno Haible  <bruno@clisp.org>
25855
25856         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
25857         Optimize search in case of 1 delimiter.
25858
25859 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
25860
25861         * lib/acl.h: Include sys/types.h before sys/acl.h.
25862
25863 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
25864
25865         Merge upstream fix for glibc bugzilla #3957:
25866
25867         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
25868
25869         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
25870         bit for RE_HAT_LISTS_NOT_NEWLINE.
25871         (build_charclass_op): Remove bogus comment.
25872
25873 2007-02-05  Simon Josefsson  <simon@josefsson.org>
25874
25875         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
25876
25877 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
25878
25879         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
25880         * lib/memmem.c [!defined _LIBC]: Include config.h.
25881
25882 2007-02-04  Bruno Haible  <bruno@clisp.org>
25883
25884         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
25885         warning message.
25886
25887 2007-02-04  Bruno Haible  <bruno@clisp.org>
25888
25889         New module mbstok_r.
25890         * modules/mbstok_r: New file.
25891         * lib/mbstok_r.c: New file.
25892         * lib/string_.h (strtok_r): Change argument names to match the
25893         comments. Add a conditional link warning.
25894         (mbstok_r): New declaration.
25895         * m4/mbstok_r.m4: New file.
25896         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25897         GNULIB_MBSTOK_R.
25898         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
25899         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
25900
25901 2007-02-04  Bruno Haible  <bruno@clisp.org>
25902
25903         New module mbsspn.
25904         * modules/mbsspn: New file.
25905         * lib/mbsspn.c: New file.
25906         * lib/string_.h (strspn): Add a conditional link warning.
25907         (mbsspn): New declaration.
25908         * m4/mbsspn.m4: New file.
25909         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25910         GNULIB_MBSSPN.
25911         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
25912         * MODULES.html.sh (Internationalization functions): Add mbsspn.
25913
25914 2007-02-04  Bruno Haible  <bruno@clisp.org>
25915
25916         New module mbspbrk.
25917         * modules/mbspbrk: New file.
25918         * lib/mbspbrk.c: New file.
25919         * lib/string_.h (strpbrk): Add a conditional link warning.
25920         (mbspbrk): New declaration.
25921         * m4/mbspbrk.m4: New file.
25922         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25923         GNULIB_MBSPBRK.
25924         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
25925         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
25926
25927 2007-02-04  Bruno Haible  <bruno@clisp.org>
25928
25929         New module mbscspn.
25930         * modules/mbscspn: New file.
25931         * lib/mbscspn.c: New file.
25932         * lib/string_.h (strcspn): Add a conditional link warning.
25933         (mbscspn): New declaration.
25934         * m4/mbscspn.m4: New file.
25935         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25936         GNULIB_MBSCSPN.
25937         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
25938         * MODULES.html.sh (Internationalization functions): Add mbscspn.
25939
25940 2007-02-04  Bruno Haible  <bruno@clisp.org>
25941
25942         New module mbscasestr, reduced goal of strcasestr.
25943         * modules/mbscasestr: New file.
25944         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
25945         (mbscasestr): Renamed from strcasestr.
25946         * lib/strcasestr.c: Don't include mbuiter.h.
25947         (strcasestr): Remove support for multibyte locales.
25948         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
25949         Change the conditional link warning.
25950         (mbscasestr): New declaration.
25951         * m4/mbscasestr.m4: New file.
25952         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
25953         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
25954         REPLACE_STRCASESTR.
25955         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
25956         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
25957         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
25958         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
25959         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
25960         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
25961         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
25962         (Depends-on): Remove mbuiter.
25963         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
25964
25965 2007-02-04  Bruno Haible  <bruno@clisp.org>
25966
25967         Simplify handling of strncasecmp.
25968         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
25969         the conditional link warning.
25970         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
25971         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
25972         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
25973         * modules/strcase (configure.ac): Don't invoke
25974         gl_STRING_MODULE_INDICATOR.
25975         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
25976
25977 2007-02-04  Bruno Haible  <bruno@clisp.org>
25978
25979         New module mbscasecmp, reduced goal of strcasecmp.
25980         * modules/mbscasecmp: New file.
25981         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
25982         (mbscasecmp): Renamed from strcasecmp.
25983         * lib/strcasecmp.c: Don't include mbuiter.h.
25984         (strcasecmp): Remove support for multibyte locales.
25985         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
25986         Change the conditional link warning.
25987         (mbscasecmp): New declaration.
25988         * m4/mbscasecmp.m4: New file.
25989         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
25990         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
25991         REPLACE_STRCASECMP.
25992         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
25993         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
25994         GNULIB_MBSCASECMP.
25995         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
25996         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
25997         * modules/strcase (Files): Remove m4/mbrtowc.m4.
25998         (Depends-on): Remove mbuiter.
25999         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
26000
26001 2007-02-04  Bruno Haible  <bruno@clisp.org>
26002
26003         New module mbsstr. Remove module strstr.
26004         * modules/mbsstr: New file.
26005         * modules/strstr: Remove file.
26006         * lib/mbsstr.c: Renamed from lib/strstr.c.
26007         (mbsstr): Renamed from strstr.
26008         * lib/string_.h (strstr): Remove declaration. Change the conditional
26009         link warning.
26010         (mbsstr): New declaration.
26011         * m4/mbsstr.m4: New file.
26012         * m4/strstr.m4: Remove file.
26013         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
26014         REPLACE_STRSTR.
26015         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
26016         Don't initialize GNULIB_STRSTR.
26017         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
26018         substitute GNULIB_STRSTR and REPLACE_STRSTR.
26019         * MODULES.html.sh (Internationalization functions): Add mbsstr.
26020         (Support for systems lacking ANSI C 89): Remove strstr.
26021
26022 2007-02-04  Bruno Haible  <bruno@clisp.org>
26023
26024         New module mbsrchr.
26025         * modules/mbsrchr: New file.
26026         * lib/mbsrchr.c: New file.
26027         * lib/string_.h (strrchr): Add a conditional link warning.
26028         (mbsrchr): New declaration.
26029         * m4/mbsrchr.m4: New file.
26030         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26031         GNULIB_MBSRCHR.
26032         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
26033         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
26034
26035 2007-02-04  Bruno Haible  <bruno@clisp.org>
26036
26037         New module mbschr.
26038         * modules/mbschr: New file.
26039         * lib/mbschr.c: New file.
26040         * lib/string_.h (strchr): Add a conditional link warning.
26041         (mbschr): New declaration.
26042         * m4/mbschr.m4: New file.
26043         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
26044         GNULIB_MBSCHR.
26045         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
26046         * MODULES.html.sh (Internationalization functions): Add mbschr.
26047
26048 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
26049
26050         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
26051
26052         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
26053
26054 2007-02-04  Bruno Haible  <bruno@clisp.org>
26055
26056         New module description section 'configure.ac-early'.
26057         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
26058         (func_get_autoconf_early_snippet): New function.
26059         (func_import, func_create_testdir): Use it. Remove special cases for
26060         modules 'extensions' and 'lock'.
26061         * modules/extensions (configure.ac-early): Require
26062         gl_USE_SYSTEM_EXTENSIONS.
26063         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
26064
26065 2007-02-04  Bruno Haible  <bruno@clisp.org>
26066
26067         Make use of gcj-4.3's -fsource and -ftarget option.
26068         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
26069         and if so try the options -fsource and -ftarget.
26070         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
26071         source_version, ftarget_option, target_version arguments.
26072         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
26073         (is_envjavac_oldgcj_14_14_usable): Renamed from
26074         is_envjavac_gcj_14_14_usable.
26075         (is_envjavac_oldgcj_14_13_usable): Renamed from
26076         is_envjavac_gcj_14_13_usable.
26077         (is_gcj_present): Update.
26078         (is_gcj_43, is_gcj43_usable): New functions.
26079         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
26080         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
26081         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
26082         try the options -fsource and -ftarget.
26083
26084 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
26085
26086         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
26087         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
26088         larger value.
26089
26090 2007-02-03  Jim Meyering  <jim@meyering.net>
26091
26092         Give tools a better chance to allocate space for very large buffers.
26093         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
26094
26095         Make pwd and readlink work also when run with an unreadable parent dir
26096         on systems with openat support.
26097         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
26098         provided getcwd function, even when we have openat support.
26099         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
26100
26101 2007-02-02  Bruno Haible  <bruno@clisp.org>
26102
26103         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
26104         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
26105         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
26106         portability problems if one of these functions is only used on specific
26107         platforms.
26108         Reported by Paul Eggert.
26109
26110 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
26111
26112         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
26113         is causing more trouble than it's curing.
26114         * lib/regex_internal.h (__mempcpy): Remove.
26115         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
26116         (and make the code a tad smaller to boot).
26117         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
26118
26119 2007-02-02  Jim Meyering  <jim@meyering.net>
26120
26121         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
26122         section, not in the Makefile.am: one.
26123
26124 2007-02-02  Eric Blake  <ebb9@byu.net>
26125
26126         * lib/strchrnul.c: Always include config.h first.
26127
26128         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
26129         gnulib strstr is not necessary here.
26130
26131 2007-02-02  Simon Josefsson  <simon@josefsson.org>
26132
26133         * m4/socklen.m4: Fix typo.
26134
26135 2007-02-02  Eric Blake  <ebb9@byu.net>
26136
26137         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
26138         * modules/netinet_in (Makefile.am): Likewise.
26139
26140 2007-02-01  Bruno Haible  <bruno@clisp.org>
26141
26142         * lib/string_.h (GL_LINK_WARNING): New macro.
26143         (strcasecmp, strstr, strcasestr): If provided by the system,
26144         conditionally define as a macro that leads to a warning instead of to
26145         an error.
26146         (strncasecmp): Conditionally define as a macro that leads to a warning.
26147
26148 2007-02-01  Karl Berry  <karl@gnu.org>
26149
26150         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
26151
26152 2007-02-01  Bruno Haible  <bruno@clisp.org>
26153
26154         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
26155         renamings.
26156
26157 2007-02-01  Eric Blake  <ebb9@byu.net>
26158
26159         * modules/regex (Depends-on): Revert dependence on mempcpy.
26160         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
26161         module's definition of mempcpy.
26162         Reported by Paul Eggert.
26163
26164 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
26165
26166         * lib/string_.h: If the gnulib module XYZ is not present, undefine
26167         the symbol XYZ before redefining it.  This fixes a problem with
26168         programs that don't use XYZ, when compiled on systems that define
26169         XYZ to something else.
26170
26171 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
26172
26173         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
26174         occurs when "mkdir -m foo" creates a setgid directory that is (1)
26175         writeable to group or other and (2) is intended to have a special
26176         mode bit that is set or cleared.  In such a case, the directory
26177         should be neither group- nor other-writeable until the special
26178         mode bits are right.
26179
26180 2007-01-31  Eric Blake  <ebb9@byu.net>
26181
26182         * modules/mountlist (Depends-on): Add strstr.
26183
26184         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
26185         bug.
26186         * modules/string (Makefile.am): Remove redundant replacement.
26187         * modules/regex (Depends-on): Add mempcpy.
26188
26189 2007-01-31  Bruno Haible  <bruno@clisp.org>
26190
26191         New module description field 'Link'.
26192         * gnulib-tool (func_usage): Document --extract-link-directive.
26193         (sed_extract_prog): Recognize 'Link' directive.
26194         (func_get_link_directive): New function.
26195         (func_import): Show summary of link directives.
26196         Handle --extract-link-directive option.
26197         * modules/acl (Link): New section.
26198         * modules/clock-time (Link): New section.
26199         * modules/euidaccess (Link): New section.
26200         * modules/gettext (Link): New section.
26201         * modules/iconv (Link): New section.
26202         * modules/lock (Link): New section.
26203         * modules/nanosleep (Link): New section.
26204         * modules/readline (Link): New section.
26205
26206 2007-01-27  Bruno Haible  <bruno@clisp.org>
26207
26208         Enforce the use of gnulib modules for unportable <string.h> functions.
26209         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
26210         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
26211         (gl_HEADER_STRING_H_BODY): Require it.
26212         * lib/string_.h: If the gnulib module XYZ is not present, redefine
26213         the symbol XYZ to one that gives a link error.
26214         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
26215         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
26216         * modules/mempcpy (configure.ac): Likewise.
26217         * modules/memrchr (configure.ac): Likewise.
26218         * modules/stpcpy (configure.ac): Likewise.
26219         * modules/stpncpy (configure.ac): Likewise.
26220         * modules/strcase (configure.ac): Likewise.
26221         * modules/strcasestr (configure.ac): Likewise.
26222         * modules/strchrnul (configure.ac): Likewise.
26223         * modules/strdup (configure.ac): Likewise.
26224         * modules/strndup (configure.ac): Likewise.
26225         * modules/strnlen (configure.ac): Likewise.
26226         * modules/strpbrk (configure.ac): Likewise.
26227         * modules/strsep (configure.ac): Likewise.
26228         * modules/strstr (configure.ac): Likewise.
26229         * modules/strtok_r (configure.ac): Likewise.
26230
26231 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
26232
26233         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
26234
26235 2007-01-30  Jim Meyering  <jim@meyering.net>
26236
26237         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
26238
26239 2007-01-29  Bruno Haible  <bruno@clisp.org>
26240
26241         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
26242         * lib/execute.c: Likewise.
26243         * lib/pipe.c: Likewise.
26244         * lib/printf-args.h: Likewise.
26245         * lib/printf-args.c: Likewise.
26246         * lib/printf-parse.c: Likewise.
26247         * lib/vasnprintf.c: Likewise.
26248
26249 2007-01-29  Eric Blake  <ebb9@byu.net>
26250
26251         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
26252         declaration.
26253
26254 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
26255
26256         * lib/strptime.h (strptime): Use 'restrict' for args where
26257         POSIX requires this.
26258         * lib/strptime.c (strptime): Likewise.
26259         Change license notice from LGPL to GPL, since gnulib-tool will
26260         change this as needed.
26261         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
26262         defined.
26263         Include "strptime.h" first, to check interface.
26264         Do not #undef _LIBC and _NL_CURRENT.
26265         Do not include <stdlib.h>; no longer needed.
26266         Include "time_r.h" and declare ptime_locale_status
26267         only if _LIBC is not defined.
26268         (__P): Remove unused macro.
26269         (match_string): Bring back glibc version, but use it only if _LIBC
26270         is defined.
26271         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
26272         Remove unnecessary assertion and abort() call.
26273         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
26274         * m4/strptime.m4: Fix serial number comment.
26275         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
26276         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
26277         (Depends-on): Add time_r.
26278
26279 2007-01-29  Bruno Haible  <bruno@clisp.org>
26280
26281         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26282         strptime.
26283         * modules/strptime (Depends-on): Add stdbool.
26284         * lib/strptime.h: Include <time.h> always. Add comments.
26285
26286 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26287
26288         * modules/strptime: New file.
26289         * lib/strptime.h: New file.
26290         * lib/strptime.c: New file.
26291         * m4/strptime.m4: New file.
26292
26293 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
26294
26295         * MODULES.html.sh: New module mpsort.
26296         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
26297
26298         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
26299         a circularity problem with HP-UX ia64 reported by Bob Proulx in
26300         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
26301         All uses changed.
26302         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
26303         All uses changed.
26304         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
26305         to _Restrict_.
26306         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
26307         the parameter matches the prototype.
26308
26309 2007-01-28  Jim Meyering  <jim@meyering.net>
26310
26311         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
26312         sys/time.h here, reverting that part of the previous patch:
26313         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
26314
26315 2007-01-28  Bruno Haible  <bruno@clisp.org>
26316
26317         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
26318         value of $(SYS_TIME_H).
26319         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
26320         remove it conditionally, too. [added by Jim Meyering]
26321         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
26322         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
26323         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
26324         GETTIMEOFDAY_REPLACEMENT to 1.
26325
26326 2007-01-28  Bruno Haible  <bruno@clisp.org>
26327
26328         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
26329         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
26330         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
26331         Set UNISTD_H instead of UNISTD_H2.
26332         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
26333
26334 2007-01-28  Bruno Haible  <bruno@clisp.org>
26335
26336         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
26337         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
26338
26339 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26340
26341         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
26342         (func_create_testdir): Ensure C locale for `grep' and `tr'
26343         character ranges.
26344         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
26345         ACLOCAL_AMFLAGS parsing state machine.
26346
26347 2007-01-27  Bruno Haible  <bruno@clisp.org>
26348
26349         * modules/unistr/base: Update.
26350
26351 2007-01-27  Bruno Haible  <bruno@clisp.org>
26352
26353         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
26354         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
26355         * modules/unistr/u32-mbtouc-unsafe: Renamed from
26356         modules/unistr/u32-mbtouc.
26357         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
26358         * lib/unistr.h: Update.
26359         * lib/linebreak.c: Update.
26360         * modules/unistr/u32-mbtouc: Renamed from
26361         modules/unistr/u32-mbtouc-safe.
26362         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
26363         * lib/unistr.h: Update.
26364         * lib/unistr/u32-to-u8.c: Update.
26365         * lib/unistr/u32-to-u16.c: Update.
26366
26367 2007-01-27  Bruno Haible  <bruno@clisp.org>
26368
26369         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
26370         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
26371         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
26372         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
26373         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
26374         * modules/unistr/u16-mbtouc-unsafe: Renamed from
26375         modules/unistr/u16-mbtouc.
26376         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
26377         * lib/unistr.h: Update.
26378         * lib/linebreak.c: Update.
26379         * modules/linebreak: Update.
26380         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
26381         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
26382         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
26383         * modules/unistr/u16-mbtouc: Renamed from
26384         modules/unistr/u16-mbtouc-safe.
26385         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
26386         * lib/unistr.h: Update.
26387         * lib/unistr/u16-to-u8.c: Update.
26388         * modules/unistr/u16-to-u8: Update.
26389         * lib/unistr/u16-to-u32.c: Update.
26390         * modules/unistr/u16-to-u32: Update.
26391
26392 2007-01-27  Bruno Haible  <bruno@clisp.org>
26393
26394         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
26395         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
26396         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
26397         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
26398         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
26399         * modules/unistr/u8-mbtouc-unsafe: Renamed from
26400         modules/unistr/u8-mbtouc.
26401         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
26402         * lib/unistr.h: Update.
26403         * lib/striconveh.c: Update.
26404         * modules/striconveh: Update.
26405         * lib/linebreak.c: Update.
26406         * modules/linebreak: Update.
26407         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
26408         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
26409         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
26410         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
26411         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
26412         * lib/unistr.h: Update.
26413         * lib/striconveh.c: Update.
26414         * modules/striconveh: Update.
26415         * lib/unistr/u8-to-u16.c: Update.
26416         * modules/unistr/u8-to-u16: Update.
26417         * lib/unistr/u8-to-u32.c: Update.
26418         * modules/unistr/u8-to-u32: Update.
26419
26420 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26421
26422         Sync from Libtool.
26423         * lib/argz.c: Do not include strings.h nor memory.h, include
26424         string.h unconditionally.  Patch by Simon Josefsson.
26425
26426 2007-01-27  Bruno Haible  <bruno@clisp.org>
26427
26428         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
26429         from gl_HEADER_STRING_H_BODY.
26430         (gl_HEADER_STRING_H_BODY): Require it.
26431         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
26432         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
26433         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
26434         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
26435         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
26436         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
26437         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
26438         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
26439         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
26440         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
26441         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
26442         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
26443         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
26444         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
26445         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
26446
26447 2007-01-27  Bruno Haible  <bruno@clisp.org>
26448
26449         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
26450         check_PROGRAMS into noinst_PROGRAMS.
26451         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
26452         check_PROGRAMS in this case.
26453         (func_import): Set for_test to false.
26454         (func_create_testdir): Set for_test to true.
26455
26456 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
26457             Bruno Haible  <bruno@clisp.org>
26458
26459         * modules/strcasestr (Files): Remove lib/strcasestr.h.
26460         (Depends-on): Add string.
26461         (Includes): Use <string.h> instead of strcasestr.h.
26462         * modules/string (Makefile.am): Also substitute the value of
26463         REPLACE_STRCASESTR.
26464         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
26465         assume strcasestr is declared in <string.h> not <strings.h>. Also
26466         set REPLACE_STRCASESTR.
26467         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
26468         REPLACE_STRCASESTR.
26469         * lib/strcasestr.h: Remove file.
26470         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
26471         * lib/string_.h (strcasestr): New declaration.
26472
26473 2007-01-27  Bruno Haible  <bruno@clisp.org>
26474
26475         * lib/string_.h: Use 'extern'.
26476
26477 2007-01-27  Jim Meyering  <jim@meyering.net>
26478
26479         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
26480         of set-but-not-used local, "q".
26481
26482         * lib/mempcpy.c: Include <config.h> before <string.h>.
26483         This fixes a compilation error on HP-UX, due to the system's
26484         "restrict"-using mempcpy prototype.
26485
26486 2007-01-26  Bruno Haible  <bruno@clisp.org>
26487
26488         Small optimization.
26489         * lib/javacomp.c: Include c-strstr.h.
26490          (is_envjavac_gcj): Use c_strstr instead of strstr.
26491         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
26492
26493 2007-01-26  Bruno Haible  <bruno@clisp.org>
26494
26495         * MODULES.html.sh (Unicode string functions): Add the new modules.
26496
26497         * modules/uniconv/u32-strconv-to-locale: New file.
26498         * lib/uniconv/u32-strconv-to-locale.c: New file.
26499
26500         * modules/uniconv/u16-strconv-to-locale: New file.
26501         * lib/uniconv/u16-strconv-to-locale.c: New file.
26502
26503         * modules/uniconv/u8-strconv-to-locale: New file.
26504         * lib/uniconv/u8-strconv-to-locale.c: New file.
26505
26506         * modules/uniconv/u32-strconv-from-locale: New file.
26507         * lib/uniconv/u32-strconv-from-locale.c: New file.
26508
26509         * modules/uniconv/u16-strconv-from-locale: New file.
26510         * lib/uniconv/u16-strconv-from-locale.c: New file.
26511
26512         * modules/uniconv/u8-strconv-from-locale: New file.
26513         * lib/uniconv/u8-strconv-from-locale.c: New file.
26514
26515         * modules/uniconv/u32-strconv-to-enc: New file.
26516         * lib/uniconv/u32-strconv-to-enc.c: New file.
26517         * modules/uniconv/u32-strconv-to-enc-tests: New file.
26518         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
26519
26520         * modules/uniconv/u16-strconv-to-enc: New file.
26521         * lib/uniconv/u16-strconv-to-enc.c: New file.
26522         * lib/uniconv/u-strconv-to-enc.h: New file.
26523         * modules/uniconv/u16-strconv-to-enc-tests: New file.
26524         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
26525
26526         * modules/uniconv/u8-strconv-to-enc: New file.
26527         * lib/uniconv/u8-strconv-to-enc.c: New file.
26528         * modules/uniconv/u8-strconv-to-enc-tests: New file.
26529         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
26530
26531         * modules/uniconv/u32-strconv-from-enc: New file.
26532         * lib/uniconv/u32-strconv-from-enc.c: New file.
26533         * modules/uniconv/u32-strconv-from-enc-tests: New file.
26534         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
26535
26536         * modules/uniconv/u16-strconv-from-enc: New file.
26537         * lib/uniconv/u16-strconv-from-enc.c: New file.
26538         * modules/uniconv/u16-strconv-from-enc-tests: New file.
26539         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
26540
26541         * modules/uniconv/u8-strconv-from-enc: New file.
26542         * lib/uniconv/u8-strconv-from-enc.c: New file.
26543         * lib/uniconv/u-strconv-from-enc.h: New file.
26544         * modules/uniconv/u8-strconv-from-enc-tests: New file.
26545         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
26546
26547         * modules/uniconv/u32-conv-from-enc: New file.
26548         * lib/uniconv/u32-conv-from-enc.c: New file.
26549         * modules/uniconv/u32-conv-from-enc-tests: New file.
26550         * tests/uniconv/test-u32-conv-from-enc.c: New file.
26551
26552         * modules/uniconv/u16-conv-from-enc: New file.
26553         * lib/uniconv/u16-conv-from-enc.c: New file.
26554         * lib/uniconv/u-conv-from-enc.h: New file.
26555         * modules/uniconv/u16-conv-from-enc-tests: New file.
26556         * tests/uniconv/test-u16-conv-from-enc.c: New file.
26557
26558         * modules/uniconv/u8-conv-from-enc: New file.
26559         * lib/uniconv/u8-conv-from-enc.c: New file.
26560         * modules/uniconv/u8-conv-from-enc-tests: New file.
26561         * tests/uniconv/test-u8-conv-from-enc.c: New file.
26562
26563         * modules/uniconv/base: New file.
26564         * lib/uniconv.h: New file.
26565
26566 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
26567
26568         * doc/gnulib-tool.texi (Initial import): Update to match current
26569         behavior with strdup module.
26570         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
26571         * lib/memmem.h: Remove; all uses removed.  This is now done
26572         by <string.h>.
26573         * lib/mempcpy.h: Likewise.
26574         * lib/memrchr.h: Likewise.
26575         * lib/stpcpy.h: Likewise.
26576         * lib/stpncpy.h: Likewise.
26577         * lib/strcase.h: Likewise.
26578         * lib/strchrnul.h: Likewise.
26579         * lib/strdup.h: Likewise.
26580         * lib/strndup.h: Likewise.
26581         * lib/strnlen.h: Likewise.
26582         * lib/strpbrk.h: Likewise.
26583         * lib/strsep.h: Likewise.
26584         * lib/strstr.h: Likewise.
26585         * lib/strtok_r.h: Likewise.
26586         * lib/string_.h: New file.
26587         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
26588         Rely on <string.h> instead.
26589         * lib/canon-host.c: Likewise.
26590         * lib/chdir-long.c: Likewise.
26591         * lib/concatpath.c: Likewise.
26592         * lib/exclude.c: Likewise.
26593         * lib/fchdir.c: Likewise.
26594         * lib/getaddrinfo.c: Likewise.
26595         * lib/getcwd.c: Likewise.
26596         * lib/getsubopt.c: Likewise.
26597         * lib/glob.c: Likewise.
26598         * lib/hard-locale.c: Likewise.
26599         * lib/iconvme.c: Likewise.
26600         * lib/javacomp.c: Likewise.
26601         * lib/mempcpy.c: Likewise.
26602         * lib/memrchr.c: Likewise.
26603         * lib/regex_internal.h: Likewise.
26604         * lib/stpncpy.c: Likewise.
26605         * lib/strcasecmp.c: Likewise.
26606         * lib/strchrnul.c: Likewise.
26607         * lib/strdup.c: Likewise.
26608         * lib/striconv.c: Likewise.
26609         * lib/striconveh.c: Likewise.
26610         * lib/striconveha.c: Likewise.
26611         * lib/strncasecmp.c: Likewise.
26612         * lib/strndup.c: Likewise.
26613         * lib/strnlen.c: Likewise.
26614         * lib/strsep.c: Likewise.
26615         * lib/strstr.c: Likewise.
26616         * lib/strtok_r.c: Likewise.
26617         * lib/userspec.c: Likewise.
26618         * lib/w32spawn.h: Likewise.
26619         * lib/xstrndup.c: Likewise.
26620         * lib/mountlist.c (strstr): Remove decl.
26621         * m4/string_h.m4: New file.
26622         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
26623         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
26624         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
26625         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
26626         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
26627         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
26628         Set REPLACE_STRCASECMP if necessary.
26629         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
26630         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
26631         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
26632         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
26633         HAVE_DECL_STRDUP if necessary.
26634         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
26635         since gl_FUNC_STRNDUP does that now.
26636         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
26637         Check for decl here...
26638         (gl_PREREQ_STRNLEN): ... not here.
26639         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
26640         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
26641         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
26642         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
26643         necessary.
26644         * modules/string: New file.
26645         * modules/memmem (Files): Remove special-purpose include file.
26646         (Depends-on): Add string.
26647         (Include): Include <string.h>, not the removed file.
26648         * modules/mempcpy: Likewise.
26649         * modules/memrchr: Likewise.
26650         * modules/stpcpy: Likewise.
26651         * modules/stpncpy: Likewise.
26652         * modules/strcase: Likewise.
26653         * modules/strchrnul: Likewise.
26654         * modules/strdup: Likewise.
26655         * modules/strndup: Likewise.
26656         * modules/strnlen: Likewise.
26657         * modules/strpbrk: Likewise.
26658         * modules/strsep: Likewise.
26659         * modules/strstr: Likewise.
26660         * modules/strtok_r: Likewise.
26661         * tests/test-dirname.c: Don't include "strdup.h", since
26662         <string.h> now suffices.
26663         * tests/test-memmem.c: Don't include "memmem.h", since
26664         <string.h> now suffices.
26665
26666 2007-01-25  Bruno Haible  <bruno@clisp.org>
26667
26668         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
26669         *resultp is 0.
26670
26671         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
26672         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
26673         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
26674         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
26675
26676         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
26677         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
26678         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
26679         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
26680         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
26681         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
26682
26683 2007-01-24  Bruno Haible  <bruno@clisp.org>
26684
26685         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
26686         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
26687         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
26688         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
26689         gl_FUNC_FTS_CORE.
26690         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
26691         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
26692         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26693         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
26694         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
26695         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
26696         gl_FUNC_FCHOWNAT.
26697         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
26698         gl_FUNC_STRFTIME.
26699         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
26700         Reported by Ralf Wildenhues.
26701
26702 2007-01-24  Bruno Haible  <bruno@clisp.org>
26703
26704         Drop AC_REQUIRE calls that are redundant with the module dependencies.
26705         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
26706         gl_GETADDRINFO.
26707         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
26708         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
26709         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
26710
26711 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
26712
26713         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
26714         Don't use 'exit'; just return from 'main'.
26715         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
26716
26717         * lib/fnmatch_.h: Readjust white space and comments to match
26718         glibc, to avoid spurious diffs.
26719
26720 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26721
26722         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
26723         2004-12-01 change by Jakub Jelinek, since this code won't compile
26724         if !LIBC.  Problem reported by Bob Proulx.
26725
26726 2007-01-23  Bruno Haible  <bruno@clisp.org>
26727
26728         * lib/striconveh.c: Include c-strcaseeq.h.
26729         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
26730         * modules/striconveh (Depends-on): Add c-strcaseeq.
26731
26732 2007-01-23  Bruno Haible  <bruno@clisp.org>
26733
26734         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
26735
26736         * modules/c-strcaseeq: New file.
26737         * lib/c-strcaseeq.h: New file.
26738
26739         * modules/streq: New file.
26740         * lib/streq.h: New file.
26741
26742 2007-01-23  Bruno Haible  <bruno@clisp.org>
26743
26744         * modules/striconveha-tests: New file.
26745         * tests/test-striconveha.c: New file.
26746
26747         * lib/striconveha.h: Include <stdbool.h>.
26748         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
26749         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
26750         (mem_iconveha_notranslit): Renamed from mem_iconveha.
26751         (mem_iconveha): New function.
26752         (str_iconveha_notranslit): Renamed from str_iconveha.
26753         (str_iconveha): New function.
26754         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
26755         c-strcase.
26756
26757 2007-01-23  Bruno Haible  <bruno@clisp.org>
26758
26759         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
26760         encodings without forgiving before trying any encoding with handler.
26761         (str_iconveha): Try all encodings without forgiving before trying any
26762         encoding with handler.
26763
26764 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
26765
26766         Import the following changes from libc.
26767
26768         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
26769
26770         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
26771
26772         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
26773
26774         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
26775         normal_bracket label.
26776
26777         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
26778
26779         [BZ #361]
26780         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
26781         to normal_bracket after fetching the next character.
26782
26783 2007-01-22  Bruno Haible  <bruno@clisp.org>
26784
26785         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
26786         argument.
26787         * lib/striconveh.c (iconv_carefully_1): New function.
26788         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
26789         argument.
26790         (str_cd_iconveh): Update.
26791         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
26792         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
26793         * tests/test-striconveh.c (MAGIC): New macro.
26794         (new_offsets): New function.
26795         (main): Test call with and without offsets.
26796
26797 2007-01-22  Bruno Haible  <bruno@clisp.org>
26798
26799         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
26800         * modules/sys_select (Makefile.am): Likewise.
26801         * modules/sys_socket (Makefile.am): Likewise.
26802         * modules/sys_time (Makefile.am): Likewise.
26803
26804 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
26805
26806         * modules/gettimeofday (License): Change from GPL to LGPL, since
26807         gettimeofday is a library function.
26808
26809 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
26810
26811         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
26812
26813 2007-01-21  Bruno Haible  <bruno@clisp.org>
26814
26815         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
26816
26817 2007-01-21  Bruno Haible  <bruno@clisp.org>
26818
26819         * modules/striconveha: New file.
26820         * lib/striconveha.h: New file.
26821         * lib/striconveha.c: New file.
26822         * MODULES.html.sh (Internationalization functions): Add striconveha.
26823         * lib/striconv.c (str_iconv): Optimize the case of an empty input
26824         string.
26825         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
26826
26827 2007-01-21  Bruno Haible  <bruno@clisp.org>
26828
26829         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
26830         * lib/striconveh.c (str_iconveh): Likewise.
26831
26832 2007-01-21  Bruno Haible  <bruno@clisp.org>
26833
26834         * lib/striconveh.h (mem_iconveh): New declaration.
26835         * lib/striconveh.c (mem_iconveh): New function.
26836         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
26837
26838 2007-01-21  Bruno Haible  <bruno@clisp.org>
26839
26840         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
26841
26842         * lib/striconveh.h (mem_cd_iconveh): Change specification.
26843         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
26844         original result buffer.
26845         (str_cd_iconveh): Update.
26846         * tests/test-striconveh.c (main): Update.
26847
26848         * lib/striconv.h (mem_cd_iconv): Change specification.
26849         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
26850         result buffer.
26851         (str_cd_iconv): Update.
26852         * tests/test-striconv.c (main): Update.
26853
26854 2007-01-21  Bruno Haible  <bruno@clisp.org>
26855
26856         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
26857
26858 2007-01-20  Jim Meyering  <jim@meyering.net>
26859
26860         * lib/userspec.c (parse_with_separator): If a user or group string
26861         starts with "+", skip the corresponding name-to-ID look-up, since
26862         such a look-up must fail: user and group names may not include "+".
26863
26864 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
26865
26866         * lib/poll.c: Include sys/time.h and time.h unconditionally,
26867         since we now assume the sys_time module.
26868         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
26869         check for sys/time.h; no longer needed.
26870         * modules/poll (Depends-on): Depend on sys_time.
26871
26872 2007-01-18  Bruno Haible  <bruno@clisp.org>
26873
26874         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
26875         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
26876
26877         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
26878         gettimeofday.
26879
26880         * tests/test-gettimeofday.c: Include <time.h>.
26881         (dummy): Remove variable.
26882
26883         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
26884         gl_HEADER_SYS_TIME_H.
26885         (gl_HEADER_SYS_TIME_H): New macro.
26886
26887         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
26888         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
26889         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
26890         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
26891         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
26892         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
26893         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
26894         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
26895         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
26896         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
26897         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
26898
26899         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
26900         last change; it caused a compilation error when cross-compiling to
26901         Cygwin.
26902
26903 2007-01-18  Jim Meyering  <jim@meyering.net>
26904
26905         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
26906         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
26907         than the race-prone "test -d sys || mkdir sys".
26908         (configure.ac): Use AC_PROG_MKDIR_P.
26909         * modules/sys_select: Likewise.
26910         * modules/sys_socket: Likewise.
26911         * modules/sys_time: Likewise.
26912
26913 2007-01-18  Eric Blake  <ebb9@byu.net>
26914
26915         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
26916         replace gettimeofday.
26917         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
26918         name, to avoid infinite recursion.
26919
26920 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
26921
26922         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
26923         module sys_time.
26924         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
26925         assume timespec.h defines struct timeval.
26926         * lib/settime.c: Likewise.
26927         * lib/utimens.c: Likewise.
26928         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
26929         since we now assume the gettimeofday module.
26930         * lib/tempname.c (__gen_tempname): Likewise.
26931         * lib/gettimeofday.h: Remove.
26932         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
26933         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
26934         Include <time.h>, for 'time()'.
26935         (localtime_buffer_addr): Also use this workaround if
26936         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
26937         to simplify the uses.  All uses changed.
26938         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
26939         that #undef is inside {}, and 'const' follows type name consistently.
26940         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
26941         (gettimeofday): Do not use the maximum possible value for
26942         tv->tv_usec, since that might break usages other than ls.c.
26943         Instead, we'll leave ls.c alone.  This undoes today's patch
26944         by Bruno.  Add a compile-time warning for 1s-clock resolution;
26945         we've never observed the problem but might as well keep the
26946         canary.
26947         * lib/nanosleep.c: Include timespec.h first, for interface check.
26948         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
26949         now assume the sys_time module.
26950         * lib/tempname.c: Likewise.
26951         * lib/timespec.h: Likewise.
26952         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
26953         needed.
26954         * lib/strftime.c: Likewise.
26955         * lib/timespec.h: Likewise.
26956         * lib/posixtm.c: Include posixtm.h first, for interface check.
26957         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
26958         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
26959         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
26960         * lib/sys_time_.h: New file.
26961         * lib/timespec.h (struct timespec): Use long int, not long.
26962         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
26963         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
26964         Remove obsolescent call to AC_HEADER_TIME.
26965         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
26966         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
26967         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
26968         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
26969         Likewise.
26970         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
26971         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
26972         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
26973         into the sys_time module.  Check for gettimeofday just once.
26974         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
26975         for gettimeofday signature to just check the signature.  Merely
26976         compile it, since linking doesn't test signature.  Improve test for
26977         whether gettimeofday.o is actually needed.
26978         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
26979         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
26980         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
26981         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
26982         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
26983         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
26984         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
26985         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
26986         than worrying about sys/time.h.
26987         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
26988         Don't bother worrying about TIME_WITH_SYS_TIME.
26989         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
26990         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
26991         * m4/sys_time_h.m4: New file.
26992         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
26993         Don't include sys/time.h.  Return from main rather than exiting.
26994         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
26995         all uses changed.
26996         * modules/gethrxtime (Depends-on): Add sys_time.
26997         * modules/gettime (Depends-on): Likewise.
26998         * modules/gettimeofday (Depends-on): Likewise.
26999         * modules/nanosleep (Depends-on): Likewise.
27000         * modules/settime (Depends-on): Likewise.
27001         * modules/tempname (Depends-on): Likewise.
27002         * modules/utimens (Depends-on): Likewise.
27003         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
27004         (Include:) Change back to <sys/time.h>.
27005         (Maintainer:) Add self.
27006         * modules/sys_time: New file.
27007         * modules/tempname (Depends-on): Add gettimeofday.
27008         * tests/test-gettimeofday.c: Include <sys/time.h>
27009         rather than gettimeofday.h.
27010
27011 2007-01-17  Bruno Haible  <bruno@clisp.org>
27012
27013         * gnulib-tool (func_get_license): Revert last patch. Instead, let
27014         the license default to GPL.
27015         (func_create_testdir): Don't complain if a module is LGPL and its
27016         tests module depends on GPLed modules.
27017
27018 2007-01-17  Bruno Haible  <bruno@clisp.org>
27019
27020         * lib/gettimeofday.c (gettimeofday): Add code for the case
27021         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
27022         maximum possible value for tv->tv_usec, rather than the minimum one.
27023
27024 2005-10-08  Martin Lambers  <marlam@marlam.de>
27025 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
27026 2007-01-16  Bruno Haible  <bruno@clisp.org>
27027
27028         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
27029         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
27030         gl_FUNC_GETTIMEOFDAY.
27031         (Include): Add gettimeofday.h.
27032         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
27033         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
27034         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
27035         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
27036         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
27037         * lib/gettimeofday.h: New file.
27038         * lib/gettimeofday.c: Include <sys/timeb.h>.
27039         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
27040         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
27041         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
27042         fall back on time().
27043
27044         * tests/test-gettimeofday.c: New file.
27045         * modules/gettimeofday-tests: New file.
27046
27047 2007-01-16  Eric Blake  <ebb9@byu.net>
27048
27049         * modules/fnmatch (Depends-on): Depend on wchar.
27050         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
27051         * m4/fnmatch.m4: Likewise.
27052         * modules/mbchar (Makefile.am): Assume <wchar.h>.
27053         * m4/mbchar.m4: Likewise.
27054         * modules/mbswidth (Depends-on): Depend on wchar.
27055         * lib/mbswidth.c: Assume <wchar.h>.
27056         * m4/mbswidth.m4: Likewise.
27057         * modules/quotearg (Depends-on): Depend on wchar.
27058         * lib/quotearg.c: Assume <wchar.h>.
27059         * m4/quotearg.m4: Likewise.
27060         * modules/regex (Depends-on): Depend on wchar.
27061         * lib/regex_internal.h: Assume <wchar.h>.
27062         * m4/regex.m4: Likewise.
27063         * modules/stdint (Depends-on): Depend on wchar.
27064         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
27065         * m4/stdint.m4: Likewise.
27066         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
27067         * modules/strftime (Depends-on): Depend on wchar.
27068         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
27069         * modules/strtol (Depends-on): Depend on wchar.
27070         * lib/strtol.c: Assume <wchar.h>.
27071         * modules/wcwidth (Depends-on): Depend on wchar.
27072         * lib/wcwidth.h: Assume <wchar.h>.
27073         * m4/wcwidth.m4: Likewise.
27074
27075 2007-01-16  Bruno Haible  <bruno@clisp.org>
27076
27077         * modules/csharpexec-script: New, created from...
27078         * modules/csharpexec: ... this.
27079
27080 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
27081
27082         * modules/javaexec-script: New, created from...
27083         * modules/javaexec: ... this.
27084
27085 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27086
27087         * modules/poll (Dependencies): Add sys_select.
27088
27089 2007-01-15  Jim Meyering  <jim@meyering.net>
27090
27091         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
27092         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
27093         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
27094         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
27095
27096 2007-01-15  Bruno Haible  <bruno@clisp.org>
27097
27098         * modules/striconveh: New file.
27099         * lib/striconveh.h: New file.
27100         * lib/striconveh.c: New file.
27101         * MODULES.html.sh (Internationalization functions): Add striconveh.
27102
27103         * modules/striconveh-tests: New file.
27104         * tests/test-striconveh.c: New file.
27105
27106 2007-01-15  Bruno Haible  <bruno@clisp.org>
27107
27108         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
27109         not from GNU libiconv or GNU libc.
27110
27111 2007-01-15  Bruno Haible  <bruno@clisp.org>
27112
27113         * doc/gnulib-intro.texi (Copyright): Explain the different license
27114         terms for module descriptions, autoconf macros, tests, documentation.
27115
27116 2007-01-14  Bruno Haible  <bruno@clisp.org>
27117
27118         * modules/striconv-tests: New file.
27119         * tests/test-striconv.c: New file.
27120
27121 2007-01-14  Bruno Haible  <bruno@clisp.org>
27122
27123         * modules/iconv-tests: New file.
27124         * tests/test-iconv.c: New file.
27125
27126 2007-01-14  Bruno Haible  <bruno@clisp.org>
27127
27128         * gnulib-tool (func_get_license): For test modules, use the license of
27129         the main module.
27130
27131 2007-01-14  Bruno Haible  <bruno@clisp.org>
27132
27133         * modules/iconv (Include): Clarify that <iconv.h> can only be included
27134         if iconv is found to exist.
27135
27136 2007-01-14  Bruno Haible  <bruno@clisp.org>
27137
27138         * modules/c-ctype-tests: New file.
27139         * tests/test-c-ctype.c: New file.
27140
27141 2007-01-14  Bruno Haible  <bruno@clisp.org>
27142
27143         * modules/binary-io-tests: New file.
27144         * tests/test-binary-io.sh: New file.
27145         * tests/test-binary-io.c: New file.
27146
27147 2007-01-14  Bruno Haible  <bruno@clisp.org>
27148
27149         * modules/array-oset-tests: New file.
27150         * tests/test-array_oset.c: New file.
27151
27152 2007-01-14  Bruno Haible  <bruno@clisp.org>
27153
27154         * modules/array-list-tests: New file.
27155         * tests/test-array_list.c: New file.
27156
27157 2007-01-14  Bruno Haible  <bruno@clisp.org>
27158
27159         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
27160         and make.
27161         Reported by Simon Josefsson in
27162         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
27163
27164 2007-01-14  Bruno Haible  <bruno@clisp.org>
27165
27166         * modules/allocsa-tests: New file.
27167         * tests/test-allocsa.c: New file.
27168
27169 2007-01-14  Bruno Haible  <bruno@clisp.org>
27170
27171         * modules/fchdir (Depends-on): Add absolute-header.
27172         * modules/unistd (Depends-on): Likewise.
27173
27174 2006-12-30  Bruno Haible  <bruno@clisp.org>
27175
27176         * modules/fchdir: New file.
27177         * modules/unistd (Files): Add lib/unistd_.h.
27178         (Makefile.am): Generate unistd.h from unistd_.h.
27179         * lib/fchdir.c: New file.
27180         * lib/dirent_.h: New file.
27181         * lib/unistd_.h: New file.
27182         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
27183         * m4/fchdir.m4: New file.
27184         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
27185         (gl_HEADER_UNISTD): Invoke it.
27186         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
27187         function.
27188         * lib/backupfile.c (opendir, closedir): Undefine.
27189         * lib/chown.c (open, close): Undefine.
27190         * lib/clean-temp.c (open, close): Undefine.
27191         * lib/copy-file.c (open, close): Undefine.
27192         * lib/execute.c (open, close): Undefine.
27193         * lib/fsusage.c (open, close): Undefine.
27194         * lib/gc-gnulib.c (open, close): Undefine.
27195         * lib/getcwd.c (opendir, closedir): Undefine.
27196         * lib/glob.c (opendir, closedir): Undefine.
27197         * lib/javacomp.c (open, close): Undefine.
27198         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
27199         * lib/openat-proc.c (open, close): Undefine.
27200         * lib/pagealign_alloc.c (open, close): Undefine.
27201         * lib/pipe.c (open, close): Undefine.
27202         * lib/progreloc.c (open, close): Undefine.
27203         * lib/savedir.c (opendir, closedir): Undefine.
27204         * lib/utime.c (open, close): Undefine.
27205         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
27206
27207 2007-01-10  Bruno Haible  <bruno@clisp.org>
27208
27209         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
27210
27211 2007-01-12  Eric Blake  <ebb9@byu.net>
27212
27213         Provide a robust <wchar.h>.  Further simplifications are now
27214         possible in other modules, but not included here.
27215         * modules/wchar: New module.
27216         * m4/wchar.m4: New file.
27217         * lib/wchar_.h: Likewise.
27218         * modules/mbchar (Depends-on): Depend on wchar, as the first use
27219         of the new module.
27220         * MODULES.html.sh (Extended multibyte and wide character utilities):
27221         New section.
27222
27223 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
27224
27225         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
27226         to a reasonable default for memory allocation.
27227         (xreadlink): Don't allocate a huge buffer, to work around a buggy
27228         file system that reports garbage st_size values for symlinks.
27229         Problem reported by Liyang Hu.
27230
27231 2007-01-11  Simon Josefsson  <simon@josefsson.org>
27232
27233         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
27234         Emacs .#* auto-save files).
27235
27236 2007-01-11  Bruno Haible  <bruno@clisp.org>
27237
27238         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
27239         directory.
27240
27241 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
27242
27243         Use @...@ consistently in lib/wctype_.h.
27244         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
27245         on it being set to 1 or 0.
27246         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
27247         go back to AC_SUBSTing it.
27248         * modules/wctype (Makefile.am): Undo previous change.
27249
27250 2007-01-10  Eric Blake  <ebb9@byu.net>
27251
27252         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
27253         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
27254         * modules/wctype (Makefile.am): Likewise.
27255         Reported by Chris McGuire.
27256
27257 2007-01-10  Jim Meyering  <jim@meyering.net>
27258
27259         fts.c: a small readability/maintainability improvement
27260         * lib/fts.c (fts_read): Make this code slightly more readable and
27261         maintainable by hoisting the "sp->fts_cur = p" assignments to
27262         immediately follow the statements that set P.  Derived from
27263         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
27264
27265 2007-01-10  Eric Blake  <ebb9@byu.net>
27266
27267         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
27268         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
27269         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
27270         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
27271         Reported by Chris McGuire.
27272
27273 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27274
27275         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
27276         in sed script.
27277
27278 2007-01-09  Bruno Haible  <bruno@clisp.org>
27279
27280         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
27281         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
27282         variables.
27283         (func_module): Use them.
27284
27285 2007-01-09  Bruno Haible  <bruno@clisp.org>
27286
27287         * modules/unistr/base: New file.
27288         * lib/unistr.h: New file.
27289
27290         * modules/unistr/u8-to-u16: New file.
27291         * lib/unistr/u8-to-u16.c: New file.
27292
27293         * modules/unistr/u8-to-u32: New file.
27294         * lib/unistr/u8-to-u32.c: New file.
27295
27296         * modules/unistr/u16-to-u8: New file.
27297         * lib/unistr/u16-to-u8.c: New file.
27298
27299         * modules/unistr/u16-to-u32: New file.
27300         * lib/unistr/u16-to-u32.c: New file.
27301
27302         * modules/unistr/u32-to-u8: New file.
27303         * lib/unistr/u32-to-u8.c: New file.
27304
27305         * modules/unistr/u32-to-u16: New file.
27306         * lib/unistr/u32-to-u16.c: New file.
27307
27308         * modules/unistr/u8-check: New file.
27309         * modules/unistr/u16-check: New file.
27310         * modules/unistr/u32-check: New file.
27311         * lib/unistr/u8-check.c: New file.
27312         * lib/unistr/u16-check.c: New file.
27313         * lib/unistr/u32-check.c: New file.
27314
27315         * modules/unistr/u8-chr: New file.
27316         * modules/unistr/u16-chr: New file.
27317         * modules/unistr/u32-chr: New file.
27318         * lib/unistr/u8-chr.c: New file.
27319         * lib/unistr/u16-chr.c: New file.
27320         * lib/unistr/u32-chr.c: New file.
27321
27322         * modules/unistr/u8-cmp: New file.
27323         * modules/unistr/u16-cmp: New file.
27324         * modules/unistr/u32-cmp: New file.
27325         * lib/unistr/u8-cmp.c: New file.
27326         * lib/unistr/u16-cmp.c: New file.
27327         * lib/unistr/u32-cmp.c: New file.
27328
27329         * modules/unistr/u8-cpy: New file.
27330         * modules/unistr/u16-cpy: New file.
27331         * modules/unistr/u32-cpy: New file.
27332         * lib/unistr/u8-cpy.c: New file.
27333         * lib/unistr/u16-cpy.c: New file.
27334         * lib/unistr/u32-cpy.c: New file.
27335         * lib/unistr/u-cpy.h: New file.
27336
27337         * modules/unistr/u8-cpy-alloc: New file.
27338         * modules/unistr/u16-cpy-alloc: New file.
27339         * modules/unistr/u32-cpy-alloc: New file.
27340         * lib/unistr/u8-cpy-alloc.c: New file.
27341         * lib/unistr/u16-cpy-alloc.c: New file.
27342         * lib/unistr/u32-cpy-alloc.c: New file.
27343         * lib/unistr/u-cpy-alloc.h: New file.
27344
27345         * modules/unistr/u8-endswith: New file.
27346         * modules/unistr/u16-endswith: New file.
27347         * modules/unistr/u32-endswith: New file.
27348         * lib/unistr/u8-endswith.c: New file.
27349         * lib/unistr/u16-endswith.c: New file.
27350         * lib/unistr/u32-endswith.c: New file.
27351         * lib/unistr/u-endswith.h: New file.
27352
27353         * modules/unistr/u8-mblen: New file.
27354         * modules/unistr/u16-mblen: New file.
27355         * modules/unistr/u32-mblen: New file.
27356         * lib/unistr/u8-mblen.c: New file.
27357         * lib/unistr/u16-mblen.c: New file.
27358         * lib/unistr/u32-mblen.c: New file.
27359
27360         * modules/unistr/u8-mbtouc: New file.
27361         * modules/unistr/u16-mbtouc: New file.
27362         * modules/unistr/u32-mbtouc: New file.
27363         * lib/unistr/u8-mbtouc.c: New file.
27364         * lib/unistr/u16-mbtouc.c: New file.
27365         * lib/unistr/u32-mbtouc.c: New file.
27366
27367         * modules/unistr/u8-mbtouc-safe: New file.
27368         * modules/unistr/u16-mbtouc-safe: New file.
27369         * modules/unistr/u32-mbtouc-safe: New file.
27370         * lib/unistr/u8-mbtouc-safe.c: New file.
27371         * lib/unistr/u16-mbtouc-safe.c: New file.
27372         * lib/unistr/u32-mbtouc-safe.c: New file.
27373
27374         * modules/unistr/u8-move: New file.
27375         * modules/unistr/u16-move: New file.
27376         * modules/unistr/u32-move: New file.
27377         * lib/unistr/u8-move.c: New file.
27378         * lib/unistr/u16-move.c: New file.
27379         * lib/unistr/u32-move.c: New file.
27380         * lib/unistr/u-move.h: New file.
27381
27382         * modules/unistr/u8-next: New file.
27383         * modules/unistr/u16-next: New file.
27384         * modules/unistr/u32-next: New file.
27385         * lib/unistr/u8-next.c: New file.
27386         * lib/unistr/u16-next.c: New file.
27387         * lib/unistr/u32-next.c: New file.
27388
27389         * modules/unistr/u8-prev: New file.
27390         * modules/unistr/u16-prev: New file.
27391         * modules/unistr/u32-prev: New file.
27392         * lib/unistr/u8-prev.c: New file.
27393         * lib/unistr/u16-prev.c: New file.
27394         * lib/unistr/u32-prev.c: New file.
27395
27396         * modules/unistr/u8-set: New file.
27397         * modules/unistr/u16-set: New file.
27398         * modules/unistr/u32-set: New file.
27399         * lib/unistr/u8-set.c: New file.
27400         * lib/unistr/u16-set.c: New file.
27401         * lib/unistr/u32-set.c: New file.
27402         * lib/unistr/u-set.h: New file.
27403
27404         * modules/unistr/u8-startswith: New file.
27405         * modules/unistr/u16-startswith: New file.
27406         * modules/unistr/u32-startswith: New file.
27407         * lib/unistr/u8-startswith.c: New file.
27408         * lib/unistr/u16-startswith.c: New file.
27409         * lib/unistr/u32-startswith.c: New file.
27410         * lib/unistr/u-startswith.h: New file.
27411
27412         * modules/unistr/u8-stpcpy: New file.
27413         * modules/unistr/u16-stpcpy: New file.
27414         * modules/unistr/u32-stpcpy: New file.
27415         * lib/unistr/u8-stpcpy.c: New file.
27416         * lib/unistr/u16-stpcpy.c: New file.
27417         * lib/unistr/u32-stpcpy.c: New file.
27418         * lib/unistr/u-stpcpy.h: New file.
27419
27420         * modules/unistr/u8-stpncpy: New file.
27421         * modules/unistr/u16-stpncpy: New file.
27422         * modules/unistr/u32-stpncpy: New file.
27423         * lib/unistr/u8-stpncpy.c: New file.
27424         * lib/unistr/u16-stpncpy.c: New file.
27425         * lib/unistr/u32-stpncpy.c: New file.
27426         * lib/unistr/u-stpncpy.h: New file.
27427
27428         * modules/unistr/u8-strcat: New file.
27429         * modules/unistr/u16-strcat: New file.
27430         * modules/unistr/u32-strcat: New file.
27431         * lib/unistr/u8-strcat.c: New file.
27432         * lib/unistr/u16-strcat.c: New file.
27433         * lib/unistr/u32-strcat.c: New file.
27434         * lib/unistr/u-strcat.h: New file.
27435
27436         * modules/unistr/u8-strchr: New file.
27437         * modules/unistr/u16-strchr: New file.
27438         * modules/unistr/u32-strchr: New file.
27439         * lib/unistr/u8-strchr.c: New file.
27440         * lib/unistr/u16-strchr.c: New file.
27441         * lib/unistr/u32-strchr.c: New file.
27442
27443         * modules/unistr/u8-strcmp: New file.
27444         * modules/unistr/u16-strcmp: New file.
27445         * modules/unistr/u32-strcmp: New file.
27446         * lib/unistr/u8-strcmp.c: New file.
27447         * lib/unistr/u16-strcmp.c: New file.
27448         * lib/unistr/u32-strcmp.c: New file.
27449
27450         * modules/unistr/u8-strcpy: New file.
27451         * modules/unistr/u16-strcpy: New file.
27452         * modules/unistr/u32-strcpy: New file.
27453         * lib/unistr/u8-strcpy.c: New file.
27454         * lib/unistr/u16-strcpy.c: New file.
27455         * lib/unistr/u32-strcpy.c: New file.
27456         * lib/unistr/u-strcpy.h: New file.
27457
27458         * modules/unistr/u8-strcspn: New file.
27459         * modules/unistr/u16-strcspn: New file.
27460         * modules/unistr/u32-strcspn: New file.
27461         * lib/unistr/u8-strcspn.c: New file.
27462         * lib/unistr/u16-strcspn.c: New file.
27463         * lib/unistr/u32-strcspn.c: New file.
27464         * lib/unistr/u-strcspn.h: New file.
27465
27466         * modules/unistr/u8-strdup: New file.
27467         * modules/unistr/u16-strdup: New file.
27468         * modules/unistr/u32-strdup: New file.
27469         * lib/unistr/u8-strdup.c: New file.
27470         * lib/unistr/u16-strdup.c: New file.
27471         * lib/unistr/u32-strdup.c: New file.
27472         * lib/unistr/u-strdup.h: New file.
27473
27474         * modules/unistr/u8-strlen: New file.
27475         * modules/unistr/u16-strlen: New file.
27476         * modules/unistr/u32-strlen: New file.
27477         * lib/unistr/u8-strlen.c: New file.
27478         * lib/unistr/u16-strlen.c: New file.
27479         * lib/unistr/u32-strlen.c: New file.
27480         * lib/unistr/u-strlen.h: New file.
27481
27482         * modules/unistr/u8-strmblen: New file.
27483         * modules/unistr/u16-strmblen: New file.
27484         * modules/unistr/u32-strmblen: New file.
27485         * lib/unistr/u8-strmblen.c: New file.
27486         * lib/unistr/u16-strmblen.c: New file.
27487         * lib/unistr/u32-strmblen.c: New file.
27488
27489         * modules/unistr/u8-strmbtouc: New file.
27490         * modules/unistr/u16-strmbtouc: New file.
27491         * modules/unistr/u32-strmbtouc: New file.
27492         * lib/unistr/u8-strmbtouc.c: New file.
27493         * lib/unistr/u16-strmbtouc.c: New file.
27494         * lib/unistr/u32-strmbtouc.c: New file.
27495
27496         * modules/unistr/u8-strncat: New file.
27497         * modules/unistr/u16-strncat: New file.
27498         * modules/unistr/u32-strncat: New file.
27499         * lib/unistr/u8-strncat.c: New file.
27500         * lib/unistr/u16-strncat.c: New file.
27501         * lib/unistr/u32-strncat.c: New file.
27502         * lib/unistr/u-strncat.h: New file.
27503
27504         * modules/unistr/u8-strncmp: New file.
27505         * modules/unistr/u16-strncmp: New file.
27506         * modules/unistr/u32-strncmp: New file.
27507         * lib/unistr/u8-strncmp.c: New file.
27508         * lib/unistr/u16-strncmp.c: New file.
27509         * lib/unistr/u32-strncmp.c: New file.
27510
27511         * modules/unistr/u8-strncpy: New file.
27512         * modules/unistr/u16-strncpy: New file.
27513         * modules/unistr/u32-strncpy: New file.
27514         * lib/unistr/u8-strncpy.c: New file.
27515         * lib/unistr/u16-strncpy.c: New file.
27516         * lib/unistr/u32-strncpy.c: New file.
27517         * lib/unistr/u-strncpy.h: New file.
27518
27519         * modules/unistr/u8-strnlen: New file.
27520         * modules/unistr/u16-strnlen: New file.
27521         * modules/unistr/u32-strnlen: New file.
27522         * lib/unistr/u8-strnlen.c: New file.
27523         * lib/unistr/u16-strnlen.c: New file.
27524         * lib/unistr/u32-strnlen.c: New file.
27525         * lib/unistr/u-strnlen.h: New file.
27526
27527         * modules/unistr/u8-strpbrk: New file.
27528         * modules/unistr/u16-strpbrk: New file.
27529         * modules/unistr/u32-strpbrk: New file.
27530         * lib/unistr/u8-strpbrk.c: New file.
27531         * lib/unistr/u16-strpbrk.c: New file.
27532         * lib/unistr/u32-strpbrk.c: New file.
27533         * lib/unistr/u-strpbrk.h: New file.
27534
27535         * modules/unistr/u8-strrchr: New file.
27536         * modules/unistr/u16-strrchr: New file.
27537         * modules/unistr/u32-strrchr: New file.
27538         * lib/unistr/u8-strrchr.c: New file.
27539         * lib/unistr/u16-strrchr.c: New file.
27540         * lib/unistr/u32-strrchr.c: New file.
27541
27542         * modules/unistr/u8-strspn: New file.
27543         * modules/unistr/u16-strspn: New file.
27544         * modules/unistr/u32-strspn: New file.
27545         * lib/unistr/u8-strspn.c: New file.
27546         * lib/unistr/u16-strspn.c: New file.
27547         * lib/unistr/u32-strspn.c: New file.
27548         * lib/unistr/u-strspn.h: New file.
27549
27550         * modules/unistr/u8-strstr: New file.
27551         * modules/unistr/u16-strstr: New file.
27552         * modules/unistr/u32-strstr: New file.
27553         * lib/unistr/u8-strstr.c: New file.
27554         * lib/unistr/u16-strstr.c: New file.
27555         * lib/unistr/u32-strstr.c: New file.
27556         * lib/unistr/u-strstr.h: New file.
27557
27558         * modules/unistr/u8-strtok: New file.
27559         * modules/unistr/u16-strtok: New file.
27560         * modules/unistr/u32-strtok: New file.
27561         * lib/unistr/u8-strtok.c: New file.
27562         * lib/unistr/u16-strtok.c: New file.
27563         * lib/unistr/u32-strtok.c: New file.
27564         * lib/unistr/u-strtok.h: New file.
27565
27566         * modules/unistr/u8-uctomb: New file.
27567         * modules/unistr/u16-uctomb: New file.
27568         * modules/unistr/u32-uctomb: New file.
27569         * lib/unistr/u8-uctomb.c: New file.
27570         * lib/unistr/u16-uctomb.c: New file.
27571         * lib/unistr/u32-uctomb.c: New file.
27572
27573         * MODULES.html.sh (Unicode string functions): Add the new modules.
27574
27575 2007-01-08  Bruno Haible  <bruno@clisp.org>
27576
27577         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
27578         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
27579         subdirectories.
27580
27581 2007-01-08  Karl Berry  <karl@gnu.org>
27582
27583         * doc/error.texi: mention that main() fns must set program_name
27584         when progname is used.
27585
27586 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
27587
27588         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
27589         WCTYPE_H is empty, for the benefit of builds from non-distclean
27590         directories.  Problem reported by Eric Blake in
27591         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
27592
27593 2007-01-08  Bruno Haible  <bruno@clisp.org>
27594
27595         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
27596         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
27597         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
27598         PROVIDE_CANONICALIZE_FILENAME_MODE.
27599         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
27600
27601 2007-01-08  Bruno Haible  <bruno@clisp.org>
27602
27603         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
27604         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
27605         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
27606         * lib/fts.c: Likewise.
27607         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
27608
27609 2006-12-25  Bruno Haible  <bruno@clisp.org>
27610
27611         * modules/utf8-ucs4-safe: New file.
27612         * lib/utf8-ucs4-safe.h: New file.
27613         * lib/unistr/utf8-ucs4-safe.c: New file.
27614
27615         * modules/utf16-ucs4-safe: New file.
27616         * lib/utf16-ucs4-safe.h: New file.
27617         * lib/unistr/utf16-ucs4-safe.c: New file.
27618
27619         * MODULES.html.sh (Unicode string functions): Add the new modules.
27620
27621 2007-01-08  Bruno Haible  <bruno@clisp.org>
27622
27623         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
27624         (Depends-on): Add unitypes.
27625         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
27626         (u8_mbtouc_aux): Move out to separate file.
27627         (u8_mbtouc): Use ucs4_t, uint8_t types.
27628         * lib/unistr/utf8-ucs4.c: New file.
27629
27630         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
27631         (Depends-on): Add unitypes.
27632         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
27633         (u16_mbtouc_aux): Move out to separate file.
27634         (u16_mbtouc): Use ucs4_t, uint16_t types.
27635         * lib/unistr/utf16-ucs4.c: New file.
27636
27637         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
27638         (Depends-on): Add unitypes.
27639         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
27640         (u8_uctomb_aux): Move out to separate file.
27641         (u8_uctomb): Use ucs4_t, uint8_t types.
27642         * lib/unistr/ucs4-utf8.c: New file.
27643
27644         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
27645         (Depends-on): Add unitypes.
27646         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
27647         (u16_uctomb_aux): Move out to separate file.
27648         (u16_uctomb): Use ucs4_t, uint16_t types.
27649         * lib/unistr/ucs4-utf16.c: New file.
27650
27651 2006-12-25  Bruno Haible  <bruno@clisp.org>
27652
27653         * modules/unitypes: New file.
27654         * lib/unitypes.h: New file.
27655         * MODULES.html.sh (func_all_modules): New section "Unicode string
27656         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
27657         this section. Add unitypes.
27658
27659 2007-01-08  Bruno Haible  <bruno@clisp.org>
27660
27661         Avoid variable names that conflict with those from libtool.
27662         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
27663         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
27664         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
27665         library_names_spec to acl_library_names_spec, hardcode_* to
27666         acl_hardcode_*.
27667         Reported by Ralf Wildenhues.
27668
27669 2007-01-08  Bruno Haible  <bruno@clisp.org>
27670
27671         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
27672         definition.
27673         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
27674         definition.
27675         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
27676         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
27677         definition.
27678         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
27679         definition.
27680         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
27681         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
27682         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
27683         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
27684         definition.
27685         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
27686         definition.
27687         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
27688         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
27689         GC_USE_<algorithm>.
27690         * lib/gc-libgcrypt.c: Likewise.
27691         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
27692         * modules/gc-arctwo (configure.ac): Likewise.
27693         * modules/gc-des (configure.ac): Likewise.
27694         * modules/gc-hmac-md5 (configure.ac): Likewise.
27695         * modules/gc-hmac-sha1 (configure.ac): Likewise.
27696         * modules/gc-md2 (configure.ac): Likewise.
27697         * modules/gc-md4 (configure.ac): Likewise.
27698         * modules/gc-md5 (configure.ac): Likewise.
27699         * modules/gc-random (configure.ac): Likewise.
27700         * modules/gc-rijndael (configure.ac): Likewise.
27701         * modules/gc-sha1 (configure.ac): Likewise.
27702
27703 2007-01-08  Bruno Haible  <bruno@clisp.org>
27704
27705         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
27706         macro definition.
27707         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
27708         definition.
27709         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
27710         definition.
27711         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
27712         * modules/fcntl-safer (configure.ac): Likewise.
27713         * modules/fopen-safer (configure.ac): Likewise.
27714         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
27715         GNULIB_FWRITEERROR macro definition.
27716
27717 2007-01-08  Bruno Haible  <bruno@clisp.org>
27718
27719         * m4/gnulib-common.m4: New file.
27720         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
27721         (func_get_filelist): Add m4/gnulib-common.m4.
27722
27723 2007-01-08  Bruno Haible  <bruno@clisp.org>
27724
27725         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
27726         command.
27727
27728 2007-01-08  Jim Meyering  <jim@meyering.net>
27729
27730         Use a more robust test for a "can't happen" condition.
27731         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
27732         narrowed the st_size value.  Presuming the "can't happen" condition
27733         is true, that narrowing could conceivably convert an invalid st_size
27734         value into a valid one.  Instead, use a change based on Matthew
27735         Woehlke's original patch.
27736
27737         Slight readability improvement: use an assert-like macro
27738         in place of literal "abort ()" uses.
27739         * lib/fts.c (fts_assert): Define.
27740         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
27741         Use this macro instead of a bare 'abort'.
27742
27743 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
27744
27745         Don't worry about using IRIX 5.3's wctype.h broken definitions;
27746         simply work around them.
27747         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
27748         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
27749         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
27750         declaring.
27751         Don't bother to define as macros, since the standard doesn't require it.
27752         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
27753         longer worry about IRIX 5.3.
27754         (HAVE_WCTYPE_CTMP_BUG): Remove.
27755
27756 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
27757
27758         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
27759         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
27760         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
27761         Problems reported by Georg Schwarz for IRIX 5.3.
27762
27763         * gnulib-tool (autoconf_minversion): Take the maximum version number
27764         found, not the minimum.  Problem reported by James Youngman.
27765
27766 2007-01-03  Karl Berry  <karl@gnu.org>
27767
27768         * doc/error.texi: new file, explaining interaction with progname.
27769         * doc/gnulib.texi: include it.  Update copyright.
27770
27771 2007-01-03  Simon Josefsson  <simon@josefsson.org>
27772
27773         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
27774         AC_CANONICAL_HOST, to improve autobuild outputs.
27775
27776 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
27777             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
27778
27779         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
27780         sockets, server sockets, and other file descriptors.  Count errors
27781         to compute the return value.  Reorder the code a bit to be easier
27782         to follow.  Don't set event bits that were not requested (except
27783         POLLERR and POLLHUP).
27784
27785 2007-01-01  Bruno Haible  <bruno@clisp.org>
27786
27787         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
27788
27789 2007-01-03  Jim Meyering  <jim@meyering.net>
27790
27791         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
27792
27793 2007-01-02  Bruno Haible  <bruno@clisp.org>
27794
27795         * modules/settime (Include): Require timespec.h.
27796         * modules/nanosleep (Include): Likewise.
27797
27798 2007-01-01  Bruno Haible  <bruno@clisp.org>
27799
27800         * gnulib-tool (func_emit_copyright_notice): Bump year.
27801         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
27802
27803 2007-01-01  Bruno Haible  <bruno@clisp.org>
27804
27805         Improve support for OpenBSD.
27806         * build-aux/config.rpath (libname_spec): Export.
27807         (library_names_spec): New variable. Export.
27808         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
27809         library_names_spec from the config.rpath output. Locate shared library
27810         through the name pattern in library_names_spec.
27811
27812 2007-01-01  Eric Blake  <ebb9@byu.net>
27813
27814         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
27815
27816 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
27817
27818         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
27819         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
27820         assume the C locale, and avoid an "eval" that could cause trouble.
27821         Problem with SORT reported by Bob Proulx.
27822
27823         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
27824         Define.  Trivial patch from Henning Nielsen Lund, originally
27825         sent to bug-grep@gnu.org today.
27826
27827 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
27828
27829         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
27830         struct stat.  Problem reported by Henning Nielsen Lund.
27831         * lib/acl.c: Include acl.h first, to check interface.  Don't
27832         bother to include sys/types.h and sys/stat.h again.
27833
27834 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
27835
27836         Import the following change from libc; problem reported by
27837         Sven Verdoolaege.
27838
27839         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
27840
27841         [BZ #1373]
27842         * lib/argp.h: Remove __NTH for __argp_usage inline function.
27843
27844 2006-12-28  Jim Meyering  <jim@meyering.net>
27845
27846         * build-aux/announce-gen: Do not assume that the package
27847         builds any of tar.gz, tar.bz2, and .xdelta files.
27848         Suggestion from Simon Josefsson.
27849
27850 2006-12-28  Simon Josefsson  <simon@josefsson.org>
27851
27852         * modules/announce-gen: New file.
27853
27854 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
27855
27856         * lib/mbchar.h: Just include <wctype.h>; the wctype module
27857         handles its gotchas now.
27858         * lib/mbswidth.c: Likewise.
27859         * lib/wcwidth.h: Likewise.
27860         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
27861         and iswcntrl; the wctype module does this stuff now.
27862         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
27863         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
27864         * modules/mbchar (Depends-on): Add wctype.
27865         * modules/mbswidth (Depends-on): Likewise.
27866         * modules/wcwidth (Depends-on): Likewise.
27867
27868 2006-12-27  Eric Blake  <ebb9@byu.net>
27869
27870         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
27871         module uses more than what <wctype.h> is required to provide.
27872
27873 2006-12-26  Eric Blake  <ebb9@byu.net>
27874
27875         * gnulib-tool (sed_extract_prog): Avoid space-tab.
27876
27877 2006-12-26  Eric Blake  <ebb9@byu.net>
27878
27879         * modules/absolute-header: New module.
27880         * modules/fcntl (Depends-on): Depend on it.
27881         * modules/inttypes (Depends-on): Likewise.
27882         * modules/stdint (Depends-on): Likewise.
27883         * modules/sys_stat (Depends-on): Likewise.
27884         * modules/wctype (Depends-on): Likewise.
27885         * MODULES.html.sh (Support for building libraries and
27886         executables): Document it.
27887
27888 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
27889
27890         * gnulib-tool (SED): Remove, undoing previous change.
27891         The problem was that it broke coreutils on Solaris, because
27892         "sed --posix" leaked into a makefile.
27893         (sed): New alias, if 'alias' and GNU sed.
27894
27895 2006-12-24  Jim Meyering  <jim@meyering.net>
27896
27897         Work around an fchownat bug in glibc-2.4:
27898         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
27899         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
27900         in spite of the -P option.
27901         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
27902         New macros.
27903         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
27904         * modules/openat (Files): Add lib/fchownat.c.
27905         * lib/openat.c (fchownat): Don't define here.  Move to...
27906         * lib/fchownat.c: ...this new file.
27907
27908 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
27909
27910         Fix bug reported by Bruno Haible in
27911         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
27912         where quotearg.c didn't compile on Mac OS X 10.2 because it
27913         lacks <wchar.h> and wint_t.
27914         * lib/wctype_.h (__wctype_wint_t): New type.
27915         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
27916         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
27917         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
27918         Arg is now of type __wctype_wint_t, not wint_t.
27919         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
27920         substitute HAVE_WINT_T.
27921         * modules/wctype (Files): Add m4/wint_t.m4.
27922         (wctype.h): Substitute HAVE_WINT_T.
27923
27924 2006-12-23  Bruno Haible  <bruno@clisp.org>
27925
27926         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
27927
27928 2006-12-23  Bruno Haible  <bruno@clisp.org>
27929
27930         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
27931         S_ISLNK.
27932         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
27933         mingw.
27934
27935 2006-12-22  Bruno Haible  <bruno@clisp.org>
27936
27937         * lib/copy-file.c: Include acl.h.
27938         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
27939         Close the file descriptors only after being done with copy_acl.
27940         * modules/copy-file (Depends-on): Add acl.
27941
27942 2006-12-22  Bruno Haible  <bruno@clisp.org>
27943
27944         * gnulib-tool (SED): New variable.
27945         Use $SED instead of sed everywhere.
27946
27947 2006-12-22  Bruno Haible  <bruno@clisp.org>
27948
27949         * modules/no-c++: New file.
27950         * m4/no-c++.m4: New file.
27951         * MODULES.html.sh (Support for building libraries and executables):
27952         Add no-c++.
27953
27954 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
27955
27956         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
27957         Include <limits.h>, and use its INT_MAX to rewrite the
27958         j loop so that it does not overflow 'int'.  Problem reported by
27959         Ralf Wildenhues in
27960         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
27961         Play it safe by shifting left by 1 rather than multiplying by 2,
27962         as GCC is less likely to optimize this away when the value
27963         is signed (when it assumes overflow leads to undefined behavior).
27964         Also, don't assume time_t uses two's complement.
27965
27966 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
27967
27968         * MODULES.html.sh: New module wctype.
27969         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
27970         * lib/fnmatch.c: Don't bother to include <wchar.h> before
27971         <wctype.h>, since the new wctype module should fix this.
27972         * lib/quotearg.c: Include <wctype.h> unconditionally, since
27973         the wctype module should arrange for it.
27974         * lib/regex_internal.h: Likewise.
27975         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
27976         since the wctype module should handle this now.
27977         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
27978         * modules/fnmatch (Depends-on): Add wctype.
27979         * modules/quotearg (Depends-on): Likewise.
27980         * modules/regex (Depends-on): Likewise.
27981
27982 2006-12-19  Bruno Haible  <bruno@clisp.org>
27983
27984         * lib/strdup.h [C++]: Wrap definitions in extern "C".
27985         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
27986
27987 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27988
27989         * modules/savewd (Depends-on): Fix dependency on fcntl.
27990
27991 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
27992
27993         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
27994         conforms to C99, rather than relying on the user's environment
27995         setting of STDINT_H.
27996
27997 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
27998         and Eric Blake  <ebb9@byu.net>
27999
28000         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
28001         This is more consistent with the other defines here.
28002         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
28003         Port to z/OS.  Problem reported by Paul Gilmartin.
28004         Change local vars to use gl_ prefix rather than ac_.
28005         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
28006         with other defines.
28007         * modules/double-slash-root: New module.
28008         * modules/dirname (Files): Remove m4/double-slash-root.m4.
28009         (Depends-on): Add double-slash-root.
28010         * MODULES.html.sh (File system functions): Mention new module.
28011
28012 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
28013
28014         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
28015         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
28016         This is for the benefit of gzip, which doesn't do i18n.
28017
28018 2006-12-12  Jim Meyering  <jim@meyering.net>
28019
28020         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
28021         Reported by Andreas Schwab <schwab@suse.de>.
28022
28023 2006-12-12  Bruno Haible  <bruno@clisp.org>
28024
28025         Merge these changes.
28026         2006-09-05  Bruno Haible  <bruno@clisp.org>
28027         * lib/iconvme.c (iconv_string): No need to save and restore errno when
28028         iconv_alloc succeeded.
28029         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
28030         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
28031         test for " && dest " at the end - dest is always != NULL there. Call
28032         iconv with 4xNULL arguments initially, to reset the state. Call iconv
28033         with 2xNULL arguments, also to flush the state storage. Handle the
28034         IRIX iconv behaviour. Realloc the final result, to throw away unused
28035         memory.
28036
28037 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
28038
28039         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
28040         and fchmodat unconditionally, since glibc 2.4 has them.
28041         Problem reported by Arkadiusz Miskiewicz.
28042
28043 2006-12-10  Bruno Haible  <bruno@clisp.org>
28044
28045         * gnulib-tool (func_import): Show the include files only for those
28046         modules that are copied and specified.
28047         Reported by Karl Berry.
28048
28049 2006-12-08  Jim Meyering  <jim@meyering.net>
28050
28051         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
28052         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
28053
28054         * build-aux/announce-gen: Add two new options, both optional:
28055         --bootstrap-tools=TOOL_LIST
28056               a comma-separated list of tools, e.g.,
28057               autoconf,automake,bison,gnulib
28058         --gnulib-snapshot-date=DATE
28059               if gnulib is in the bootstrap tool list,
28060               then report this as the snapshot date.
28061               If not specified, use the current date/time.
28062               If you specify a date here, be sure it's UTC.
28063
28064 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28065
28066         * tests/test-argp-2.sh: Fix test to match actual output.
28067         (func_compare): Fix sed script to be portable.
28068
28069 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
28070
28071         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
28072         workaround for this case.  It is not autoconfigured now; offhand
28073         it's hard to see how to autoconfigure it.
28074
28075 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
28076
28077         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
28078         a directory that is about to be chowned.  Such a directory's
28079         initial file permissions should permit the owner only and this
28080         should not be changed until after the chown, since the group and
28081         other bits would be incorrect if they granted permission before
28082         the chown.
28083
28084         Fix porting problem for iswctype reported by Georg Schwarz in:
28085         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
28086         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
28087         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
28088         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
28089         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
28090
28091 2006-12-03  Jim Meyering  <jim@meyering.net>
28092
28093         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
28094         p->fts_statp may not yet be defined.
28095         (fts_read): Instead, set it in the caller, once p->fts_statp is
28096         sure to be defined, and corresponds to a top-level directory.
28097         This bug made du -x fail.  Here's the coreutils test case:
28098         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
28099         Reported by Mike Frysinger.
28100
28101 2006-12-01  Jim Meyering  <jim@meyering.net>
28102
28103         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
28104         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
28105         Reported by Simon Josefsson.
28106
28107 2006-11-30  Jim Meyering  <jim@meyering.net>
28108
28109         * m4/warning.m4: Use the all-permissive copyright notice
28110         recommended by RMS (rather than LGPL).
28111         * m4/vararrays.m4: Likewise.
28112         * m4/flexmember.m4: Likewise.
28113
28114 2006-11-29  Bruno Haible  <bruno@clisp.org>
28115
28116         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
28117         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
28118         using +=.
28119         Reported by Simon Josefsson <simon@josefsson.org>.
28120
28121 2006-11-28  James Youngman <jay@gnu.org>
28122
28123         * README: Advise users that they might find the bug-gnulib@gnu.org
28124         and autotools-announce@gnu.org mailing lists useful.
28125
28126 2006-11-28  Bruno Haible  <bruno@clisp.org>
28127
28128         * m4/ptrdiff_max.m4: Remove file.
28129
28130 2006-11-21  Bruno Haible  <bruno@clisp.org>
28131
28132         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
28133         _AC_COMPUTE_INT.
28134         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28135         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
28136         _AC_COMPUTE_INT.
28137         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28138         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
28139         _AC_COMPUTE_INT.
28140         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28141
28142 2006-11-28  Jim Meyering  <jim@meyering.net>
28143
28144         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
28145         warning from "gcc -Wshadow" about shadowing the builtin.
28146
28147 2006-11-27  Bruno Haible  <bruno@clisp.org>
28148
28149         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
28150         _AC_COMPUTE_INT.
28151         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
28152
28153 2006-11-27  Bruno Haible  <bruno@clisp.org>
28154             Paul Eggert  <eggert@cs.ucla.edu>
28155
28156         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
28157
28158 2006-11-26  Bruno Haible  <bruno@clisp.org>
28159
28160         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
28161         noinst_LTLIBRARIES.
28162
28163 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
28164             Bruno Haible  <bruno@clisp.org>
28165
28166         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
28167         if compiling with "gcc -ansi".
28168
28169 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
28170
28171         Fix some incompatibilities with gcc -ansi -pedantic.
28172         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
28173         if compiling pedantically with GCC, unless it's C99 or later.
28174         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
28175         it mishandles gcc -ansi -pedantic as well.
28176         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
28177         if gcc -pedantic.
28178         * lib/regexec.c (check_node_accept_bytes): Don't use auto
28179         initializers for struct if -pedantic, unless it's C99 or later.
28180
28181 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
28182
28183         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
28184         Don't close an fd more than once. Identical atimes indicate
28185         success, not failure.
28186
28187 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
28188
28189         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
28190
28191 2006-11-23  Jim Meyering  <jim@meyering.net>
28192
28193         * build-aux/announce-gen: New file.  From coreutils.
28194
28195 2006-11-22  Jim Meyering  <jim@meyering.net>
28196
28197         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
28198         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
28199         (fts_read): Use a temporary to narrow the overused st_size member
28200         before using it in a switch statement.  Reported by Matthew Woehlke.
28201
28202         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
28203         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
28204
28205 2006-11-20  Bruno Haible  <bruno@clisp.org>
28206
28207         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
28208         changequote instead of pairs of brackets.
28209         Reported by Andreas Schwab <schwab@suse.de>.
28210
28211 2006-11-21  Jim Meyering  <jim@meyering.net>
28212
28213         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
28214         so as to remain compatible with older compilers.
28215         Patch from Michael Deutschmann.
28216
28217 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28218
28219         * MODULES.html.sh (File system functions): Add openat.
28220
28221         * lib/openat.h (rpl_fstatat): New macro, if
28222         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
28223         (fstatat): Define to rpl_fstatat under the same conditions,
28224         unless COMPILING_FSTATAT.
28225         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
28226         seems to have the bug.
28227         * lib/fstatat.c: New file.
28228         * modules/openat (Files): Add it.
28229
28230 2006-11-20  Bruno Haible  <bruno@clisp.org>
28231
28232         * Makefile: New file.
28233
28234 2006-11-20  Jim Meyering  <jim@meyering.net>
28235
28236         The beginnings of syntax-related checks for gnulib.
28237         * lib/Makefile: New file.
28238         * lib/t-idcache: New script.  Ensure that the two halves of
28239         idcache.c stay in sync.
28240
28241         * lib/idcache.c: Adjust comments in user- and group- portions to
28242         be more accurate, and to be consistent with one another.
28243
28244 2006-11-20  Jim Meyering  <jim@meyering.net>
28245
28246         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
28247         continue using the flexible array member (thus, this module performs
28248         half as many malloc calls), with the addition that...
28249         (getgroup, getuser): Consistently record a non-match via an empty
28250         "name" string, and map an empty string match to a NULL return value.
28251         * modules/idcache (Depends-on): Re-add flexmember.
28252
28253         * lib/idcache.c (getuser): Remove all uses of the register keyword.
28254         (getuidbyname, getgroup, getgidbyname): Likewise.
28255
28256         Use cleaner syntax: NULL rather than 0.
28257         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
28258
28259 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28260
28261         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
28262         It mishandled the case where the group was missing.
28263         Problem reported by Greg Schafer.
28264         * modules/idcache: Likewise.
28265
28266 2006-11-18  Jim Meyering  <jim@meyering.net>
28267
28268         * check-module (%exempt_header): Add exception for some
28269         conditionally-included headers.
28270
28271         * modules/i-ring (Depends-on): Add verify.
28272         (License): Change to LGPL.
28273
28274 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28275
28276         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
28277         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
28278         and inttostr.h.  Use snprintf rather than uinttostr, so that
28279         LGPLed code doesn't depend on GPLed.
28280
28281 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28282
28283         * modules/inline (License): Change from GPL to LGPL.
28284
28285 2006-11-17  Jim Meyering  <jim@meyering.net>
28286
28287         * modules/d-type (License): Switch to LGPL.
28288
28289 2006-11-15  Bruno Haible  <bruno@clisp.org>
28290
28291         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
28292
28293 2006-11-15  Eric Blake  <ebb9@byu.net>
28294
28295         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
28296         the module dependency.
28297
28298 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28299             Bruno Haible  <bruno@clisp.org>
28300
28301         * gnulib-tool (func_create_testdir): Add license consistency check.
28302
28303 2006-11-15  Eric Blake  <ebb9@byu.net>
28304
28305         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
28306         random "(cached)" in configure output.
28307
28308 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28309
28310         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
28311         test for conforming inttypes.h is both announced and cached.
28312
28313         * MODULES.html.sh (seen_modules, seen_files): New variables.
28314         (func_module): Rewrite to use a few less gnulib-tool and sed
28315         invocations.  Avoid a couple of quadratic algorithms for ...
28316         (missed_modules, missed_files): ... these, with ...
28317         (func_append, func_tmpdir): ... these new functions, from
28318         gnulib-tool.  Analogously, install traps for cleanup.
28319
28320         * tests/test-gc.c (main): Remove unused variables.
28321         * tests/test-read-file.c: Include stdlib.h, for 'free'.
28322
28323 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
28324
28325         * modules/inttostr (License): Change to LGPL.
28326
28327 2006-11-14  Eric Blake  <ebb9@byu.net>
28328
28329         * modules/tempname (License): Change to LGPL.
28330
28331 2006-11-14  Eric Blake  <ebb9@byu.net>
28332
28333         * doc/functions.texi (Function Portability): *printf functions on
28334         Cygwin now understand all POSIX size specifiers.
28335
28336 2006-11-14  Bruno Haible  <bruno@clisp.org>
28337
28338         * modules/c-ctype (License): Change to LGPL.
28339
28340 2006-11-12  Bruno Haible  <bruno@clisp.org>
28341
28342         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
28343         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
28344         for GNOME libraries, for which the include files are installed in
28345         subdirectories of $prefix/include.
28346
28347 2006-11-12  Bruno Haible  <bruno@clisp.org>
28348
28349         * m4/lib-link.m4: Require at least autoconf-2.54.
28350         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
28351         name to underscores for the --with option.
28352
28353 2006-11-13  Bruno Haible  <bruno@clisp.org>
28354
28355         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
28356         the tests directory.
28357         Reported by Ralf Wildenhues.
28358
28359 2006-11-13  Bruno Haible  <bruno@clisp.org>
28360
28361         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
28362         (func_emit_initmacro_end): Undo the override here.
28363         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
28364         Works around the famous automake error in coreutils.
28365
28366 2006-11-13  Eric Blake  <ebb9@byu.net>
28367
28368         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
28369         element, not its node.
28370
28371 2006-11-12  Bruno Haible  <bruno@clisp.org>
28372
28373         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
28374         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
28375
28376 2006-11-12  Bruno Haible  <bruno@clisp.org>
28377
28378         * gnulib-tool: New option --local-symlink.
28379         (func_usage): Document it.
28380         (lsymbolic): New variable.
28381         (func_import, func_create_testdir): If --symlink was not specified,
28382         test whether --local-symlink was specified and the file comes from
28383         the local_gnulib_dir.
28384
28385 2006-11-12  Bruno Haible  <bruno@clisp.org>
28386
28387         * gnulib-tool (func_ln): New function.
28388         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
28389
28390 2006-11-12  Bruno Haible  <bruno@clisp.org>
28391
28392         Finish support for source files in subdirectories.
28393         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
28394         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
28395         AUTOMAKE_OPTIONS.
28396         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
28397
28398 2006-11-12  Bruno Haible  <bruno@clisp.org>
28399
28400         * gnulib-tool (func_get_automake_snippet): Synthesize also an
28401         EXTRA_lib_SOURCES augmentation.
28402         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
28403
28404 2006-11-12  Jim Meyering  <jim@meyering.net>
28405
28406         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
28407         file descriptors.  This also averts a failure on systems with
28408         native openat support when a traversed directory lacks "x" access.
28409         * lib/fts_.h: Include "i-ring.h"
28410         (struct FTS) [fts_fd_ring]: New member.
28411         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
28412         (FCHDIR): Add parentheses.
28413         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
28414         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
28415         When descending, rather than simply closing the previous
28416         fts_cwd_fd value, push that file descriptor onto the ring.
28417         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
28418         (fts_open): Initialize the new fd_ring member.
28419         (fts_close): Clear the ring.
28420         (fts_safe_changedir): When possible, use our new fd_ring to skip
28421         the diropen and fstat and dev/ino comparison that would normally
28422         accompany a virtual `chdir ("..")'.
28423
28424         * modules/fts (Depends-on): Add i-ring.
28425         * modules/i-ring: New module.
28426         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
28427         * m4/i-ring.m4: New file.
28428
28429 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28430
28431         * gnulib-tool (func_create_testdir): Fix replacement of
28432         `build-aux' in configure.ac.  Run autotools in gltests
28433         subdirectory.
28434         (func_create_testdir, func_create_megatestdir, test): There is
28435         no need for '--force' in most autotool invocations in a new
28436         tree.  Actually fail the whole test if any of the tools, or the
28437         configure or make stages fail.
28438
28439         Sync from Automake.
28440         * build-aux/gnupload: Revert last change.  Add pointer to upload
28441         instructions of the GNU Maintenance Instructions.
28442         Suggestion by Karl Berry.
28443
28444 2006-11-10  Jim Meyering  <jim@meyering.net>
28445
28446         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
28447
28448 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28449
28450         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
28451         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
28452         (bind_textdomain_codeset) [! ENABLE_NLS]:
28453         Evaluate all the arguments.  That way, callers get compatible behavior
28454         if the arguments have side effects.  Also, it avoids some GCC
28455         diagnostics in some cases; Joel E. Denny reported problems when Bison
28456         was configured with --enable-gcc-warnigs.
28457
28458 2006-11-10  Jim Meyering  <jim@meyering.net>
28459
28460         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
28461         relevant options in CFLAGS (like -O, -fno-inline) are taken into
28462         account.
28463
28464 2006-11-10  Jim Meyering  <jim@meyering.net>
28465
28466         * modules/inline: New file/module.
28467         * modules/xalloc (Files): Remove m4/inline.m4.
28468         (Depends-on): Add inline, instead.
28469         * modules/oset: Likewise.
28470         * modules/list: Likewise.
28471
28472 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28473
28474         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
28475         Problem reported by Matthew Woehlke.
28476
28477 2006-11-09  Bruno Haible  <bruno@clisp.org>
28478
28479         * lib/tempname.c (gen_tempname): Remove variant that invokes
28480         __gen_tempname.
28481         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
28482         __gen_tempname.
28483
28484 2006-11-08  Bruno Haible  <bruno@clisp.org>
28485
28486         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
28487         to 'yes' instead of 'cross-compiling'.
28488
28489 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
28490
28491         * lib/quotearg.h (quotearg_free): New decl.
28492         * lib/quotearg.c (quotearg_free): New function.
28493         (slot0, nslots, slotvec0, slotvec):
28494         Now file-scope so that quotearg_free can get at them.
28495
28496 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28497
28498         Sync from Automake.
28499         * build-aux/gnupload: Add missing 'gnu' to example URL.
28500         Report by Karl Berry.
28501
28502 2006-11-08  Bruno Haible  <bruno@clisp.org>
28503
28504         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
28505         Suggested by Paul Eggert.
28506
28507 2006-11-08  Jim Meyering  <jim@meyering.net>
28508
28509         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
28510         It's already included if !_LIBC.
28511         (fts_safe_changedir): Add a comment.
28512
28513 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
28514
28515         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
28516         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
28517         Matthew Woehlke.
28518
28519         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
28520         definitions up, to avoid colliding with change below.
28521         (static_inline) [HAVE_INLINE]: New macro.
28522         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
28523         Provide extern decls when !HAVE_INLINE.  Do not define unless
28524         static_inline is defined, either by us or by xmalloc.c.  Use
28525         static_inline rather than static inline.
28526         (XCALLOC): Optimize sizeof(T) = 1 case.
28527         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
28528
28529 2006-11-07  Bruno Haible  <bruno@clisp.org>
28530
28531         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
28532         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
28533         AC_C_INLINE.
28534         * modules/xalloc (Files): Add m4/inline.m4.
28535
28536 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28537
28538         * README: Fix typo.
28539         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
28540         (Miscellanous Notes): ...from this.
28541
28542 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
28543
28544         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
28545         Mention that offsetof should be used instead of sizeof.
28546         From Bruno Haible.
28547
28548 2006-11-07  Bruno Haible  <bruno@clisp.org>
28549
28550         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
28551
28552 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
28553
28554         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
28555         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
28556         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
28557         (gl_tree_add_before, gl_tree_add_after):
28558         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
28559         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
28560         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
28561         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
28562         (gl_linked_add_after, gl_linked_add_at): Likewise.
28563         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
28564         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
28565         (gl_tree_add_before, gl_tree_add_after): Likewise.
28566         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
28567         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
28568         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
28569
28570 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28571
28572         * lib/gl_oset.h: Use C comment style, not C++ comment style.
28573
28574 2006-11-06  Bruno Haible  <bruno@clisp.org>
28575
28576         * m4/inline.m4: New file.
28577         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
28578         * modules/list (Files): Add m4/inline.m4.
28579         * modules/oset (Files): Likewise.
28580
28581 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
28582
28583         * lib/idcache.c: Include <stddef.h>, for offsetof.
28584         (struct userid.name): Change from char * to a flexible array member.
28585         All uses changed.
28586         * modules/idcache (Depends-on): Add flexmember.
28587
28588         * MODULES.html.sh (Core language properties): New module flexmember.
28589         * modules/flexmember, m4/flexmember.m4: New files.
28590
28591         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
28592         inline functions that are identical with the old xnmalloc_inline,
28593         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
28594         that we can avoid some unnecessary integer multiplications and
28595         divisions in the common case where the element size is known at
28596         compile time.
28597         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
28598         needed.
28599         (xnboundedmalloc): Remove.
28600         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
28601         arguments, for consistency with rest of this header.
28602         (xcharalloc): Rewrite using XNMALLOC.
28603         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
28604         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
28605         versions have been moved to lib/xalloc.h and renamed to be the
28606         non-*_inline versions.
28607         (xmalloc, xrealloc): Implement without reference to the xnmalloc
28608         and xnrealloc functions, since those functions are now inline and
28609         now call us.
28610         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
28611         renaming described above.
28612         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
28613         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
28614         captures the dependency in AC_C_INLINE.
28615
28616         New module canonicalize-lgpl, proposed by Charles Wilson in
28617         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
28618         with a few small changes afterwards.
28619         * MODULES.html.sh (File system functions): New module
28620         canonicalize-lgpl.
28621         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
28622         and canonicalize_file_name.
28623         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
28624         * modules/canonicalize-lgpl: New files.
28625
28626 2006-11-05  Bruno Haible  <bruno@clisp.org>
28627
28628         * gnulib-tool (func_import, func_create_testdir): Create directories
28629         also for files in subdirectories of lib/.
28630
28631 2006-11-05  Bruno Haible  <bruno@clisp.org>
28632
28633         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
28634         ANSI C compliant.
28635
28636 2006-11-03  Bruno Haible  <bruno@clisp.org>
28637
28638         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
28639         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
28640         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
28641         (xnboundedmalloc): New inline function.
28642         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
28643         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
28644         xmalloc.
28645         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
28646         xmalloc.
28647         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
28648         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
28649         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
28650         xmalloc.
28651         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
28652         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
28653         xmalloc.
28654         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
28655         gl_tree_add_after): Use XMALLOC instead of xmalloc.
28656         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
28657         xmalloc.
28658         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
28659         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
28660         gl_tree_add_after): Use XMALLOC instead of xmalloc.
28661         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
28662         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
28663         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
28664         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
28665
28666 2006-11-03  Bruno Haible  <bruno@clisp.org>
28667
28668         * lib/c-ctype.h [C++]: Define functions without name mangling.
28669         * lib/fwriteerror.h [C++]: Likewise.
28670         * lib/gcd.h [C++]: Likewise.
28671         * lib/linebreak.h [C++]: Likewise.
28672
28673 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
28674
28675         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
28676         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
28677         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
28678         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
28679         Check for functions and headers just once.
28680         Check for declaration of canonicalize_file_name.
28681         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
28682
28683 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
28684
28685         * gnulib-tool (func_import): Fix typo in actioncmd.
28686
28687 2006-11-02  Bruno Haible  <bruno@clisp.org>
28688
28689         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
28690         newline sequence in the Makefile.am snippet as a space, like "make"
28691         does.
28692         Reported by Roger Persson <perrog@gmail.com>.
28693
28694 2006-11-01  Bruno Haible  <bruno@clisp.org>
28695
28696         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
28697         already declared in <string.h>.
28698         * lib/strcase.h (strncasecmp): Don't declare it if yes.
28699
28700 2006-11-01  Bruno Haible  <bruno@clisp.org>
28701
28702         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
28703         * lib/strcase.h: Include <string.h>.
28704         (strcasecmp): Define to rpl_strcasecmp here.
28705
28706 2006-11-01  Bruno Haible  <bruno@clisp.org>
28707
28708         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
28709
28710 2006-11-01  Eric Blake  <ebb9@byu.net>
28711
28712         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
28713
28714         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
28715
28716 2006-10-29  Bruno Haible  <bruno@clisp.org>
28717
28718         Make it compile in C++ mode.
28719         * lib/full-write.c (full_rw): Add a cast.
28720
28721 2006-11-01  Bruno Haible  <bruno@clisp.org>
28722
28723         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
28724         be POSIX compliant.
28725         Reported by Roger Persson <perrog@gmail.com>.
28726
28727 2006-11-01  Eric Blake  <ebb9@byu.net>
28728
28729         * lib/getopt_.h: Fix comments.
28730
28731 2006-10-31  Eric Blake  <ebb9@byu.net>
28732
28733         * modules/tmpdir (Depends-on): Add sys_stat.
28734         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
28735         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
28736         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
28737         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
28738         tempname.
28739
28740 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
28741
28742         Avoid some C++ diagnostics reported by Bruno Haible.
28743         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
28744         xmalloc.
28745         (quotearg_alloc): Use xcharalloc rather than xmalloc.
28746         (struct slotvec): Move to top level.
28747         (quotearg_n_options): Rewrite to avoid xmalloc.
28748         * lib/xalloc.h (xcharalloc): New function.
28749         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
28750         [defined __cplusplus]: Add function template that provides result
28751         type propagation.  This part of the change is from Bruno Haible.
28752
28753 2006-10-29  Bruno Haible  <bruno@clisp.org>
28754
28755         Make it compile in C++ mode.
28756         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
28757         * lib/strnlen1.c (strnlen1): Cast memchr result.
28758         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
28759         * lib/clean-temp.c (string_equals, string_hash): Add casts.
28760         (create_temp_dir): Rename local variable 'template'.
28761         (compile_csharp_using_sscli): Add cast.
28762         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
28763         * lib/findprog.c (find_in_path): Likewise.
28764         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
28765         * lib/wait-process.c (register_slave_subprocess): Likewise.
28766
28767 2006-10-22  Bruno Haible  <bruno@clisp.org>
28768
28769         * modules/tsearch: New file.
28770         * lib/tsearch.h: New file.
28771         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
28772         * m4/tsearch.m4: New file.
28773         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
28774
28775 2006-10-29  Eric Blake  <ebb9@byu.net>
28776
28777         * lib/arcfour.c: Assume config.h.
28778         * lib/arctwo.c: Likewise.
28779         * lib/base64.c: Likewise.
28780         * lib/check-version.c: Likewise.
28781         * lib/crc.c: Likewise.
28782         * lib/des.c: Likewise.
28783         * lib/gc-gnulib.c: Likewise.
28784         * lib/gc-libgcrypt.c: Likewise.
28785         * lib/gc-pbkdf2-sha1.c: Likewise.
28786         * lib/getaddrinfo.c: Likewise.
28787         * lib/getdelim.c: Likewise.
28788         * lib/getline.c: Likewise.
28789         * lib/hmac-md5.c: Likewise.
28790         * lib/hmac-sha1.c: Likewise.
28791         * lib/iconvme.c: Likewise.
28792         * lib/md2.c: Likewise.
28793         * lib/md4.c: Likewise.
28794         * lib/memxor.c: Likewise.
28795         * lib/read-file.c: Likewise.
28796         * lib/readline.c: Likewise.
28797         * lib/rijndael-alg-fst.c: Likewise.
28798         * lib/rijndael-api-fst.c: Likewise.
28799         * lib/xgetdomainname.c: Likewise.
28800
28801 2006-10-28  Eric Blake  <ebb9@byu.net>
28802
28803         * lib/xstrndup.c: Assume config.h.
28804
28805 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
28806
28807         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
28808         stat-macros.h is now for our own macros, whereas stat_h is for
28809         macros in the <sys/stat.h> name space.
28810         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
28811         (STAT_MACROS_H): Remove.
28812         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
28813         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
28814         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
28815         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
28816         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
28817         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
28818         Move these macros to ...
28819         * lib/stat_.h: here.  Don't include stat-macros.h.
28820         * lib/canonicalize.c: Don't include stat-macros.h.
28821         * lib/chown.c: Likewise.
28822         * lib/euidaccess.c: Likewise.
28823         * lib/file-type.c: Likewise.
28824         * lib/filemode.c: Likewise.
28825         * lib/glob.c: Likewise.
28826         * lib/isapipe.c: Likewise.
28827         * lib/lchown.c: Likewise.
28828         * lib/lstat.c: Likewise.
28829         * lib/mkdir-p.c: Likewise.
28830         * lib/rmdir.c: Likewise.
28831         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
28832         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
28833         unless mkdir isn't declared, to speed up 'configure'.
28834         Always create sys/stat.h, since it's unlikely any real sys/stat.h
28835         would define all the S_* symbols.
28836         * modules/canonicalize (Depends-on):
28837         Depend on sys_stat, not stat-macros.
28838         * modules/chown: Likewise.
28839         * modules/euidaccess: Likewise.
28840         * modules/filemode: Likewise.
28841         * modules/file-type: Likewise.
28842         * modules/glob: Likewise.
28843         * modules/isapipe: Likewise.
28844         * modules/lchown: Likewise.
28845         * modules/lstat: Likewise.
28846         * modules/mkancesdirs: Likewise.
28847         * modules/rmdir: Likewise.
28848         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
28849         * modules/modechange: Likewise.
28850         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
28851         (configure.ac): Remove gl_STAT_MACROS.
28852         * modules/sys_stat (Depends-on): Remove stat-macros.
28853
28854 2006-10-27  Bruno Haible  <bruno@clisp.org>
28855
28856         * m4/signed.m4: Remove file.
28857         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
28858         invocation.
28859         * modules/vasnprintf (Files): Remove m4/signed.m4.
28860
28861 2006-10-27  Bruno Haible  <bruno@clisp.org>
28862
28863         Update to GNU gettext 0.16.
28864         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
28865         m4/inttypes-h.m4, m4/signed.m4.
28866         * m4/gettext.m4: Update to GNU gettext 0.16.
28867         * m4/intl.m4: New file, from GNU gettext.
28868         * m4/intldir.m4: New file, from GNU gettext.
28869         * config/srclist.txt: Update
28870
28871 2006-10-27  Eric Blake  <ebb9@byu.net>
28872
28873         * MODULES.html.sh: Document tempname.
28874         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
28875         dependencies.
28876         (Files): Move lib/tempname.c...
28877         * modules/tempname: ...to this new module.
28878         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
28879         (gl_PREREQ_TEMPNAME): Move...
28880         * m4/tempname.m4: ...to this new file.
28881         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
28882         * modules/sys_stat (Depends-on): Add stat-macros.
28883         * lib/stat_.h (includes): Pick up stat macros.
28884         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
28885         if stat macros are broken.
28886         * lib/tempname.c (includes): No need to include "stat-macros.h".
28887         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
28888         (direxists, __path_search) [!_LIBC]: Don't compile these in
28889         gnulib; the tmpdir module covers that.
28890         * lib/tempname.h: New file.
28891
28892 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
28893
28894         * COPYING: Explain how gnulib-tool converts licence headers.
28895         Almost all wording by Eric Blake.
28896
28897 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
28898
28899         * lib/mbchar.h (is_basic_table): Make read-only.
28900         * lib/mbchar.c (is_basic_table): Likewise.
28901         Reported by John Darrington.
28902
28903 2006-10-25  Bruno Haible  <bruno@clisp.org>
28904
28905         * lib/progname.h (set_program_name): Undefine before defining.
28906
28907 2006-10-25  Bruno Haible  <bruno@clisp.org>
28908
28909         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
28910         false for non-gcc C++ compilers.
28911         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
28912
28913 2006-10-24  Bruno Haible  <bruno@clisp.org>
28914
28915         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
28916         iconv implementations like Irix iconv.
28917
28918 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
28919
28920         * modules/vararrays: New file.
28921         * m4/vararrays.m4: New file, taken from diffutils.
28922         * MODULES.html.sh: New module vararrays.
28923
28924 2006-10-24  Karl Berry  <karl@gnu.org>
28925
28926         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
28927         Don't call GNU Unix.
28928
28929 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28930
28931         * users.txt: Add Libtool.
28932
28933         Sync from Libtool:
28934
28935         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
28936
28937         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
28938         to gnulib's policy of including config.h unconditionally.
28939
28940 2006-10-24  Bruno Haible  <bruno@clisp.org>
28941
28942         * modules/wcwidth (Files): Add m4/wint_t.m4.
28943         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
28944         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
28945
28946 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
28947
28948         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
28949         to pacify GCC with some -W flags enabled.  Problem reported by
28950         Bruno Haible.
28951
28952 2006-10-24  Jim Meyering  <jim@meyering.net>
28953
28954         * MODULES.html.sh: Remove uinttostr.  It's not a module.
28955         Reported by Karl Berry.
28956
28957 2006-10-23  Bruno Haible  <bruno@clisp.org>
28958
28959         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
28960
28961 2006-10-24  Bruno Haible  <bruno@clisp.org>
28962
28963         * lib/gl_list.h: Use C comment style, not C++ comment style.
28964
28965 2006-10-23  Eric Blake  <ebb9@byu.net>
28966
28967         * lib/getaddrinfo.c (includes): Add missing include.
28968
28969 2006-10-23  Bruno Haible  <bruno@clisp.org>
28970             Paul Eggert  <eggert@cs.ucla.edu>
28971
28972         Ability to rename obstack_free.
28973         * lib/obstack.h (__obstack_free): New macro. Declare instead of
28974         obstack_free.
28975         (obstack_free): Invoke the __obstack_free macro.
28976         * lib/obstack.c (obstack_free): Use __obstack_free macro.
28977
28978 2006-10-23  Bruno Haible  <bruno@clisp.org>
28979             Paul Eggert  <eggert@cs.ucla.edu>
28980
28981         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
28982         __argc, __argv from the declaration. (They are defined as macros on
28983         mingw.)
28984
28985 2006-10-22  Bruno Haible  <bruno@clisp.org>
28986
28987         * doc/gnulib-intro.texi: New file.
28988         * doc/gnulib.texi: Include it.
28989
28990 2006-10-21  Bruno Haible  <bruno@clisp.org>
28991
28992         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
28993         "Introduction", "Miscellanous Notes", "Particular Modules".
28994
28995 2006-10-21  Bruno Haible  <bruno@clisp.org>
28996
28997         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
28998         Change mostlyclean-local rule to avoid sh syntax error from bash
28999         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
29000
29001 2006-10-23  Jim Meyering  <jim@meyering.net>
29002
29003         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
29004         in place of snprintf.
29005
29006         * modules/inttostr (Files): Add lib/uinttostr.c.
29007         * lib/uinttostr.c (inttostr): New file/function.
29008         * lib/inttostr.h (uinttostr): Declare.
29009         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
29010         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
29011         Add uinttostr.
29012         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
29013
29014 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
29015
29016         * lib/canonicalize.c (ELOOP): Define if not already defined.
29017         Problem reported by Bruno Haible in
29018         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
29019
29020 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
29021
29022         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
29023         Problem reported by Perry Smith and Ville Laurikari.
29024
29025         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
29026         uses.
29027
29028 2006-10-19  Bruno Haible  <bruno@clisp.org>
29029
29030         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
29031         for mingw.
29032
29033 2006-10-19  Bruno Haible  <bruno@clisp.org>
29034
29035         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
29036         Needed for mingw.
29037
29038 2006-10-19  Bruno Haible  <bruno@clisp.org>
29039
29040         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
29041
29042 2006-10-19  Bruno Haible  <bruno@clisp.org>
29043
29044         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
29045         it.
29046
29047 2006-10-19  Bruno Haible  <bruno@clisp.org>
29048
29049         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
29050         invocation.
29051
29052 2006-10-19  Bruno Haible  <bruno@clisp.org>
29053
29054         * gnulib-tool (func_create_testdir): Don't include ftruncate and
29055         mountlist by default.
29056
29057 2006-10-16  Bruno Haible  <bruno@clisp.org>
29058
29059         * lib/c-strstr.c: Include c-strstr.h.
29060
29061 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
29062
29063         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
29064         in a slash.
29065
29066 2006-10-18  Bruno Haible  <bruno@clisp.org>
29067
29068         * lib/lock.h [C++]: Wrap definitions in extern "C".
29069
29070 2006-10-18  Bruno Haible  <bruno@clisp.org>
29071
29072         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
29073         gl_LIBOBJS list.
29074
29075 2006-10-18  Bruno Haible  <bruno@clisp.org>
29076
29077         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
29078
29079 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
29080
29081         * lib/xstrtol.h: Include gettext.h.
29082         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
29083         Problem reported by Eric Blake.
29084         * modules/xstrtol (Depends-on): Add gettext-h.
29085
29086 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
29087
29088         * lib/strftime.c (advance): New macro.
29089         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
29090         incomplete type, so you can't add 0 to it.  Problem and patch
29091         reported by Eelco Dolstra for dietlibc.
29092
29093 2006-10-18  Jim Meyering  <jim@meyering.net>
29094
29095         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
29096         type for a local, and rename it: s/up/user_proc/.
29097
29098 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
29099
29100         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
29101         READ_UTMP_USER_PROCESS.
29102         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
29103
29104 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29105
29106         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
29107         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
29108
29109 2006-10-17  Eric Blake  <ebb9@byu.net>
29110
29111         * lib/sigprocmask.c (sigprocmask): Fix typo.
29112
29113         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
29114
29115         * modules/clean-temp (Makefile.am): Don't add to make output...
29116         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
29117         config.h.
29118
29119 2006-10-17  Bruno Haible  <bruno@clisp.org>
29120
29121         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
29122         differently if DEFAULT_TEXT_DOMAIN is set.
29123
29124 2006-10-16  Bruno Haible  <bruno@clisp.org>
29125
29126         * lib/clean-temp.c: Include fwriteerror.h.
29127
29128 2006-10-16  Bruno Haible  <bruno@clisp.org>
29129
29130         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
29131
29132 2006-10-16  Bruno Haible  <bruno@clisp.org>
29133
29134         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
29135         * lib/sigprocmask.h: Include <sys/types.h>.
29136         (sigset_t): Use the system's definition if present.
29137
29138 2006-10-17  Eric Blake  <ebb9@byu.net>
29139
29140         * lib/xvasprintf.c (includes): Assume config.h.
29141         * lib/xasprintf.c (includes): Likewise.
29142
29143 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
29144
29145         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
29146         at least as wide as intmax_t.
29147
29148 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
29149
29150         (Imported from Automake.)
29151         * build-aux/gnupload: Update to version 1.1 of directive file.
29152
29153 2006-10-16  Eric Blake  <ebb9@byu.net>
29154
29155         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
29156         match Automake 1.10a.
29157
29158 2006-10-14  Bruno Haible  <bruno@clisp.org>
29159
29160         * modules/sigprocmask: New file.
29161         * lib/sigprocmask.h: New file.
29162         * lib/sigprocmask.c: New file.
29163         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
29164         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
29165         request sigprocmask.o.
29166         (gl_PREREQ_SIGPROCMASK): New macro.
29167         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
29168         (Depends-on): Add sigprocmask.
29169         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
29170         gt_SIGNALBLOCKING. Test for 'raise' only once.
29171         * lib/fatal-signal.c: Include sigprocmask.h.
29172         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
29173         unblock_fatal_signals): Define always.
29174         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29175         sigprocmask.
29176
29177 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
29178
29179         Sync from Automake.
29180         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
29181         which incorrectly sets the mode of an existing destination
29182         directory.  In some cases the unpatched install-sh could do the
29183         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
29184         system.  We hope this is rare in practice, but it's clearly worth
29185         fixing.  Problem reported by Alex Unleashed in
29186         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
29187         Also, don't bother to check for -m bugs unless we're using -m;
29188         suggested by Stepan Kasal.
29189
29190 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29191
29192         Sync from Automake.
29193         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
29194         `-c' flag, so they appear at the same position as in %FASTDEP%
29195         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
29196         which ignores unknown options only after the first non-option.
29197         Bug report against M4 by Nelson H. F. Beebe.
29198
29199 2006-10-13  Jim Meyering  <jim@meyering.net>
29200
29201         Fix a bug in yesterday's change.
29202         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
29203         p->fts_statp->st_dev would be used uninitialized.
29204         Ensures that we always call fts_stat on the very first entry.
29205         Miklos Szeredi reported that find -xdev stopped working.
29206
29207 2006-10-12  Bruno Haible  <bruno@clisp.org>
29208
29209         * gnulib-tool (func_get_automake_snippet): Append an automatically
29210         computed EXTRA_DIST augmentation.
29211         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
29212         * modules/alloca-opt (Makefile.am): Likewise.
29213         * modules/allocsa (Makefile.am): Likewise.
29214         * modules/arcfour (Makefile.am): Likewise.
29215         * modules/arctwo (Makefile.am): Likewise.
29216         * modules/argmatch (Makefile.am): Likewise.
29217         * modules/argz (Makefile.am): Likewise.
29218         * modules/atexit (Makefile.am): Likewise.
29219         * modules/backupfile (Makefile.am): Likewise.
29220         * modules/byteswap (Makefile.am): Likewise.
29221         * modules/c-strtod (Makefile.am): Likewise.
29222         * modules/c-strtold (Makefile.am): Likewise.
29223         * modules/calloc (Makefile.am): Likewise.
29224         * modules/canon-host (Makefile.am): Likewise.
29225         * modules/canonicalize (Makefile.am): Likewise.
29226         * modules/chdir-long (Makefile.am): Likewise.
29227         * modules/chdir-safer (Makefile.am): Likewise.
29228         * modules/check-version (Makefile.am): Likewise.
29229         * modules/chown (Makefile.am): Likewise.
29230         * modules/cloexec (Makefile.am): Likewise.
29231         * modules/close-stream (Makefile.am): Likewise.
29232         * modules/closeout (Makefile.am): Likewise.
29233         * modules/crc (Makefile.am): Likewise.
29234         * modules/csharpexec (Makefile.am): Likewise.
29235         * modules/cycle-check (Makefile.am): Likewise.
29236         * modules/des (Makefile.am): Likewise.
29237         * modules/dev-ino (Makefile.am): Likewise.
29238         * modules/dirfd (Makefile.am): Likewise.
29239         * modules/dirname (Makefile.am): Likewise.
29240         * modules/dup2 (Makefile.am): Likewise.
29241         * modules/eealloc (Makefile.am): Likewise.
29242         * modules/error (Makefile.am): Likewise.
29243         * modules/euidaccess (Makefile.am): Likewise.
29244         * modules/exclude (Makefile.am): Likewise.
29245         * modules/exitfail (Makefile.am): Likewise.
29246         * modules/fcntl-safer (Makefile.am): Likewise.
29247         * modules/fcntl (Makefile.am): Likewise.
29248         * modules/file-type (Makefile.am): Likewise.
29249         * modules/fileblocks (Makefile.am): Likewise.
29250         * modules/filemode (Makefile.am): Likewise.
29251         * modules/filenamecat (Makefile.am): Likewise.
29252         * modules/fnmatch (Makefile.am): Likewise.
29253         * modules/fopen-safer (Makefile.am): Likewise.
29254         * modules/fpending (Makefile.am): Likewise.
29255         * modules/fprintftime (Makefile.am): Likewise.
29256         * modules/free (Makefile.am): Likewise.
29257         * modules/fsusage (Makefile.am): Likewise.
29258         * modules/ftruncate (Makefile.am): Likewise.
29259         * modules/fts (Makefile.am): Likewise.
29260         * modules/gc-arcfour (Makefile.am): Likewise.
29261         * modules/gc-des (Makefile.am): Likewise.
29262         * modules/gc-hmac-md5 (Makefile.am): Likewise.
29263         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
29264         * modules/gc-md4 (Makefile.am): Likewise.
29265         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
29266         * modules/gc-sha1 (Makefile.am): Likewise.
29267         * modules/gc (Makefile.am): Likewise.
29268         * modules/getaddrinfo (Makefile.am): Likewise.
29269         * modules/getcwd (Makefile.am): Likewise.
29270         * modules/getdelim (Makefile.am): Likewise.
29271         * modules/getdomainname (Makefile.am): Likewise.
29272         * modules/getgroups (Makefile.am): Likewise.
29273         * modules/gethostname (Makefile.am): Likewise.
29274         * modules/gethrxtime (Makefile.am): Likewise.
29275         * modules/getline (Makefile.am): Likewise.
29276         * modules/getloadavg (Makefile.am): Likewise.
29277         * modules/getlogin_r (Makefile.am): Likewise.
29278         * modules/getndelim2 (Makefile.am): Likewise.
29279         * modules/getopt (Makefile.am): Likewise.
29280         * modules/getpagesize (Makefile.am): Likewise.
29281         * modules/getpass-gnu (Makefile.am): Likewise.
29282         * modules/getpass (Makefile.am): Likewise.
29283         * modules/getsubopt (Makefile.am): Likewise.
29284         * modules/gettime (Makefile.am): Likewise.
29285         * modules/gettimeofday (Makefile.am): Likewise.
29286         * modules/getugroups (Makefile.am): Likewise.
29287         * modules/getusershell (Makefile.am): Likewise.
29288         * modules/glob (Makefile.am): Likewise.
29289         * modules/group-member (Makefile.am): Likewise.
29290         * modules/hard-locale (Makefile.am): Likewise.
29291         * modules/hash (Makefile.am): Likewise.
29292         * modules/hmac-md5 (Makefile.am): Likewise.
29293         * modules/hmac-sha1 (Makefile.am): Likewise.
29294         * modules/human (Makefile.am): Likewise.
29295         * modules/idcache (Makefile.am): Likewise.
29296         * modules/imaxabs (Makefile.am): Likewise.
29297         * modules/imaxdiv (Makefile.am): Likewise.
29298         * modules/inet_ntop (Makefile.am): Likewise.
29299         * modules/inet_pton (Makefile.am): Likewise.
29300         * modules/intprops (Makefile.am): Likewise.
29301         * modules/inttostr (Makefile.am): Likewise.
29302         * modules/inttypes (Makefile.am): Likewise.
29303         * modules/isapipe (Makefile.am): Likewise.
29304         * modules/javaversion (Makefile.am): Likewise.
29305         * modules/lchmod (Makefile.am): Likewise.
29306         * modules/lchown (Makefile.am): Likewise.
29307         * modules/localcharset (Makefile.am): Likewise.
29308         * modules/long-options (Makefile.am): Likewise.
29309         * modules/lstat (Makefile.am): Likewise.
29310         * modules/malloc (Makefile.am): Likewise.
29311         * modules/mathl (Makefile.am): Likewise.
29312         * modules/mbchar (Makefile.am): Likewise.
29313         * modules/md2 (Makefile.am): Likewise.
29314         * modules/md4 (Makefile.am): Likewise.
29315         * modules/md5 (Makefile.am): Likewise.
29316         * modules/memcasecmp (Makefile.am): Likewise.
29317         * modules/memchr (Makefile.am): Likewise.
29318         * modules/memcmp (Makefile.am): Likewise.
29319         * modules/memcoll (Makefile.am): Likewise.
29320         * modules/memcpy (Makefile.am): Likewise.
29321         * modules/memmem (Makefile.am): Likewise.
29322         * modules/memmove (Makefile.am): Likewise.
29323         * modules/mempcpy (Makefile.am): Likewise.
29324         * modules/memrchr (Makefile.am): Likewise.
29325         * modules/memset (Makefile.am): Likewise.
29326         * modules/memxor (Makefile.am): Likewise.
29327         * modules/mkancesdirs (Makefile.am): Likewise.
29328         * modules/mkdir-p (Makefile.am): Likewise.
29329         * modules/mkdir (Makefile.am): Likewise.
29330         * modules/mkdtemp (Makefile.am): Likewise.
29331         * modules/mkstemp (Makefile.am): Likewise.
29332         * modules/mktime (Makefile.am): Likewise.
29333         * modules/modechange (Makefile.am): Likewise.
29334         * modules/mountlist (Makefile.am): Likewise.
29335         * modules/nanosleep (Makefile.am): Likewise.
29336         * modules/obstack (Makefile.am): Likewise.
29337         * modules/openat (Makefile.am): Likewise.
29338         * modules/pagealign_alloc (Makefile.am): Likewise.
29339         * modules/pathmax (Makefile.am): Likewise.
29340         * modules/physmem (Makefile.am): Likewise.
29341         * modules/poll (Makefile.am): Likewise.
29342         * modules/posixtm (Makefile.am): Likewise.
29343         * modules/posixver (Makefile.am): Likewise.
29344         * modules/putenv (Makefile.am): Likewise.
29345         * modules/quote (Makefile.am): Likewise.
29346         * modules/quotearg (Makefile.am): Likewise.
29347         * modules/raise (Makefile.am): Likewise.
29348         * modules/read-file (Makefile.am): Likewise.
29349         * modules/readline (Makefile.am): Likewise.
29350         * modules/readlink (Makefile.am): Likewise.
29351         * modules/readtokens (Makefile.am): Likewise.
29352         * modules/readutmp (Makefile.am): Likewise.
29353         * modules/realloc (Makefile.am): Likewise.
29354         * modules/regex (Makefile.am): Likewise.
29355         * modules/rename-dest-slash (Makefile.am): Likewise.
29356         * modules/rename (Makefile.am): Likewise.
29357         * modules/rijndael (Makefile.am): Likewise.
29358         * modules/rmdir (Makefile.am): Likewise.
29359         * modules/rpmatch (Makefile.am): Likewise.
29360         * modules/safe-read (Makefile.am): Likewise.
29361         * modules/safe-write (Makefile.am): Likewise.
29362         * modules/same-inode (Makefile.am): Likewise.
29363         * modules/same (Makefile.am): Likewise.
29364         * modules/save-cwd (Makefile.am): Likewise.
29365         * modules/savedir (Makefile.am): Likewise.
29366         * modules/setenv (Makefile.am): Likewise.
29367         * modules/settime (Makefile.am): Likewise.
29368         * modules/sha1 (Makefile.am): Likewise.
29369         * modules/sig2str (Makefile.am): Likewise.
29370         * modules/snprintf (Makefile.am): Likewise.
29371         * modules/stat-macros (Makefile.am): Likewise.
29372         * modules/stat-time (Makefile.am): Likewise.
29373         * modules/stdbool (Makefile.am): Likewise.
29374         * modules/stdint (Makefile.am): Likewise.
29375         * modules/stdlib-safer (Makefile.am): Likewise.
29376         * modules/stpcpy (Makefile.am): Likewise.
29377         * modules/stpncpy (Makefile.am): Likewise.
29378         * modules/strcase (Makefile.am): Likewise.
29379         * modules/strcasestr (Makefile.am): Likewise.
29380         * modules/strchrnul (Makefile.am): Likewise.
29381         * modules/strcspn (Makefile.am): Likewise.
29382         * modules/strdup (Makefile.am): Likewise.
29383         * modules/strerror (Makefile.am): Likewise.
29384         * modules/strftime (Makefile.am): Likewise.
29385         * modules/strndup (Makefile.am): Likewise.
29386         * modules/strnlen (Makefile.am): Likewise.
29387         * modules/strpbrk (Makefile.am): Likewise.
29388         * modules/strsep (Makefile.am): Likewise.
29389         * modules/strstr (Makefile.am): Likewise.
29390         * modules/strtod (Makefile.am): Likewise.
29391         * modules/strtoimax (Makefile.am): Likewise.
29392         * modules/strtok_r (Makefile.am): Likewise.
29393         * modules/strtol (Makefile.am): Likewise.
29394         * modules/strtoll (Makefile.am): Likewise.
29395         * modules/strtoul (Makefile.am): Likewise.
29396         * modules/strtoull (Makefile.am): Likewise.
29397         * modules/strtoumax (Makefile.am): Likewise.
29398         * modules/strverscmp (Makefile.am): Likewise.
29399         * modules/sys_socket (Makefile.am): Likewise.
29400         * modules/sys_stat (Makefile.am): Likewise.
29401         * modules/sysexits (Makefile.am): Likewise.
29402         * modules/time_r (Makefile.am): Likewise.
29403         * modules/timegm (Makefile.am): Likewise.
29404         * modules/timespec (Makefile.am): Likewise.
29405         * modules/tmpfile-safer (Makefile.am): Likewise.
29406         * modules/trim (Makefile.am): Likewise.
29407         * modules/unistd-safer (Makefile.am): Likewise.
29408         * modules/unlinkdir (Makefile.am): Likewise.
29409         * modules/unlocked-io (Makefile.am): Likewise.
29410         * modules/userspec (Makefile.am): Likewise.
29411         * modules/utime (Makefile.am): Likewise.
29412         * modules/utimecmp (Makefile.am): Likewise.
29413         * modules/utimens (Makefile.am): Likewise.
29414         * modules/vasnprintf (Makefile.am): Likewise.
29415         * modules/vasprintf (Makefile.am): Likewise.
29416         * modules/vsnprintf (Makefile.am): Likewise.
29417         * modules/xalloc (Makefile.am): Likewise.
29418         * modules/xgetcwd (Makefile.am): Likewise.
29419         * modules/xnanosleep (Makefile.am): Likewise.
29420         * modules/xreadlink (Makefile.am): Likewise.
29421         * modules/xstrtod (Makefile.am): Likewise.
29422         * modules/xstrtol (Makefile.am): Likewise.
29423         * modules/xstrtold (Makefile.am): Likewise.
29424         * modules/yesno (Makefile.am): Likewise.
29425         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
29426
29427 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
29428
29429         * modules/error (Makefile.am): Distribute files through
29430         EXTRA_DIST, not lib_SOURCES.
29431
29432 2006-10-12  Eric Blake  <ebb9@byu.net>
29433
29434         * modules/error (Makefile.am): Distribute files in /lib.
29435         * modules/obstack (Makefile.am): Likewise.
29436
29437 2006-10-12  Bruno Haible  <bruno@clisp.org>
29438
29439         * modules/acl (Makefile.am): Distribute all files in lib/ through
29440         EXTRA_DIST.
29441         * modules/arcfour (Makefile.am): Likewise.
29442         * modules/arctwo (Makefile.am): Likewise.
29443         * modules/argmatch (Makefile.am): Likewise.
29444         * modules/argz (Makefile.am): Likewise.
29445         * modules/atexit (Makefile.am): Likewise.
29446         * modules/backupfile (Makefile.am): Likewise.
29447         * modules/c-strtod (Makefile.am): Likewise.
29448         * modules/c-strtold (Makefile.am): Likewise.
29449         * modules/calloc (Makefile.am): Likewise.
29450         * modules/canon-host (Makefile.am): Likewise.
29451         * modules/canonicalize (Makefile.am): Likewise.
29452         * modules/chdir-long (Makefile.am): Likewise.
29453         * modules/chdir-safer (Makefile.am): Likewise.
29454         * modules/check-version (Makefile.am): Likewise.
29455         * modules/chown (Makefile.am): Likewise.
29456         * modules/cloexec (Makefile.am): Likewise.
29457         * modules/close-stream (Makefile.am): Likewise.
29458         * modules/closeout (Makefile.am): Likewise.
29459         * modules/crc (Makefile.am): Likewise.
29460         * modules/cycle-check (Makefile.am): Likewise.
29461         * modules/des (Makefile.am): Likewise.
29462         * modules/dirfd (Makefile.am): Likewise.
29463         * modules/dirname (Makefile.am): Likewise.
29464         * modules/dup2 (Makefile.am): Likewise.
29465         * modules/euidaccess (Makefile.am): Likewise.
29466         * modules/exclude (Makefile.am): Likewise.
29467         * modules/exitfail (Makefile.am): Likewise.
29468         * modules/fcntl-safer (Makefile.am): Likewise.
29469         * modules/file-type (Makefile.am): Likewise.
29470         * modules/fileblocks (Makefile.am): Likewise.
29471         * modules/filemode (Makefile.am): Likewise.
29472         * modules/filenamecat (Makefile.am): Likewise.
29473         * modules/fnmatch (Makefile.am): Likewise.
29474         * modules/fopen-safer (Makefile.am): Likewise.
29475         * modules/fpending (Makefile.am): Likewise.
29476         * modules/fprintftime (Makefile.am): Likewise.
29477         * modules/free (Makefile.am): Likewise.
29478         * modules/fsusage (Makefile.am): Likewise.
29479         * modules/ftruncate (Makefile.am): Likewise.
29480         * modules/fts (Makefile.am): Likewise.
29481         * modules/gc (Makefile.am): Likewise.
29482         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
29483         * modules/getaddrinfo (Makefile.am): Likewise.
29484         * modules/getcwd (Makefile.am): Likewise.
29485         * modules/getdelim (Makefile.am): Likewise.
29486         * modules/getdomainname (Makefile.am): Likewise.
29487         * modules/getgroups (Makefile.am): Likewise.
29488         * modules/gethostname (Makefile.am): Likewise.
29489         * modules/gethrxtime (Makefile.am): Likewise.
29490         * modules/getline (Makefile.am): Likewise.
29491         * modules/getloadavg (Makefile.am): Likewise.
29492         * modules/getlogin_r (Makefile.am): Likewise.
29493         * modules/getopt (Makefile.am): Likewise.
29494         * modules/getpass (Makefile.am): Likewise.
29495         * modules/getpass-gnu (Makefile.am): Likewise.
29496         * modules/getsubopt (Makefile.am): Likewise.
29497         * modules/gettime (Makefile.am): Likewise.
29498         * modules/gettimeofday (Makefile.am): Likewise.
29499         * modules/getugroups (Makefile.am): Likewise.
29500         * modules/getusershell (Makefile.am): Likewise.
29501         * modules/glob (Makefile.am): Likewise.
29502         * modules/group-member (Makefile.am): Likewise.
29503         * modules/hard-locale (Makefile.am): Likewise.
29504         * modules/hash (Makefile.am): Likewise.
29505         * modules/hmac-md5 (Makefile.am): Likewise.
29506         * modules/hmac-sha1 (Makefile.am): Likewise.
29507         * modules/human (Makefile.am): Likewise.
29508         * modules/idcache (Makefile.am): Likewise.
29509         * modules/imaxabs (Makefile.am): Likewise.
29510         * modules/imaxdiv (Makefile.am): Likewise.
29511         * modules/inet_ntop (Makefile.am): Likewise.
29512         * modules/inet_pton (Makefile.am): Likewise.
29513         * modules/inttostr (Makefile.am): Likewise.
29514         * modules/isapipe (Makefile.am): Likewise.
29515         * modules/lchown (Makefile.am): Likewise.
29516         * modules/long-options (Makefile.am): Likewise.
29517         * modules/lstat (Makefile.am): Likewise.
29518         * modules/malloc (Makefile.am): Likewise.
29519         * modules/mathl (Makefile.am): Likewise.
29520         * modules/mbchar (Makefile.am): Likewise.
29521         * modules/md2 (Makefile.am): Likewise.
29522         * modules/md4 (Makefile.am): Likewise.
29523         * modules/md5 (Makefile.am): Likewise.
29524         * modules/memcasecmp (Makefile.am): Likewise.
29525         * modules/memchr (Makefile.am): Likewise.
29526         * modules/memcmp (Makefile.am): Likewise.
29527         * modules/memcoll (Makefile.am): Likewise.
29528         * modules/memcpy (Makefile.am): Likewise.
29529         * modules/memmem (Makefile.am): Likewise.
29530         * modules/memmove (Makefile.am): Likewise.
29531         * modules/mempcpy (Makefile.am): Likewise.
29532         * modules/memrchr (Makefile.am): Likewise.
29533         * modules/memset (Makefile.am): Likewise.
29534         * modules/memxor (Makefile.am): Likewise.
29535         * modules/mkancesdirs (Makefile.am): Likewise.
29536         * modules/mkdir (Makefile.am): Likewise.
29537         * modules/mkdir-p (Makefile.am): Likewise.
29538         * modules/mkdtemp (Makefile.am): Likewise.
29539         * modules/mkstemp (Makefile.am): Likewise.
29540         * modules/mktime (Makefile.am): Likewise.
29541         * modules/modechange (Makefile.am): Likewise.
29542         * modules/mountlist (Makefile.am): Likewise.
29543         * modules/nanosleep (Makefile.am): Likewise.
29544         * modules/openat (Makefile.am): Likewise.
29545         * modules/pagealign_alloc (Makefile.am): Likewise.
29546         * modules/physmem (Makefile.am): Likewise.
29547         * modules/poll (Makefile.am): Likewise.
29548         * modules/posixtm (Makefile.am): Likewise.
29549         * modules/posixver (Makefile.am): Likewise.
29550         * modules/putenv (Makefile.am): Likewise.
29551         * modules/quote (Makefile.am): Likewise.
29552         * modules/quotearg (Makefile.am): Likewise.
29553         * modules/raise (Makefile.am): Likewise.
29554         * modules/read-file (Makefile.am): Likewise.
29555         * modules/readline (Makefile.am): Likewise.
29556         * modules/readlink (Makefile.am): Likewise.
29557         * modules/readtokens (Makefile.am): Likewise.
29558         * modules/readutmp (Makefile.am): Likewise.
29559         * modules/realloc (Makefile.am): Likewise.
29560         * modules/regex (Makefile.am): Likewise.
29561         * modules/rename (Makefile.am): Likewise.
29562         * modules/rename-dest-slash (Makefile.am): Likewise.
29563         * modules/rijndael (Makefile.am): Likewise.
29564         * modules/rmdir (Makefile.am): Likewise.
29565         * modules/rpmatch (Makefile.am): Likewise.
29566         * modules/safe-read (Makefile.am): Likewise.
29567         * modules/safe-write (Makefile.am): Likewise.
29568         * modules/same (Makefile.am): Likewise.
29569         * modules/save-cwd (Makefile.am): Likewise.
29570         * modules/savedir (Makefile.am): Likewise.
29571         * modules/setenv (Makefile.am): Likewise.
29572         * modules/settime (Makefile.am): Likewise.
29573         * modules/sha1 (Makefile.am): Likewise.
29574         * modules/sig2str (Makefile.am): Likewise.
29575         * modules/snprintf (Makefile.am): Likewise.
29576         * modules/stdlib-safer (Makefile.am): Likewise.
29577         * modules/stpcpy (Makefile.am): Likewise.
29578         * modules/stpncpy (Makefile.am): Likewise.
29579         * modules/strcase (Makefile.am): Likewise.
29580         * modules/strcasestr (Makefile.am): Likewise.
29581         * modules/strchrnul (Makefile.am): Likewise.
29582         * modules/strcspn (Makefile.am): Likewise.
29583         * modules/strdup (Makefile.am): Likewise.
29584         * modules/strerror (Makefile.am): Likewise.
29585         * modules/strftime (Makefile.am): Likewise.
29586         * modules/strndup (Makefile.am): Likewise.
29587         * modules/strnlen (Makefile.am): Likewise.
29588         * modules/strpbrk (Makefile.am): Likewise.
29589         * modules/strsep (Makefile.am): Likewise.
29590         * modules/strstr (Makefile.am): Likewise.
29591         * modules/strtod (Makefile.am): Likewise.
29592         * modules/strtoimax (Makefile.am): Likewise.
29593         * modules/strtok_r (Makefile.am): Likewise.
29594         * modules/strtol (Makefile.am): Likewise.
29595         * modules/strtoll (Makefile.am): Likewise.
29596         * modules/strtoul (Makefile.am): Likewise.
29597         * modules/strtoull (Makefile.am): Likewise.
29598         * modules/strtoumax (Makefile.am): Likewise.
29599         * modules/strverscmp (Makefile.am): Likewise.
29600         * modules/time_r (Makefile.am): Likewise.
29601         * modules/timegm (Makefile.am): Likewise.
29602         * modules/tmpfile-safer (Makefile.am): Likewise.
29603         * modules/unistd-safer (Makefile.am): Likewise.
29604         * modules/unlinkdir (Makefile.am): Likewise.
29605         * modules/userspec (Makefile.am): Likewise.
29606         * modules/utime (Makefile.am): Likewise.
29607         * modules/utimecmp (Makefile.am): Likewise.
29608         * modules/utimens (Makefile.am): Likewise.
29609         * modules/vasnprintf (Makefile.am): Likewise.
29610         * modules/vasprintf (Makefile.am): Likewise.
29611         * modules/vsnprintf (Makefile.am): Likewise.
29612         * modules/xalloc (Makefile.am): Likewise.
29613         * modules/xgetcwd (Makefile.am): Likewise.
29614         * modules/xnanosleep (Makefile.am): Likewise.
29615         * modules/xreadlink (Makefile.am): Likewise.
29616         * modules/xstrtod (Makefile.am): Likewise.
29617         * modules/xstrtol (Makefile.am): Likewise.
29618         * modules/xstrtold (Makefile.am): Likewise.
29619         * modules/yesno (Makefile.am): Likewise.
29620
29621 2006-10-12  Jim Meyering  <jim@meyering.net>
29622
29623         * m4/getloadavg.m4: Revert the change below.
29624
29625         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
29626         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
29627         fail with a symlink, which is what coreutils' ./bootstrap now
29628         creates by default.
29629
29630 2006-10-12  Bruno Haible  <bruno@clisp.org>
29631
29632         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
29633         mingw.
29634         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
29635         MSVC and mingw explicitly.
29636
29637 2006-10-11  Simon Josefsson  <jas@extundo.com>
29638             Bruno Haible  <bruno@clisp.org>
29639
29640         Add support for multiple gnulib-tool invocations in the scope of a
29641         single configure.ac file.
29642         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
29643         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
29644         with the same contents as the _LIBADD variable.
29645         (func_emit_initmacro_start, func_emit_initmacro_end,
29646         func_emit_initmacro_done): New functions.
29647         (func_import, func_create_testdir): Invoke them. Allow the identifiers
29648         gl_LIBOBJS and gl_LTLIBOBJS.
29649
29650 2006-10-11  Bruno Haible  <bruno@clisp.org>
29651
29652         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
29653         (func_create_testdir): Don't create po/Makefile.am, don't invoke
29654         autoreconf. Instead, invoke autopoint explicitly but move back the
29655         *.m4 files from gnulib.
29656
29657 2006-10-11  Bruno Haible  <bruno@clisp.org>
29658
29659         * gnulib-tool (func_usage): Make module names after --create-testdir
29660         optional.
29661         (func_create_testdir): If no module was specified, use nearly all
29662         modules.
29663
29664 2006-10-12  Jim Meyering  <jim@meyering.net>
29665
29666         Big performance improvement for fts-based tools that use FTS_NOSTAT.
29667         Avoid spurious inode-mismatch problems on non-POSIX file systems.
29668         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
29669         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
29670         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
29671         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
29672         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
29673         (fts_set_stat_required): New function.
29674         (fts_open): Defer the calls to fts_stat, if possible or requested.
29675         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
29676         into fts_stat itself.
29677         (fts_read): Perform any required (deferred) fts_stat call.
29678         (fts_build): Likewise, for the directory we're about to open and read.
29679         In the readdir loop, carefully decide whether each entry will require
29680         an eventual call to fts_stat, using dirent.d_type info if available.
29681         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
29682         a command line argument into this function.  Update all callers.
29683         Map a return value of FTS_DOT to FTS_D for a command line argument.
29684         * modules/fts (Depends-on): Add d-type.  Alphabetize.
29685         Thanks to Miklos Szeredi for his tenacity and for the initial
29686         bug report about "find" failing on a FUSE-based file system.
29687
29688         * lib/fts.c (fts_open): Use consistent indentation.
29689
29690 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
29691
29692         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
29693         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
29694         reported by Jim Meyering.  All uses of cache variables renamed
29695         to match Autoconf's.
29696         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
29697         the other one.
29698
29699         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
29700         Fix misspelling in diagnostic.
29701
29702 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
29703
29704         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
29705         defined.  Problem reported by Matthew Woehlke.
29706
29707         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
29708         Add support for Tandem NonStop R series.
29709         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
29710         Use new macro.
29711
29712         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
29713         (has_trailing_slash): Omit size arg; all callers changed.
29714         Omit 'inline', since it doesn't help performance and we'd
29715         need to configure it.
29716         Don't count //, ///, etc. as having a trailing slash.
29717         As a side effect, this removes a C99ism reported by Matthew Woehlke.
29718         (rpl_rename_dest_slash): On failure, use rename's errno rather
29719         than (in some cases) an incorrect or junk errno.
29720         Simplify code by removing need to compute length; this does
29721         cause it to make two passes instead of one over the file name,
29722         but it's worth it.
29723
29724         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
29725         change, since Autoconf's version may no longer be appropriate now
29726         that we are using CVS Autoconf's version.  Add support for Tandem.
29727
29728 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
29729             Bruno Haible  <bruno@clisp.org>
29730
29731         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
29732         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
29733         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
29734         gl_AC_TYPE_LONG_LONG.
29735
29736         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
29737         instead of HAVE_LONG_LONG.
29738         * lib/printf-args.c (printf_fetchargs): Likewise.
29739         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
29740         * lib/vasnprintf.c (VASNPRINTF): Likewise.
29741         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
29742         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
29743         gl_AC_TYPE_LONG_LONG.
29744
29745 2006-10-11  Bruno Haible  <bruno@clisp.org>
29746
29747         * m4/longlong.m4: Add comments.
29748         * m4/ulonglong.m4: Likewise.
29749
29750 2006-10-10  Bruno Haible  <bruno@clisp.org>
29751
29752         Make it possible to #define stpcpy, strdup to aliases.
29753         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
29754         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
29755
29756 2006-10-10  Bruno Haible  <bruno@clisp.org>
29757
29758         Make it possible to #define gcd to an alias.
29759         * lib/gcd.c: Include config.h.
29760
29761 2006-10-10  Bruno Haible  <bruno@clisp.org>
29762
29763         Make it possible to #define c_isascii to an alias.
29764         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
29765         defined. Undefine the macros before defining them, to avoid gcc
29766         warnings.
29767         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
29768         define NO_C_CTYPE_MACROS early.
29769
29770 2006-10-10  Bruno Haible  <bruno@clisp.org>
29771
29772         Make it possible to #define set_program_name to an alias.
29773         * lib/progname.c: Don't undefine set_program_name; instead, undefine
29774         ENABLE_RELOCATABLE early.
29775
29776 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
29777
29778         Port to Tandem NSK OSS, which has 64-bit signed int but at most
29779         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
29780         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
29781         More generally, don't assume that 64-bit signed int is available
29782         if unsigned int is, and vice versa.
29783         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
29784         unsigned symbols, not on their signed counterparts.
29785         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
29786         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
29787         (UINT64_C, UINTMAX_C):
29788         Likewise.
29789         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
29790         unsigned counterparts.
29791         (Have_long_long, Unsigned): New macros.
29792         (Int): Renamed from INT.
29793         (strtoimax): Use the new macros.
29794         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
29795         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
29796         * modules/inttypes (inttypes.h): Substitute
29797         HAVE_UNSIGNED_LONG_LONG_INT.
29798         * modules/stdint (stdint.h): Likewise.
29799         (Files): Add m4/ulonglong.m4.
29800
29801 2006-10-10  Bruno Haible  <bruno@clisp.org>
29802
29803         Fix a gcc -Wshadow warning.
29804         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
29805         to 'bucket'.
29806         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
29807         gl_linked_indexof_from_to): Likewise.
29808         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
29809         Likewise.
29810         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
29811         Likewise.
29812         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
29813         Reported by Eric Blake.
29814
29815 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
29816
29817         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
29818         for NetBSD.  Problem reported by Bruno Haible.
29819
29820 2006-10-09  Jim Meyering  <jim@meyering.net>
29821
29822         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
29823         Patch from Bruno Haible.
29824
29825 2006-10-09  Jim Meyering  <jim@meyering.net>
29826
29827         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
29828         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
29829         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
29830
29831 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
29832
29833         Don't include <config.h> twice; this doesn't work in some cases,
29834         e.g., when config.h has "#define intmax_t long long int" and
29835         we include <config.h>, <inttypes.h>, <config.h> in that order.
29836         Problem reported by Matthew Woehlke in:
29837         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
29838         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
29839         * lib/fts-cycle.c: Don't include config.h.
29840         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
29841         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
29842         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
29843         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
29844         inttypes.h.
29845         * lib/xstrtoumax.c: Likewise.
29846         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
29847         __strtol and the like, so that this module is more like its siblings.
29848         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
29849         Remove; no longer needed now that we assume gnulib inttypes.h.
29850
29851 2006-10-08  Bruno Haible  <bruno@clisp.org>
29852
29853         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
29854         option.
29855
29856 2006-10-07  Jim Meyering  <jim@meyering.net>
29857
29858         * modules/inttypes (inttypes.h): Revert what seems to have been
29859         an inadvertent part of today's change: use "|", not "/" in the
29860         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
29861
29862 2006-10-07  Bruno Haible  <bruno@clisp.org>
29863
29864         * modules/sublist: New file.
29865
29866 2006-10-07  Bruno Haible  <bruno@clisp.org>
29867
29868         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
29869         * modules/argz (argz.h): Likewise.
29870         * modules/arpa_inet (arpa/inet.h): Likewise.
29871         * modules/byteswap (byteswap.h): Likewise.
29872         * modules/configmake (configmake.h): Likewise.
29873         * modules/fcntl (fcntl.h): Likewise.
29874         * modules/fnmatch (fnmatch.h): Likewise.
29875         * modules/getopt (getopt.h): Likewise.
29876         * modules/glob (glob.h): Likewise.
29877         * modules/inttypes (inttypes.h): Likewise.
29878         * modules/netinet_in (netinet/in.h): Likewise.
29879         * modules/poll (poll.h): Likewise.
29880         * modules/stdbool (stdbool.h): Likewise.
29881         * modules/stdint (stdint.h): Likewise.
29882         * modules/sys_select (sys/select.h): Likewise.
29883         * modules/sys_socket (sys/socket.h): Likewise.
29884         * modules/sys_stat (sys/stat.h): Likewise.
29885         * modules/sysexits (sysexits.h): Likewise.
29886         * modules/unistd (unistd.h): Likewise.
29887         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
29888         Add a "DO NOT EDIT" comment to the generated file.
29889         (func_import): Likewise for gnulib-comp.m4.
29890
29891 2006-10-07  Bruno Haible  <bruno@clisp.org>
29892
29893         * lib/gl_sublist.h: New file.
29894         * lib/gl_sublist.c: New file.
29895
29896 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
29897
29898         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
29899         name (relative to the original working directory) and the file
29900         name component (relative to the temporary working directory).  All
29901         callers changed.
29902         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
29903         * lib/mkdir-p.c (make_dir_parents): Likewise.
29904         * lib/mkdir-p.h (make_dir_parents): Likewise.
29905
29906 2006-10-06  Eric Blake  <ebb9@byu.net>
29907
29908         Define several macros for use by the clean-temp module.
29909         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
29910         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
29911         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
29912
29913         * lib/clean-temp.h (close_stream_temp): New declaration.
29914         * lib/clean-temp.c (includes): Pull in headers according to what
29915         other modules are in use.
29916         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
29917
29918 2006-10-06  Bruno Haible  <bruno@clisp.org>
29919
29920         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
29921         instead of fopen, fwriteerror.
29922
29923 2006-10-06  Bruno Haible  <bruno@clisp.org>
29924
29925         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
29926         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
29927         int.
29928         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
29929         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
29930         Return an error indicator.
29931         Suggested by Eric Blake.
29932
29933 2006-10-06  Bruno Haible  <bruno@clisp.org>
29934
29935         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
29936         Reported by Eric Blake.
29937
29938 2006-10-06  Bruno Haible  <bruno@clisp.org>
29939
29940         * modules/closeout (Description): Mention stderr too.
29941
29942 2006-10-06  Bruno Haible  <bruno@clisp.org>
29943         and Paul Eggert  <eggert@cs.ucla.edu>
29944
29945         * lib/closeout.c (close_stdout): Also close stderr.
29946         * lib/closeout.h: Update comment.
29947
29948 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
29949
29950         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
29951         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
29952         * lib/dirchownmod.c: Include lchown.h.
29953         * lib/lchown.c: Don't include files that lchown.h now includes.
29954         Don't declare chown, since lchown.h now does that.
29955         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
29956         (lchown): Define to rpl_chown if lchown is declared but
29957         does not exist.  Declare using a prototype if lchown is not
29958         declared.  Add a copyright notice.
29959         * lib/mkstemp.h: Include <unistd.h>.
29960         * lib/openat.c: Include lchown.h.
29961
29962         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
29963         we now test for that separately.
29964         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
29965         rather than O_NOFOLLOW, when testing whether it's possible to
29966         avoid a race condition reliably.
29967         * lib/savewd.c (savewd_chdir): Likewise.
29968
29969         Remove macros that are no longer needed now that stdint.h is
29970         reliable.
29971         * lib/fsusage.c (UINTMAX_MAX): Remove.
29972         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
29973         * lib/utimecmp.c (SIZE_MAX): Remove.
29974
29975         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
29976
29977         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
29978         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
29979         O_NOATIME works.
29980
29981 2006-10-05  Bruno Haible  <bruno@clisp.org>
29982
29983         * lib/gl_list.h (gl_sortedlist_search_from_to,
29984         gl_sortedlist_indexof_from_to): New declarations.
29985         (gl_list_implementation): New fields sortedlist_search_from_to,
29986         sortedlist_indexof_from_to.
29987         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
29988         inline functions.
29989         * lib/gl_list.c (gl_sortedlist_search_from_to,
29990         gl_sortedlist_indexof_from_to): New functions.
29991         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
29992         function.
29993         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
29994         (gl_array_sortedlist_search_from_to): New function.
29995         (gl_array_list_implementation): Update.
29996         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
29997         function.
29998         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
29999         (gl_carray_sortedlist_search_from_to): New function.
30000         (gl_carray_list_implementation): Update.
30001         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
30002         gl_linked_sortedlist_indexof_from_to): New functions.
30003         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
30004         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
30005         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
30006         gl_tree_sortedlist_indexof_from_to): New functions.
30007         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
30008         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
30009         Update.
30010         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
30011         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
30012         Update.
30013
30014 2006-10-05  Bruno Haible  <bruno@clisp.org>
30015
30016         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
30017         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
30018         (struct gl_list_implementation): Add fields search_from_to,
30019         indexof_from_to. Remove fields search, indexof.
30020         (gl_list_search): Use the search_from_to method.
30021         (gl_list_search_from, gl_list_search_from_to): New functions.
30022         (gl_list_indexof): Use the indexof_from_to method.
30023         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
30024         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
30025         (gl_list_search_from, gl_list_search_from_to): New functions.
30026         (gl_list_indexof): Use the indexof_from_to method.
30027         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
30028         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
30029         gl_array_indexof. Add start_index, end_index arguments.
30030         (gl_array_search_from_to): Renamed from gl_array_search. Add
30031         start_index, end_index arguments.
30032         (gl_array_remove, gl_array_list_implementation): Update.
30033         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
30034         gl_carray_indexof. Add start_index, end_index arguments.
30035         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
30036         start_index, end_index arguments.
30037         (gl_carray_remove, gl_carray_list_implementation): Update.
30038         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
30039         gl_linked_search. Add start_index, end_index arguments.
30040         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
30041         start_index, end_index arguments.
30042         (gl_linked_remove): Update.
30043         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
30044         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
30045         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
30046         field to 'size_t'.
30047         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
30048         gl_tree_search. Add start_index, end_index arguments.
30049         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
30050         start_index, end_index arguments.
30051         (gl_tree_remove): Update.
30052         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
30053         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
30054         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
30055         function.
30056         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
30057         gl_tree_search. Add start_index, end_index arguments.
30058         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
30059         start_index, end_index arguments.
30060         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
30061         Update.
30062         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
30063
30064 2006-10-05  Bruno Haible  <bruno@clisp.org>
30065
30066         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
30067
30068         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
30069         fwriteerror_temp): New declarations.
30070         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
30071         (descriptors): New variable.
30072         (cleanup): First, close the descriptors.
30073         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
30074         fclose_temp, fwriteerror_temp): New functions.
30075
30076 2006-10-04  Jim Meyering  <jim@meyering.net>
30077
30078         * lib/fts.c (fts_open): Tiny comment change.
30079
30080 2006-10-04  Bruno Haible  <bruno@clisp.org>
30081
30082         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
30083         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
30084         gl_LOCK_BODY.
30085         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
30086         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
30087         gl_LOCK_EARLY_BODY.
30088         (gl_LOCK): Require gl_LOCK_BODY.
30089
30090 2006-10-04  Bruno Haible  <bruno@clisp.org>
30091
30092         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
30093         (gl_oset_search_atleast): New declaration.
30094         (struct gl_oset_implementation): Add field 'search_atleast'.
30095         (gl_oset_search_atleast): New inline function.
30096         * lib/gl_oset.c (gl_oset_search_atleast): New function.
30097         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
30098         (gl_array_oset_implementation): Update.
30099         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
30100         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
30101         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
30102
30103 2006-10-04  Bruno Haible  <bruno@clisp.org>
30104
30105         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
30106
30107 2006-10-03  Bruno Haible  <bruno@clisp.org>
30108
30109         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
30110         from gl_avltreehash_list_implementation.
30111
30112 2006-10-03  Bruno Haible  <bruno@clisp.org>
30113
30114         * lib/gl_oset.c (gl_oset_add): Fix return type.
30115
30116 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
30117
30118         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
30119
30120 2006-10-02  Eric Blake  <ebb9@byu.net>
30121
30122         * modules/strnlen (Depends-on): Add extensions.
30123
30124 2006-10-02  Eric Blake  <ebb9@byu.net>
30125
30126         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
30127         definition in 2.60+.
30128
30129 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
30130
30131         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
30132         checks.
30133
30134 2006-10-02  Bruno Haible  <bruno@clisp.org>
30135
30136         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
30137         to the AUTOMAKE_OPTIONS.
30138         Reported by Jim Meyering.
30139
30140 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
30141
30142         Work around bug in Solaris 10 /proc file system:
30143         /proc/self/fd/NNN/.. isn't the parent directory of
30144         the directory whose file descriptor is NNN.  This needs to
30145         be worked around at run time, not compile time, since a
30146         program might be built on Solaris 8, where things work, and
30147         run on Solaris 10.
30148         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
30149         to use the following interface instead:
30150         (OPENAT_BUFFER_SIZE): New macro.
30151         (openat_proc_name): New function.
30152         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
30153         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
30154         Likewise.
30155         * lib/openat-proc.c: New file.
30156         * modules/openat (Files): Add lib/openat-proc.c.
30157         (Depends-on): Add same-inode, stdbool.
30158         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
30159
30160 2006-09-29  Bruno Haible  <bruno@clisp.org>
30161
30162         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
30163         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
30164         argument. Set stdout_closed before testing for ferror, not after.
30165         (fwriteerror, fwriteerror_no_ebadf): New functions.
30166
30167 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30168
30169         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
30170
30171 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
30172
30173         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
30174         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
30175
30176 2006-09-28  Jim Meyering  <jim@meyering.net>
30177
30178         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
30179         Include <unistd.h>.
30180
30181 2006-09-28  Bruno Haible  <bruno@clisp.org>
30182
30183         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
30184         * modules/linkedhash-list (Depends-on): Likewise.
30185         * modules/rbtreehash-list (Depends-on): Likewise.
30186
30187 2006-09-28  Bruno Haible  <bruno@clisp.org>
30188
30189         * lib/strndup.h: Simplify the redefinition of strndup.
30190         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
30191         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
30192
30193 2006-09-28  Bruno Haible  <bruno@clisp.org>
30194
30195         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
30196         * lib/gl_linkedhash_list.c: Likewise.
30197         * lib/gl_rbtreehash_list.c: Likewise.
30198
30199 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
30200
30201         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
30202         getaddrinfo.
30203
30204         * lib/__fpending.h: Don't include <stdio_ext.h> unless
30205         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
30206         it causes <stdio_ext.h> to cause a compile-time error.
30207         Problem reported by Nelson H. F. Beebe.
30208         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
30209         of HAVE_DECL___PENDING.
30210
30211         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
30212         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
30213         declaration.
30214
30215 2006-09-27  Jim Meyering  <jim@meyering.net>
30216
30217         This file could end up with a definition for a function
30218         named __strndup, rather than rpl_strndup on a system with
30219         incomplete weak_alias support.
30220         * lib/strndup.c (strndup): Rename from __strndup.
30221         Remove #defines that used to map __strndup to strndup.
30222         Don't use K&R prototypes.
30223         Remove LIBC-related code, since this file is not sync'd with glibc.
30224         * lib/strndup.h: Revamp, accordingly.
30225         * m4/strndup.m4: Modernize.
30226
30227 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
30228
30229         * modules/savewd (Depends-on): Add 'raise'.
30230         * lib/savewd.c: Include <signal.h>, for 'raise'.
30231
30232 2006-09-26  Jim Meyering  <jim@meyering.net>
30233
30234         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
30235         when we detect Darwin 8.7.0's acl_get_file bug.
30236         Rearrange to perform the new (below) run-test while $LIBS
30237         contains any acl-related library.  Set USE_ACL at the end.
30238         (gl_ACL_GET_FILE): New function.
30239
30240 2006-09-26  Eric Blake  <ebb9@byu.net>
30241
30242         * lib/verror.c: Include <config.h> unconditionally.
30243
30244 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
30245
30246         * modules/clock-time (Maintainer): Add self.
30247         * modules/getlogin_r (Depends-on): Add extensions.
30248
30249 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30250
30251         * modules/clock-time: New module.
30252         * modules/nanosleep (Depends-on): Add clock-time.
30253         * modules/gethrxtime (Depends-on): Likewise.
30254         * modules/gettime (Depends-on): Likewise.
30255         * modules/settime (Depends-on): Likewise.
30256
30257         * modules/fts-lgpl: Depend on openat.
30258         * modules/mkancesdirs: Depend on savewd.
30259         * modules/mkdir-p: Likewise.
30260
30261 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30262
30263         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
30264
30265         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
30266         `gl_have_arbitrary_file_name_length_limit' to
30267         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
30268         actually works between configure runs.
30269
30270 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30271             Bruno Haible  <bruno@clisp.org>
30272
30273         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
30274
30275 2006-09-25  Jim Meyering  <jim@meyering.net>
30276
30277         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
30278         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
30279
30280 2006-09-25  Eric Blake  <ebb9@byu.net>
30281
30282         * gnulib-tool (func_import, func_create_testdir): Fix typos in
30283         exec's in 2006-09-18 patch when shuffling fds.
30284
30285 2006-09-25  Bruno Haible  <bruno@clisp.org>
30286
30287         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
30288         Reported by Jim Meyering.
30289
30290 2006-09-24  Jim Meyering  <jim@meyering.net>
30291
30292         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
30293         compare a pointer against a literal "0".  That caused failures with
30294         at least HP-UX's hpcc.
30295
30296 2006-09-22  Simon Josefsson  <jas@extundo.com>
30297
30298         * modules/gc-sha1:
30299         * modules/gc-md4:
30300         * modules/gc-hmac-sha1:
30301         * modules/gc-hmac-md5:
30302         * modules/gc-des:
30303         * modules/gc-arcfour: Distribute more files.
30304
30305 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30306
30307         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
30308         (gl_linked_iterator_from_to): Initialize struct completely.
30309         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
30310         (gl_tree_iterator_from_to): Likewise
30311         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
30312         * lib/gl_array_list.c [lint] (gl_array_iterator)
30313         (gl_array_iterator_from_to): Likewise.
30314         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
30315         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
30316         (gl_carray_iterator_from_to): Likewise.
30317
30318         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
30319         * lib/md4.c (md4_process_block): Remove unused variable.
30320         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
30321         parentheses for clarity.
30322
30323 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30324
30325         * modules/bison-i18n (Depends-on): Add gettext.
30326
30327 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30328
30329         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
30330         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
30331         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
30332         also add missing comma that caused broken test.
30333         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
30334         stdlib.h, for `abort'.
30335         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
30336         variables.
30337         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
30338         include unistd.h if present, for `rmdir'.
30339         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
30340         variables.
30341         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
30342         in the process include standard headers for prototypes.
30343         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
30344         gets declared on GNU/Linux.
30345         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
30346         unistd.h, for `rmdir'.
30347         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
30348
30349         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
30350         always true.
30351         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
30352
30353         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
30354
30355 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30356
30357         * gnulib-tool (func_version): Create output all at once.  This
30358         may help avoid triggering unnecessary SIGPIPEs, and at any
30359         rate it doesn't hurt.
30360
30361 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30362             Bruno Haible  <bruno@clisp.org>
30363
30364         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
30365         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
30366         * m4/signed.m4 (bh_C_SIGNED): Likewise.
30367
30368         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
30369         (gl_FUNC_VASPRINTF): Invoke it.
30370
30371 2006-09-22  Bruno Haible  <bruno@clisp.org>
30372
30373         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
30374         getloadavg.c as first argument.
30375
30376 2006-09-22  Bruno Haible  <bruno@clisp.org>
30377
30378         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
30379         at the beginning of the gl_INIT macro.
30380         * modules/getloadavg (configure.ac): Pass $gl_source_base to
30381         gl_GETLOADAVG.
30382
30383 2006-09-22  Bruno Haible  <bruno@clisp.org>
30384
30385         * gnulib-tool (func_create_megatestdir): Don't include the config-h
30386         module.
30387         Suggested by Ralf Wildenhues.
30388
30389 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
30390
30391         Import this patch from libc:
30392
30393         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
30394
30395         * lib/regex_internal.c (re_string_reconstruct): Handle
30396         offset < pstr->valid_raw_len && pstr->offsets_needed case.
30397         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
30398         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
30399         re_string_context_at.
30400
30401         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
30402         now requires it.
30403         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
30404         gl_REGEX now does it for us.
30405         (gl_REGEX): Add test taken from
30406         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
30407
30408         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
30409         Check that large offsets work.  Modernize Autoconf usages.
30410         Prefer "yes" to mean a good thing rather than a bad.
30411         Don't put "#define mkstemp" in config.h, as this might interfere
30412         with standard system headers that "#define mkstemp mkstemp64".
30413
30414         * modules/mkstemp (Depends-on): Add extensions, so that
30415         mkstemp is visible on some platforms.
30416         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
30417         (Include): Change to "mkstemp.h" from <stdlib.h>.
30418         (Files): Add mkstemp.h.
30419
30420         * lib/mkstemp.h: New file, since some standard headers
30421         #define mkstemp.
30422         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
30423         Include "mkstemp.h".
30424         Make the _LIBC code resemble glibc original more,
30425         e.g., use K&R style.
30426         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
30427         (mkstemp): Remove, since mkstemp.h does this for us.
30428         * lib/stdlib--.h: Include mkstemp.h.
30429
30430         Import this patch from libc:
30431
30432         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
30433
30434         * lib/tempname.c (__gen_tempname): Change attempts_min
30435         into a macro.  Use preprocessor to decide how to initialize
30436         attempts [Coverity CID 67].
30437
30438 2006-09-20  Bruno Haible  <bruno@clisp.org>
30439
30440         * lib/mkdtemp.c: Import from libc.
30441         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
30442                 * sysdeps/posix/tempname.c (__gen_tempname): Change
30443                 attempts_min into a macro.  Use preprocessor to decide how to
30444                 initialize attempts [Coverity CID 67].
30445         2001-11-27  Paul Eggert  <eggert@twinsun.com>
30446                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
30447                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
30448
30449 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30450
30451         * gnulib-tool (func_exit): New function, to allow to pass the
30452         exit status portably through the trap.  Use everywhere.
30453         (--help, --version): Signal a write error.
30454         (trap): catch SIGPIPE, for write errors.
30455         Exit at the end of the trap, with the correct exit status.
30456
30457 2006-09-19  Karl Berry  <karl@gnu.org>
30458
30459         * doc/gnulib.texi: note about the license texinfo files.
30460
30461 2006-09-19  Eric Blake  <ebb9@byu.net>
30462
30463         * gnulib-tool: Avoid space-tab.
30464
30465 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
30466
30467         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
30468         that prevented coreutils 6.1 from building.  Problem reported
30469         by Petter Reinholdtsen.
30470
30471 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
30472
30473         * gnulib-tool (avoidlist): Fix typo that broke options like
30474         --avoid=lock that are used by coreutils bootstrap.
30475
30476 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
30477
30478         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
30479         more systematically.
30480
30481 2006-09-18  Jim Meyering  <jim@meyering.net>
30482
30483         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
30484
30485 2006-09-18  Bruno Haible  <bruno@clisp.org>
30486
30487         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
30488
30489 2006-09-18  Bruno Haible  <bruno@clisp.org>
30490
30491         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
30492         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
30493         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
30494         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
30495         * m4/gettext.m4: Require autoconf >= 2.52.
30496         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
30497         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
30498         of gl_cv_header_inttypes_h.
30499
30500 2006-09-18  Bruno Haible  <bruno@clisp.org>
30501
30502         * lib/javaversion.c: Include configmake.h.
30503
30504 2006-09-18  Bruno Haible  <bruno@clisp.org>
30505
30506         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
30507         avoid that the while loops be executed in a subshell.
30508
30509 2006-09-18  Bruno Haible  <bruno@clisp.org>
30510
30511         * MODULES.html.sh (func_module): Break long lines.
30512         Suggested by Bruce Korb <bkorb@gnu.org>.
30513
30514 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30515
30516         Speed up by a factor of 1.12.
30517         * gnulib-tool (nl): New variable.
30518         (func_import): Rewrite include directive extraction to only read each
30519         directive once.
30520
30521 2006-09-17  Bruno Haible  <bruno@clisp.org>
30522
30523         * modules/javaversion (Makefile.am): Remove DEFS setting.
30524         (Depends-on): Add configmake, for PKGDATADIR definition.
30525
30526 2006-09-17  Bruno Haible  <bruno@clisp.org>
30527
30528         * gnulib-tool (func_create_testdir): Rewrite all files at once.
30529
30530 2006-09-17  Bruno Haible  <bruno@clisp.org>
30531
30532         * gnulib-tool (func_append): New function, stolen from libtool.m4.
30533         (func_modules_transitive_closure, func_modules_add_dummy,
30534         func_modules_to_filelist, func_import, func_create_testdir,
30535         func_create_megatestdir, ...): Use it wherever possible.
30536         Suggested by Ralf Wildenhues.
30537
30538 2006-09-16  Karl Berry  <karl@gnu.org>
30539
30540         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
30541         to avoid sectioning errors.
30542         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
30543         [ifinfo]: blank line after @center-ed titles.
30544         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
30545         Spell FSF address consistently with others.
30546         (These changes approved by rms.)
30547
30548 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30549
30550         Speed up by a factor of 1.61.
30551         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
30552         already checked module names again.
30553
30554 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30555
30556         Speed up by a factor of 1.13.
30557         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
30558         for new_files, and the input to func_add_or_update.
30559
30560 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30561
30562         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
30563         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
30564
30565 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30566
30567         * modules/mkancesdirs (Depends-on): Add fcntl.
30568         * modules/savewd: New file.
30569         * MODULES.html.sh (File system functions): Add savewd.
30570
30571         * modules/configmake (Makefile.am): Add support for the
30572         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
30573
30574 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30575
30576         * m4/savewd.m4: New file.
30577
30578 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
30579
30580         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
30581         (dirchownmod): New arg FD.  All callers changed.
30582         Use FD rather than opening the directory ourself, as opening is
30583         now the caller's responsibility.
30584         * lib/dirchownmod.h: Likewise.
30585         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
30586         hosts that require <sys/types.h> before <sys/stat.h>.  Include
30587         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
30588         (test_dir): Remove.
30589         (mkancesdirs): Return length of prefix of FILE that has already
30590         been made, or -2 if there is a child doing the work.  Redo
30591         algorithm so that it is O(N) rather than O(N**2).  Optimize away
30592         ".", and treat ".." specially since it might stray back into
30593         already-created areas.  Use a subprocess if necessary.  New arg
30594         WD; all users changed.  MAKE_DIR function should now return 1
30595         if it creates a directory that is not readable.  Return -2 if
30596         a child process is spun off.
30597         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
30598         Adjust signature to match code.
30599         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
30600         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
30601         all users changed.
30602         * lib/savewd.c, lib/savewd.h: New files.
30603
30604 2006-09-15  Jim Meyering  <jim@meyering.net>
30605
30606         * modules/rename-dest-slash: New module.
30607         * MODULES.html.sh (posix_compat): Add it here.
30608
30609         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
30610
30611 2006-09-15  Jim Meyering  <jim@meyering.net>
30612
30613         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
30614         file.
30615
30616         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
30617
30618 2006-09-15  Jim Meyering  <jim@meyering.net>
30619
30620         * lib/rename-dest-slash.c (has_trailing_slash): Use
30621         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
30622         (rpl_rename_dest_slash): Perform the cheaper trailing slash
30623         test before testing whether SRC is a directory.
30624         Suggestions from Bruno Haible.
30625
30626         Avoid a warning about an unused variable.
30627         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
30628         into the #ifdef block where it's used.
30629
30630         * lib/rename-dest-slash.c: New file.
30631
30632 2006-09-14  Bruno Haible  <bruno@clisp.org>
30633
30634         * lib/allocsa.c: Include <config.h> unconditionally.
30635         * lib/asnprintf.c: Likewise.
30636         * lib/asprintf.c: Likewise.
30637         * lib/c-strcasecmp.c: Likewise.
30638         * lib/c-strcasestr.c: Likewise.
30639         * lib/c-strncasecmp.c: Likewise.
30640         * lib/c-strstr.c: Likewise.
30641         * lib/classpath.c: Likewise.
30642         * lib/clean-temp.c: Likewise.
30643         * lib/concatpath.c: Likewise.
30644         * lib/copy-file.c: Likewise.
30645         * lib/csharpcomp.c: Likewise.
30646         * lib/csharpexec.c: Likewise.
30647         * lib/execute.c: Likewise.
30648         * lib/fatal-signal.c: Likewise.
30649         * lib/findprog.c: Likewise.
30650         * lib/fwriteerror.c: Likewise.
30651         * lib/gl_array_list.c: Likewise.
30652         * lib/gl_array_oset.c: Likewise.
30653         * lib/gl_avltree_list.c: Likewise.
30654         * lib/gl_avltree_oset.c: Likewise.
30655         * lib/gl_avltreehash_list.c: Likewise.
30656         * lib/gl_carray_list.c: Likewise.
30657         * lib/gl_linked_list.c: Likewise.
30658         * lib/gl_linkedhash_list.c: Likewise.
30659         * lib/gl_list.c: Likewise.
30660         * lib/gl_oset.c: Likewise.
30661         * lib/gl_rbtree_list.c: Likewise.
30662         * lib/gl_rbtree_oset.c: Likewise.
30663         * lib/gl_rbtreehash_list.c: Likewise.
30664         * lib/imaxabs.c: Likewise.
30665         * lib/imaxdiv.c: Likewise.
30666         * lib/javacomp.c: Likewise.
30667         * lib/javaexec.c: Likewise.
30668         * lib/javaversion.c: Likewise.
30669         * lib/linebreak.c: Likewise.
30670         * lib/localcharset.c: Likewise.
30671         * lib/lock.c: Likewise.
30672         * lib/mbchar.c: Likewise.
30673         * lib/mbswidth.c: Likewise.
30674         * lib/mkdtemp.c: Likewise.
30675         * lib/pipe.c: Likewise.
30676         * lib/printf-args.c: Likewise.
30677         * lib/printf-parse.c: Likewise.
30678         * lib/progname.c: Likewise.
30679         * lib/progreloc.c: Likewise.
30680         * lib/readlink.c: Likewise.
30681         * lib/sh-quote.c: Likewise.
30682         * lib/stpcpy.c: Likewise.
30683         * lib/stpncpy.c: Likewise.
30684         * lib/strcasecmp.c: Likewise.
30685         * lib/strcasestr.c: Likewise.
30686         * lib/strcspn.c: Likewise.
30687         * lib/striconv.c: Likewise.
30688         * lib/strncasecmp.c: Likewise.
30689         * lib/strnlen1.c: Likewise.
30690         * lib/strstr.c: Likewise.
30691         * lib/strtok_r.c: Likewise.
30692         * lib/tls.c: Likewise.
30693         * lib/tmpdir.c: Likewise.
30694         * lib/unicodeio.c: Likewise.
30695         * lib/unsetenv.c: Likewise.
30696         * lib/vasnprintf.c: Likewise.
30697         * lib/vasprintf.c: Likewise.
30698         * lib/wait-process.c: Likewise.
30699         * lib/xallocsa.c: Likewise.
30700         * lib/xsetenv.c: Likewise.
30701         * lib/xstriconv.c: Likewise.
30702
30703 2006-09-13  Simon Josefsson  <jas@extundo.com>
30704
30705         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
30706         that internally, suggested by Ralf Wildenhues
30707         <Ralf.Wildenhues@gmx.de>.
30708
30709 2006-09-13  Simon Josefsson  <jas@extundo.com>
30710
30711         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
30712         @LIBOBJS@.
30713         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30714
30715 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
30716
30717         * lib/_fpending.c: Include <config.h> unconditionally, since we no
30718         longer worry about uses that don't define HAVE_CONFIG_H.
30719         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
30720         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
30721         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
30722         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
30723         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
30724         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
30725         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
30726         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
30727         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
30728         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
30729         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
30730         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
30731         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
30732         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
30733         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
30734         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
30735         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
30736         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
30737         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
30738         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
30739         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
30740         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
30741         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
30742         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
30743         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
30744         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
30745         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
30746         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
30747         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
30748         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
30749         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
30750         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
30751         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
30752         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
30753         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
30754         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
30755         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
30756         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
30757         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
30758         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
30759         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
30760         Likewise.
30761
30762 2006-09-13  Eric Blake  <ebb9@byu.net>
30763
30764         * lib/getopt.c: Fix typo in last commit.
30765
30766 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
30767
30768         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
30769         dgettext.
30770
30771 2006-09-12  Jim Meyering  <jim@meyering.net>
30772
30773         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
30774         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
30775         Reported by Nelson H. F. Beebe.
30776
30777 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
30778
30779         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
30780         program_invocation_name and program_invocation_short_name are
30781         initialized.
30782         * lib/argp-namefrob.h: Move declarations of program_invocation_name
30783         and program_invocation_short_name to argp.h, so they are visible
30784         to user programs.
30785         * lib/argp.h: Likewise
30786
30787 2006-09-10  Bruno Haible  <bruno@clisp.org>
30788
30789         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
30790         m4/inttypes_h.m4, m4/uintmax_t.m4.
30791
30792 2006-09-10  Bruno Haible  <bruno@clisp.org>
30793
30794         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
30795         gl_AC_TYPE_UINTMAX_T.
30796
30797 2006-09-10  Bruno Haible  <bruno@clisp.org>
30798
30799         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
30800
30801 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
30802
30803         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
30804         convention.  Text proposed by Bruno Haible.
30805         (struct argp_option): Document the use of N_() wrappers.
30806
30807         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
30808         '\v', and translate the two parts separately, instead of feeding
30809         the whole string to gettext.  This allows to exclude
30810         '\v' from the strings visible to the translator by writing doc
30811         strings as N_("..") "\v" N_("..").
30812
30813 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
30814
30815         * config/srclist.txt: Undo latest change; the bug was fixed.
30816
30817 2006-09-09  Bruno Haible  <bruno@clisp.org>
30818
30819         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
30820         assignments if building a library without libtool.
30821         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
30822         in func_emit_lib_Makefile_am.
30823         (func_import): When building a static library libfoo.a, arrange to
30824         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
30825         (func_create_testdir): Likewise.
30826         * modules/gc (configure.ac, Makefile.am): If building statically,
30827         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
30828         * modules/iconvme (configure.ac, Makefile.am): Likewise.
30829         * modules/striconv (configure.ac, Makefile.am): Likewise.
30830         Based on a suggestion by Ralf Wildenhues.
30831
30832 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
30833
30834         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
30835         Check for unistd.h too, since Autoconf doesn't assume POSIX.
30836         Also:
30837
30838         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
30839         Add year_2050_test to catch glibc bug 2821
30840         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
30841
30842         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30843         Prefer #ifdef to #if.
30844
30845         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
30846         Return from 'main' instead of calling 'exit'.
30847
30848 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
30849
30850         * lib/mktime.c (guess_time_tm): Fix bug where mktime
30851         returned the maximum time_t value rather than (time_t) -1.
30852         Problem originally reported by William Bardwell
30853         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
30854
30855         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
30856         Moved to here ...
30857         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
30858         ... from here.
30859
30860 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
30861
30862         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
30863         2821 is fixed.
30864
30865 2006-09-08  Jim Meyering  <jim@meyering.net>
30866
30867         Don't make generated files read-only.  That would bother too many
30868         people.  However, do retain the ability to work when targets are
30869         read-only: remove the destination and temporary files before writing
30870         them (when generated via sed or echo), or by using the -f option for
30871         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
30872         * modules/alloca-opt, modules/argz, modules/arpa_inet:
30873         * modules/byteswap, modules/configmake, modules/fcntl:
30874         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
30875         * modules/localcharset, modules/netinet_in, modules/poll:
30876         * modules/stdbool, modules/stdint, modules/sys_select:
30877         * modules/sys_socket, modules/sys_stat, modules/sysexits:
30878
30879 2006-09-08  Jim Meyering  <jim@meyering.net>
30880
30881         Avoid new build failure on FreeBSD 6.0.
30882         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
30883         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
30884         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
30885
30886 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30887
30888         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
30889
30890 2006-09-07  Jim Meyering  <jim@meyering.net>
30891
30892         Fix global typo in last change: use chmod u-w, not chmod u-x.
30893         Spotted by Paul Eggert and Bruce Korb.
30894         * modules/alloca-opt, modules/argz, modules/arpa_inet:
30895         * modules/byteswap, modules/configmake, modules/fcntl:
30896         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
30897         * modules/localcharset, modules/netinet_in, modules/poll:
30898         * modules/stdbool, modules/stdint, modules/sys_select:
30899         * modules/sys_socket, modules/sys_stat, modules/sysexits:
30900
30901 2006-09-06  Jim Meyering  <jim@meyering.net>
30902
30903         Make generated files be read-only.
30904         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
30905         Ensure that each generated file is now read-only.
30906         * modules/argz: Likewise.
30907         * modules/arpa_inet: Likewise.
30908         * modules/byteswap: Likewise.
30909         * modules/configmake: Likewise.
30910         * modules/fcntl: Likewise.
30911         * modules/fnmatch: Likewise.
30912         * modules/getopt: Likewise.
30913         * modules/glob: Likewise.
30914         * modules/inttypes: Likewise.
30915         * modules/netinet_in: Likewise.
30916         * modules/poll: Likewise.
30917         * modules/stdbool: Likewise.
30918         * modules/stdint: Likewise.
30919         * modules/sys_select: Likewise.
30920         * modules/sys_socket: Likewise.
30921         * modules/sys_stat: Likewise.
30922         * modules/sysexits: Likewise.
30923         * modules/localcharset: Same as above, but continue using temporary
30924         file named "t-$@" (why different?) rather than the "$@-t" used
30925         everywhere else.
30926
30927         * modules/sysexits (Makefile.am): Replace literal occurrences
30928         of "sysexit.h" more readable, and more consistent, "$@".
30929
30930 2006-09-06  Bruno Haible  <bruno@clisp.org>
30931
30932         * modules/striconv: New file.
30933         * modules/xstriconv: New file.
30934         * MODULES.html.sh (Internationalization functions): Add striconv,
30935         xstriconv.
30936
30937 2006-09-06  Bruno Haible  <bruno@clisp.org>
30938
30939         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
30940         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
30941         not using libtool correctly.
30942
30943 2006-09-06  Bruno Haible  <bruno@clisp.org>
30944
30945         * lib/striconv.h: New file.
30946         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
30947         iconvstring.c.
30948         * lib/xstriconv.h: New file.
30949         * lib/xstriconv.c: New file.
30950
30951 2006-09-06  Bruno Haible  <bruno@clisp.org>
30952
30953         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
30954         lib_..._LDFLAGS.
30955
30956 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30957
30958         * lib/argz_.h: Sync from Libtool.
30959
30960         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
30961                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
30962
30963         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
30964
30965 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
30966
30967         * modules/trim: New file.
30968
30969 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
30970
30971         * lib/trim.h: New file.
30972         * lib/trim.c: New file.
30973
30974 2006-09-05  Bruno Haible  <bruno@clisp.org>
30975
30976         * MODULES.html.sh (String handling): Add trim.
30977
30978 2006-09-04  Karl Berry  <karl@gnu.org>
30979
30980         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
30981         until next release.
30982
30983 2006-09-03  Bruno Haible  <bruno@clisp.org>
30984
30985         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
30986         correctly.
30987
30988 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
30989
30990         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
30991         not gl_GETLOADAVG.  Omit unneeded semicolons.
30992         Problems reported by Ralf Wildenhues in
30993         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
30994         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
30995         at the end, which is the usual gnulib style.
30996
30997         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
30998         of doing all the work ourselves.
30999         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
31000         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
31001
31002 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
31003
31004         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
31005         Problem reported by Ralf Wildenhues in
31006         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
31007
31008         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
31009         HAVE_STRUCT_STATFS_F_FSTYPENAME.
31010
31011 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
31012
31013         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
31014         yesterday's patch by changing test -n to test -z.
31015
31016 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31017
31018         * modules/getloadavg (Files): Add m4/getloadavg.m4.
31019         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
31020         the former is now obsolescent.
31021
31022         * modules/chdir-long (Depends-on): Add fcntl.
31023
31024 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31025
31026         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
31027         obsolescent, and programs should use gnulib instead.
31028         * m4/getloadavg.m4: New file, with contents taken from Autoconf
31029         but with prefixes changed.
31030
31031 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
31032
31033         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
31034         or stdbool.h, because they might not exist while configuring.
31035
31036         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
31037         Don't include unistd.h or limits.h; not needed, since chdir-long.h
31038         does that for us.
31039         (O_DIRECTORY): Remove.
31040
31041 2006-08-31  Eric Blake  <ebb9@byu.net>
31042
31043         * gnulib-tool: Don't let emacs change spaces to TAB.
31044
31045 2006-08-31  Bruno Haible  <bruno@clisp.org>
31046
31047         * gnulib-tool: When calling func_import more than once, do it in a
31048         subshell.
31049         Reported by Eric Blake <ebb9@byu.net>.
31050
31051 2006-08-31  Bruno Haible  <bruno@clisp.org>
31052
31053         * gnulib-tool (nl): Remove variable.
31054         (sed_transform_lib_file): Use more robust test for config-h module.
31055         (func_import): Fix typo in 2006-08-25 patch.
31056
31057 2006-08-31  Bruno Haible  <bruno@clisp.org>
31058
31059         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
31060         specified, augment Makefile.am variables instead of assigning them.
31061
31062 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31063
31064         Work around a bug in both the Linux and SunOS 64-bit kernels:
31065         nanosleep mishandles sleeps for longer than 2**31 seconds.
31066         Problem reported by Frank v Waveren in
31067         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
31068         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
31069         Check for nanosleep bug.
31070         (LIB_NANOSLEEP): Append clock_gettime library if needed.
31071
31072 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31073
31074         Work around a bug in both the Linux and SunOS 64-bit kernels:
31075         nanosleep mishandles sleeps for longer than 2**31 seconds.
31076         Problem reported by Frank v Waveren in
31077         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
31078         * lib/nanosleep.c (BILLION): New constant.
31079         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
31080         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
31081         implementation.
31082
31083 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31084
31085         * modules/nanosleep (Depends-on): Add gettime.
31086
31087 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
31088         and Simon Josefsson  <jas@extundo.com>
31089         and Oskar Liljeblad  <oskar@osk.mine.nu>
31090
31091         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
31092         * gnulib-tool (func_import): New license type 'unmodifiable license
31093         text'.
31094         * modules/fdl: Use it.  Longer description.
31095         * module/gpl, module/lgpl: New files.
31096
31097 2006-08-30  Jim Meyering  <jim@meyering.net>
31098
31099         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
31100         shadowing the parameter.
31101
31102 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31103
31104         Sync from Libtool:
31105
31106         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31107
31108         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
31109         sharing with gnulib.  Report by Eric Blake.
31110
31111 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31112
31113         * modules/isapipe: New file.
31114         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
31115
31116 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31117
31118         * modules/configmake (Makefile.am): Add a comment, and omit
31119         the CONFIGMAKE_ prefix from generated macro names.  Suggested
31120         by Bruno Haible.
31121
31122 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31123
31124         * m4/isapipe.m4: New file.
31125
31126 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
31127
31128         * lib/isapipe.c, lib/isapipe.h: New files.
31129
31130 2006-08-29  Jim Meyering  <jim@meyering.net>
31131
31132         * modules/configmake (Makefile.am): Make configmake.h depend on
31133         Makefile.  Otherwise, a stale configmake.h could hang around.
31134
31135 2006-08-29  Eric Blake  <ebb9@byu.net>
31136
31137         * lib/error.c (error_at_line, print_errno_message): Match libc, after
31138         resolution of upstream bug 3044.
31139
31140 2006-08-29  Bruno Haible  <bruno@clisp.org>
31141
31142         * modules/localcharset (Depends-on): Add configmake.
31143         (Makefile.am): Remove setting of LIBDIR through DEFS.
31144
31145 2006-08-29  Bruno Haible  <bruno@clisp.org>
31146
31147         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
31148         defined.
31149
31150 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31151
31152         * modules/fcntl: New file.
31153         * modules/chdir-safer (Depends-on): Add fcntl.
31154         * modules/fts: Likewise.
31155         * modules/mkdir-p: Likewise.
31156
31157         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
31158         This undoes the most recent change, since we're now addressing the
31159         problem in a different way.
31160
31161         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
31162         into output, since the output might be called Makefile.am even
31163         if $makefile_name is something different.
31164         (func_import): Use $makefile_am rather than
31165         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
31166         empty.
31167
31168         * modules/inttypes (Files): Add m4/inttypes-h.m4.
31169
31170 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31171
31172         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
31173         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
31174         recent change to stdint.m4, since we're now addressing the problem in a
31175         different way.
31176
31177 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31178
31179         * m4/fcntl_h.m4: New file.
31180
31181 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
31182
31183         * lib/fcntl_.h: New file.
31184         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
31185         the fcntl module.
31186         * lib/dirchownmod.c: Likewise.
31187         * lib/fts.c: Likewise.
31188
31189         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
31190         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
31191         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
31192         just before including <inttypes.h>, to avoid circular inclusion.
31193
31194 2006-08-28  Jim Meyering  <jim@meyering.net>
31195
31196         * doc/visibility.texi: Actually read and correct the grammar of the
31197         sentence affected by yesterday's change.
31198
31199 2006-08-28  Eric Blake  <ebb9@byu.net>
31200
31201         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
31202         needs wrapper.
31203
31204 2006-08-28  Eric Blake  <ebb9@byu.net>
31205
31206         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
31207
31208 2006-08-28  Eric Blake  <ebb9@byu.net>
31209
31210         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
31211
31212 2006-08-28  Bruno Haible  <bruno@clisp.org>
31213
31214         * modules/c-strstr: New file, from GNU gettext.
31215         * MODULES.html.sh (String handling): Add c-strstr.
31216
31217 2006-08-28  Bruno Haible  <bruno@clisp.org>
31218
31219         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
31220         macros.
31221         Reported by Eric Blake.
31222
31223 2006-08-28  Bruno Haible  <bruno@clisp.org>
31224
31225         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
31226         (VASNPRINTF): Return a string of length > INT_MAX without failing.
31227         * lib/vasprintf.c: Include errno.h, limits.h.
31228         (EOVERFLOW): New fallback definition.
31229         (vasprintf): Test here whether the string length is > INT_MAX.
31230         * lib/vsnprintf.c: Include errno.h, limits.h.
31231         (EOVERFLOW): New fallback definition.
31232         (vsnprintf): Fix bug when generated string was too long for the buffer.
31233         Test here whether the string length is > INT_MAX.
31234
31235 2006-08-28  Bruno Haible  <bruno@clisp.org>
31236
31237         * lib/inttypes_.h (SCNX*): Remove definitions.
31238         Reported by Eric Blake.
31239
31240 2006-08-28  Bruno Haible  <bruno@clisp.org>
31241
31242         * lib/c-strstr.h: New file, from GNU gettext.
31243         * lib/c-strstr.c: New file, from GNU gettext.
31244
31245 2006-08-28  Bruno Haible  <bruno@clisp.org>
31246
31247         * gnulib-tool: Reorder some statements.
31248
31249 2006-08-28  Bruno Haible  <bruno@clisp.org>
31250
31251         * gnulib-tool: New option --makefile-name.
31252         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
31253         $makefile_name.
31254         (func_import): Write $makefile_name to the cache file, and read it from
31255         there unless explicitly specified. Use $makefile_name as file name
31256         instead of Makefile.am. Adjust the recommendations accordingly.
31257
31258 2006-08-28  Bruno Haible  <bruno@clisp.org>
31259
31260         * gnulib-tool (func_verify_module): Check against misapplying patch.
31261
31262 2006-08-28  Bruno Haible  <bruno@clisp.org>
31263
31264         * gnulib-tool (func_relativize, func_relconcat): New functions.
31265         Give an error if --local-dir is given with --update.
31266         Remove trailing slashes from $local_gnulib_dir.
31267         (func_import): Store the relativized $local_gnulib_dir in
31268         gnulib-cache.m4, and read it from there if not specified explicitly.
31269
31270 2006-08-28  Bruno Haible  <bruno@clisp.org>
31271
31272         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
31273         is the current directory. Respect also $local_gnulib_dir.
31274
31275 2006-08-28  Bruno Haible  <bruno@clisp.org>
31276             Simon Josefsson  <jas@extundo.com>
31277
31278         BeOS portability.
31279         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
31280
31281 2006-08-27  Jim Meyering  <jim@meyering.net>
31282
31283         * doc/visibility.texi: Remove duplicate word: "pointer".
31284
31285 2006-08-26  Bruno Haible  <bruno@clisp.org>
31286
31287         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
31288         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
31289         (Makefile.am): Create inttypes.h from inttypes_.h.
31290         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
31291
31292         * modules/imaxabs: New file.
31293
31294         * modules/imaxdiv: New file.
31295
31296 2006-08-26  Bruno Haible  <bruno@clisp.org>
31297
31298         * m4/inttypes.m4: New file.
31299         * m4/_inttypes_h.m4: Remove file.
31300         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
31301         PRI_MACROS_BROKEN.
31302         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
31303
31304         * m4/imaxabs.m4: New file.
31305
31306         * m4/imaxdiv.m4: New file.
31307
31308 2006-08-26  Bruno Haible  <bruno@clisp.org>
31309
31310         * lib/inttypes_.h: New file.
31311         * lib/inttypes.h: Remove file.
31312         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
31313
31314         * lib/imaxabs.c: New file.
31315
31316         * lib/imaxdiv.c: New file.
31317
31318 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
31319
31320         New config-h module, so that "make" output needn't be cluttered
31321         by -DHAVE_CONFIG_H.
31322         * MODULES.html.sh (Support for building libraries and executables):
31323         Add config-h.
31324         * modules/config-h: New file.
31325         * gnulib-tool (nl, sed_transform_lib_file): New vars.
31326         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
31327         the config-h module is used.
31328
31329         New configmake module, so that "make" output needn't be cluttered
31330         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
31331         * MODULES.html.sh (Support for building libraries and executables):
31332         Add configmake.
31333         * modules/configmake: New file.
31334
31335 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
31336
31337         * m4/config-h.m4: New file.
31338
31339 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
31340
31341         * config/srclist.txt: Add elisp-comp.
31342
31343 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
31344
31345         * MODULES.html.sh (Support for building libraries and executables):
31346         Add elisp-comp.
31347         * build-aux/elisp-comp: New file.
31348         * modules/elisp-comp: New file.
31349
31350 2006-08-24  Bruno Haible  <bruno@clisp.org>
31351
31352         * gnulib-tool (func_create_testdir): Use non-default values of
31353         sourcebase and m4base.
31354
31355 2006-08-24  Bruno Haible  <bruno@clisp.org>
31356
31357         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
31358         HTML structure.
31359
31360 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
31361
31362         * modules/openat (Depends-on): Add lchown.
31363
31364 2006-08-23  Bruno Haible  <bruno@clisp.org>
31365
31366         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
31367         of gl_LOCK_EARLY instead of gl_LOCK.
31368
31369 2006-08-23  Bruno Haible  <bruno@clisp.org>
31370
31371         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
31372         on OSF/1 to no.
31373         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
31374
31375 2006-08-23  Bruno Haible  <bruno@clisp.org>
31376
31377         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
31378         as unusable.
31379
31380         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
31381         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
31382         (gl_LOCK): New macro.
31383
31384 2006-08-22  Simon Josefsson  <jas@extundo.com>
31385
31386         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
31387         to md5 module.
31388
31389 2006-08-22  Simon Josefsson  <jas@extundo.com>
31390
31391         * MODULES.html.sh: Add "Support for maintaining and release
31392         projects".
31393
31394         * build-aux/gnupload: New file, from coreutils.
31395
31396 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31397
31398         Avoid the need for AC_LIBSOURCES in m4 macros.
31399         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
31400         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
31401         * modules/check-version (EXTRA_DIST): Add check-version.h.
31402         * modules/crc (EXTRA_DIST): Add crc.h.
31403         * modules/des (EXTRA_DIST): Add des.h.
31404         * modules/gc (EXTRA_DIST): Add gc.h.
31405         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
31406         * modules/getline (EXTRA_DIST): Add getline.h.
31407         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
31408         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
31409         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
31410         * modules/md2 (EXTRA_DIST): Add md2.h.
31411         * modules/md4 (EXTRA_DIST): Add md4.h.
31412         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
31413         * modules/read-file (EXTRA_DIST): Add read-file.h.
31414         * modules/readline (EXTRA_DIST): Add readline.h.
31415         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
31416         rijndael-api-fst.h.
31417
31418 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31419
31420         * m4/rijndael.m4 (gl_ARCFOUR):
31421         * m4/arctwo.m4 (gl_ARCTWO):
31422         * m4/check-version.m4 (gl_CHECK_VERSION):
31423         * m4/crc.m4 (gl_CRC):
31424         * m4/des.m4 (gl_DES):
31425         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
31426         * m4/gc.m4 (gl_GC):
31427         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
31428         * m4/getline.m4 (gl_FUNC_GETLINE):
31429         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
31430         * m4/hmac-md5.m4 (gl_HMAC_MD5):
31431         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
31432         * m4/md2.m4 (gl_MD2):
31433         * m4/md4.m4 (gl_MD4):
31434         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
31435         * m4/read-file.m4 (gl_FUNC_READ_FILE):
31436         * m4/readline.m4 (gl_FUNC_READLINE):
31437         * m4/rijndael.m4 (gl_RIJNDAEL):
31438         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
31439         to get the necessary .h files and whatnot.
31440
31441 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
31442
31443         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
31444         gnulib rather than the other way around.
31445         * config/srclistvars.sh (COREUTILS): Remove.
31446
31447 2006-08-22  Jim Meyering  <jim@meyering.net>
31448
31449         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
31450
31451         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
31452
31453 2006-08-22  Eric Blake  <ebb9@byu.net>
31454
31455         * modules/regexprops-generic: New file.
31456         * MODULES.html.sh (Support for building documentation): List it.
31457
31458 2006-08-22  Eric Blake  <ebb9@byu.net>
31459
31460         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
31461         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
31462         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
31463         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
31464
31465 2006-08-22  Bruno Haible  <bruno@clisp.org>
31466
31467         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
31468         and lib_LTLIBRARIES like the other lib_* variables.
31469
31470 2006-08-22  Bruno Haible  <bruno@clisp.org>
31471
31472         * build-aux/x-to-1.in: New file, from GNU gettext.
31473
31474 2006-08-22  Bruno Haible  <bruno@clisp.org>
31475
31476         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
31477         <utmpx.h> exists.
31478
31479 2006-08-22  Bruno Haible  <bruno@clisp.org>
31480
31481         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
31482         <utmpx.h> exists.
31483
31484 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31485
31486         BeOS portability.
31487         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
31488         exist.
31489         Problem reported by Bruno Haible.
31490
31491 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31492
31493         Avoid the need for AC_LIBSOURCES in m4 macros.
31494         * modules/acl (EXTRA_DIST): Add acl.h.
31495         * modules/argmatch (Files): Add m4/argmatch.m4.
31496         (configure.ac): Add gl_ARGMATCH.
31497         (EXTRA_DIST): Renamed from lib_SOURCES, for
31498         consistency with the other modules.  Remove argmatch.c.
31499         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
31500         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
31501         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
31502         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
31503         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
31504         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
31505         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
31506         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
31507         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
31508         * modules/closeout (EXTRA_DIST): Add closeout.h.
31509         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
31510         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
31511         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
31512         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
31513         dirname.h; remove basename.c and stripslash.c.
31514         * modules/exclude (EXTRA_DIST): Add exclude.h.
31515         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
31516         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
31517         * modules/file-type (EXTRA_DIST): Add file-type.h.
31518         * modules/filemode (EXTRA_DIST): Add filemode.h.
31519         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
31520         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
31521         * modules/fpending (EXTRA_DIST): Add __fpending.h.
31522         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
31523         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
31524         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
31525         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
31526         * modules/getdate (EXTRA_DIST): Add getdate.c.
31527         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
31528         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
31529         * modules/getpass (EXTRA_DIST): Add getpass.h.
31530         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
31531         * modules/group-member (EXTRA_DIST): Add group-member.h.
31532         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
31533         * modules/hash (EXTRA_DIST): Add hash.h.
31534         * modules/human (EXTRA_DIST): Add human.h.
31535         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
31536         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
31537         * modules/lchown (EXTRA_DIST): Add lchown.h.
31538         * modules/long-options (EXTRA_DIST): Add long-options.h.
31539         * modules/lstat (EXTRA_DIST): Add lstat.h.
31540         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
31541         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
31542         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
31543         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
31544         * modules/memxor (EXTRA_DIST): Add memxor.h.
31545         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
31546         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
31547         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
31548         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
31549         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
31550         * modules/physmem (EXTRA_DIST): Add physmem.h.
31551         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
31552         * modules/posixver (EXTRA_DIST): Add posixver.h.
31553         * modules/quote (EXTRA_DIST): Add quote.h.
31554         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
31555         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
31556         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
31557         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
31558         regex_internal.h regexec.c.
31559         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
31560         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
31561         * modules/same (EXTRA_DIST): Add same.h.
31562         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
31563         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
31564         * modules/savedir (EXTRA_DIST): Add savedir.h.
31565         * modules/sha1 (EXTRA_DIST): Add sha1.h.
31566         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
31567         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
31568         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
31569         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
31570         * modules/strdup (EXTRA_DIST): Add strdup.h.
31571         * modules/strftime (EXTRA_DIST): Add strftime.h.
31572         * modules/strndup (EXTRA_DIST): Add strndup.h.
31573         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
31574         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
31575         * modules/time_r (EXTRA_DIST): Add time_r.h.
31576         * modules/timespec (EXTRA_DIST): Add timespec.h.
31577         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
31578         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
31579         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
31580         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
31581         * modules/userspec (EXTRA_DIST): Add userspec.h.
31582         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
31583         * modules/utimens (EXTRA_DIST): Add utimens.h.
31584         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
31585         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
31586         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
31587         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
31588         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
31589         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
31590         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
31591         * modules/yesno (EXTRA_DIST): Add yesno.h.
31592
31593 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
31594
31595         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
31596
31597         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
31598         * m4/dev-ino.m4, same-inode.m4: Remove.
31599
31600         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
31601         * m4/acl.m4 (AC_FUNC_ACL):
31602         * m4/backupfile.m4 (gl_BACKUPFILE):
31603         * m4/c-strtod.m4 (gl_C99_STRTOLD):
31604         * m4/canon-host.m4 (gl_CANON_HOST):
31605         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
31606         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
31607         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
31608         * m4/cloexec.m4 (gl_CLOEXEC):
31609         * m4/close-stream.m4 (gl_CLOSE_STREAM):
31610         * m4/closeout.m4 (gl_CLOSEOUT):
31611         * m4/dirfd.m4 (gl_FUNC_DIRFD):
31612         * m4/dirname.m4 (gl_DIRNAME):
31613         * m4/exclude.m4 (gl_EXCLUDE):
31614         * m4/exitfail.m4 (gl_EXITFAIL):
31615         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
31616         * m4/file-type.m4 (gl_FILE_TYPE):
31617         * m4/filemode.m4 (gl_FILEMODE):
31618         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
31619         * m4/fpending.m4 (gl_FUNC_FPENDING):
31620         * m4/fprintftime.m4 (gl_FPRINTFTIME):
31621         * m4/fts.m4 (gl_FUNC_FTS):
31622         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
31623         * m4/getdate.m4 (gl_GETDATE):
31624         * m4/gethrxtime.m4 (gl_GETHRXTIME):
31625         * m4/getpagesize.m4 (gl_GETPAGESIZE):
31626         * m4/getpass.m4 (gl_FUNC_GETPASS):
31627         * m4/gettime.m4 (gl_GETTIME):
31628         * m4/getugroups.m4 (gl_GETUGROUPS):
31629         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
31630         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
31631         * m4/hard-locale.m4 (gl_HARD_LOCALE):
31632         * m4/hash.m4 (gl_HASH):
31633         * m4/idcache.m4 (gl_IDCACHE):
31634         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
31635         * m4/lchown.m4 (gl_FUNC_LCHOWN):
31636         * m4/long-options.m4 (gl_LONG_OPTIONS):
31637         * m4/lstat.m4 (gl_FUNC_LSTAT):
31638         * m4/md5.m4 (gl_MD5):
31639         * m4/memcasecmp.m4 (gl_MEMCASECMP):
31640         * m4/memcoll.m4 (gl_MEMCOLL):
31641         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
31642         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
31643         * m4/memxor.m4 (gl_MEMXOR):
31644         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
31645         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
31646         * m4/modechange.m4 (gl_MODECHANGE):
31647         * m4/mountlist.m4 (gl_MOUNTLIST):
31648         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
31649         * m4/openat.m4 (gl_FUNC_OPENAT):
31650         * m4/pathmax.m4 (gl_PATHMAX):
31651         * m4/physmem.m4 (gl_PHYSMEM):
31652         * m4/posixtm.m4 (gl_POSIXTM):
31653         * m4/posixver.m4 (gl_POSIXVER):
31654         * m4/quote.m4 (gl_QUOTE):
31655         * m4/quotearg.m4 (gl_QUOTEARG):
31656         * m4/readtokens.m4 (gl_READTOKENS):
31657         * m4/readutmp.m4 (gl_READUTMP):
31658         * m4/regex.m4 (gl_REGEX):
31659         * m4/safe-read.m4 (gl_SAFE_READ):
31660         * m4/safe-write.m4 (gl_SAFE_WRITE):
31661         * m4/same.m4 (gl_SAME):
31662         * m4/save-cwd.m4 (gl_SAVE_CWD):
31663         * m4/savedir.m4 (gl_SAVEDIR):
31664         * m4/settime.m4 (gl_SETTIME):
31665         * m4/sha1.m4 (gl_SHA1):
31666         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
31667         * m4/stat-macros.m4 (gl_STAT_MACROS):
31668         * m4/stat-time.m4 (gl_STAT_TIME):
31669         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
31670         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
31671         * m4/strdup.m4 (gl_FUNC_STRDUP):
31672         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
31673         * m4/strndup.m4 (gl_FUNC_STRNDUP):
31674         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
31675         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
31676         * m4/time_r.m4 (gl_TIME_R):
31677         * m4/timespec.m4 (gl_TIMESPEC):
31678         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
31679         * m4/unlinkdir.m4 (gl_UNLINKDIR):
31680         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
31681         * m4/userspec.m4 (gl_USERSPEC):
31682         * m4/utimecmp.m4 (gl_UTIMECMP):
31683         * m4/utimens.m4 (gl_UTIMENS):
31684         * m4/xalloc.m4 (gl_XALLOC):
31685         * m4/xgetcwd.m4 (gl_XGETCWD):
31686         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
31687         * m4/xreadlink.m4 (gl_XREADLINK):
31688         * m4/xstrtod.m4 (gl_XSTRTOD):
31689         * m4/yesno.m4 (gl_YESNO):
31690         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
31691         to get the necessary .h files and whatnot.
31692
31693 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
31694             Bruno Haible  <bruno@clisp.org>
31695
31696         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
31697         /bin/sh understanding of '!' conditional negation.
31698
31699 2006-08-21  Jim Meyering  <jim@meyering.net>
31700
31701         * modules/openat (Depends-on): Really alphabetize.
31702
31703         * modules/acl (Depends-on): Add error and quote.
31704
31705         * check-module (find_included_lib_files): Add at-func.c to the
31706         ok-to-include-more-than-once white list.
31707
31708         * modules/openat (Depends-on): Add lstat.  Alphabetize.
31709
31710 2006-08-21  Bruno Haible  <bruno@clisp.org>
31711
31712         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
31713         Emit a pkgdata_DATA variable only if some snippets add contents to it.
31714         Reported by Martin Lambers <marlam@marlam.de>.
31715
31716 2006-08-21  Bruno Haible  <bruno@clisp.org>
31717
31718         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
31719         specify an installation location, don't emit a noinst_LIBRARIES or
31720         noinst_LTLIBRARIES assignment.
31721
31722 2006-08-21  Bruno Haible  <bruno@clisp.org>
31723
31724         BeOS portability.
31725         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
31726         BeOS has mbrtowc() but no <wctype.h>.
31727
31728 2006-08-21  Bruno Haible  <bruno@clisp.org>
31729
31730         BeOS portability.
31731         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
31732         exist.
31733
31734 2006-08-21  Bruno Haible  <bruno@clisp.org>
31735
31736         BeOS portability.
31737         * lib/mbchar.h: Include <wctype.h> only if it exists.
31738
31739 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
31740
31741         Remove files that are no longer needed by their respective modules.
31742         * m4/obstack.m4: Remove.
31743         * m4/strerror_r.m4: Remove.
31744         * m4/uint32_t.m4: Remove.
31745         * m4/uintptr_t.m4: Remove.
31746         * m4/ullong_max.m4: Remove.
31747         * m4/xstrtoimax.m4: Remove.
31748         * m4/xstrtoumax.m4: Remove.
31749
31750         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
31751         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
31752         dependencies now capture this.
31753
31754         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
31755         Do not use AC_LIBSOURCES, since gnulib modules now do this.
31756         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
31757         * m4/human.m4 (gl_HUMAN): Likewise.
31758         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
31759         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
31760
31761         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
31762
31763         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
31764         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
31765         stdint.
31766         * m4/human.m4 (gl_HUMAN): Likewise.
31767         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
31768         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
31769         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
31770         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
31771         * m4/xstrtol (gl_XSTRTOL): Likewise.
31772
31773         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
31774         AC_TYPE_LONG_LONG_INT.
31775         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
31776         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
31777         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
31778         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
31779
31780         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
31781         on stdbool.
31782
31783         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
31784         (gl_PREREQ_XSTRTOUL): Remove.
31785
31786         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
31787
31788         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
31789         mode.
31790
31791 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
31792
31793         Add and change modules to make it easier for coreutils to use
31794         gnulib-tool.
31795         * modules/backupfile (Files): Remove m4/d-ino.m4.
31796         (Depends-on): Add d-ino.
31797         * modules/cycle-check (Depends-on): Add stdint.
31798         (lib_SOURCES): Add cycle-check.h.
31799         * modules/d-ino: New module.
31800         * modules/d-type: New module.
31801         * modules/error (Files): Remove m4/strerror_r.m4.
31802         * modules/filemode (Files): Add m4/st_dm_mode.m4.
31803         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
31804         m4/inttypes_h.m4, m4/uintmax_t.m4.
31805         (Depends-on): Add stdint.
31806         (lib_SOURCES): Add fsusage.h.
31807         * modules/getcwd (Files): Remove d-ino.m4.
31808         (Depends-on): Add d-ino.
31809         * modules/getndelim2 (Depends-on): Add stdint.
31810         * modules/glob (Files): Remove m4/d-type.m4.
31811         (Depends-on): Add d-type.
31812         * modules/host-os: New module.
31813         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
31814         m4/inttypes_h.m4, m4/uintmax_t.m4.
31815         * Depends-on: Add stdint.
31816         (lib_SOURCES): Add human.h.
31817         * modules/inttostr (Files): Remove m4/intmax_t.m4,
31818         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
31819         m4/uintmax_t.m4, m4/ulonglong.m4.
31820         (Depends-on): Add stdint.
31821         (EXTRA_DIST): Add inttostr.h.
31822         * modules/lchmod: New module.
31823         * modules/link-follow: New module.
31824         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
31825         (Depends-on): Add lchmod.
31826         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
31827         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
31828         (Depends-on): Add stdint.
31829         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
31830         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
31831         (Depends-on): Add stdint.
31832         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
31833         * modules/perl: New module.
31834         * modules/regex (Depends-on): Add stdint.
31835         * modules/rmdir-errno: New module.
31836         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
31837         m4/intmax_t.m4.
31838         (Depends-on): Add stdint.
31839         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
31840         m4/uintmax_t.m4.
31841         (Depends-on): Add stdint.
31842         * modules/unlink-busy: New module.
31843         * modules/utimecmp (Depends-on): Add stdint.
31844         * modules/uptime: New module.
31845         * modules/winsz-ioctl: New module.
31846         * modules/winsz-termios: New module.
31847         * modules/xnanosleep (Depends-on): Add nanosleep.
31848         * modules/ullong_max: Remove.
31849         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
31850         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
31851         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
31852         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
31853         (Depends-on): Add inttypes.
31854         (lib_SOURCES): Add xstrtol.h.
31855         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
31856         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
31857         * MODULES.html.sh: Move 'assert' into the assert section.
31858         Move 'dummy' into the linking section.
31859         Remove ullong_max.
31860         Add section for compatibility checks for POSIX:2001 functions,
31861         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
31862         winsz-ioctl, and winsz-termios into it.
31863         Add lchmod.
31864         Add top-level Misc section and put host-os, perl, and uptime
31865         into it.
31866
31867 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
31868
31869         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
31870         now assume the stdint module.  Do not include inttypes.h.
31871         * lib/fsusage.h: Likewise.
31872         * lib/getndelim2.c: Likewise.
31873         * lib/human.h: Likewise.
31874         * lib/inttostr.h: Likewise.
31875         * lib/obstack.c: Likewise.
31876         * lib/regex_internal.h: Likewise.
31877         * lib/tempname.c: Likewise.
31878         * lib/utimecmp.c: Likewise.
31879         * lib/xstrtol.h: Likewise.
31880
31881         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
31882
31883         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
31884         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
31885         * lib/xtime.h: Likewise.
31886
31887 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
31888
31889         * modules/openat (Files): Add lib/fchmodat.c.
31890         Fixes problem reported by Jay Youngman.
31891
31892 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
31893
31894         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
31895         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
31896
31897 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
31898             Bruno Haible  <bruno@clisp.org>
31899
31900         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
31901         and is a script that invokes bison. Tighten the code. Add comments.
31902
31903 2006-08-18  Jim Meyering  <jim@meyering.net>
31904
31905         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
31906         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
31907         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
31908         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
31909
31910 2006-08-18  Bruno Haible  <bruno@clisp.org>
31911
31912         * modules/bison-i18n: New file.
31913         * MODULES.html.sh (Internationalization functions): Add it.
31914
31915 2006-08-18  Bruno Haible  <bruno@clisp.org>
31916
31917         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
31918         sys/statvfs.h. When getmntinfo was found, check its declaration and
31919         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
31920
31921 2006-08-18  Bruno Haible  <bruno@clisp.org>
31922
31923         * m4/bison-i18n.m4: New file, from bison.
31924
31925 2006-08-18  Bruno Haible  <bruno@clisp.org>
31926
31927         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
31928         (ME_DUMMY): Treat "kernfs" as a dummy.
31929         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
31930
31931 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
31932
31933         Update from coreutils.
31934
31935         2006-08-15  Jim Meyering  <jim@meyering.net>
31936
31937         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
31938
31939         2006-01-17  Jim Meyering  <jim@meyering.net>
31940
31941         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
31942
31943         2006-01-11  Jim Meyering  <jim@meyering.net>
31944
31945         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
31946         Check for the lchmod function.
31947
31948 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
31949
31950         Update from coreutils.
31951
31952         * lib/__fpending.h: Add copyright notice.
31953         * lib/fprintftime.h: Likewise.
31954         * lib/savedir.c: Use (C) in copyright notice.
31955         * lib/savedir.h: Likewise.
31956
31957         2006-08-15  Jim Meyering  <jim@meyering.net>
31958
31959         * lib/at-func.c: New file, with the logic of all emulated at-functions.
31960         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
31961         in support of the EXPECTED_ERRNO macro.
31962         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
31963         definitions.  Instead, define the appropriate symbols and include
31964         "at-func.c".
31965         * lib/mkdirat.c (mkdirat): Likewise.
31966         * lib/fchmodat.c (fchmodat): Likewise.
31967         (ENOSYS): Remove definition.
31968         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
31969         it.  Don't include "unistd--.h" -- it wasn't ever used.
31970
31971         2006-01-17  Jim Meyering  <jim@meyering.net>
31972
31973         Rewrite fts.c not to change the current working directory,
31974         by using openat, fstatat, fdopendir, etc..
31975
31976         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
31977         (HAVE_OPENAT_SUPPORT): Define.
31978         [_LIBC] (fchdir): Don't undef or define; no longer used.
31979         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
31980         Now, this `function' always succeeds, and consumes its file descriptor
31981         parameter -- so callers must not close such FDs.  Update callers.
31982         (diropen_fd, opendirat, cwd_advance_fd): New functions.
31983         (diropen): Add parameter, SP.  Adjust all callers.
31984         Implement using diropen_fd, rather than open.
31985         (fts_open): Initialize new member, fts_cwd_fd.
31986         Remove fts_rft-setting code.
31987         (fts_close): Close fts_cwd_fd, if necessary.
31988         (__opendir2): Define in terms of opendir or opendirat,
31989         depending on whether the FST_NOCHDIR flag is set.
31990         (fts_build): Since fts_safe_changedir consumes its FD, and since
31991         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
31992         and close the dup'd file descriptor upon failure.
31993         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
31994         (fts_safe_changedir): Tweak semantics to reflect that this function
31995         now calls cwd_advance_fd and hence consumes its FD argument.
31996         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
31997         [struct FTS] (fts_rft): Remove now-unused member.
31998         [struct FTS] (fts_cycle.state): Improve comment.
31999
32000         * lib/openat.c (openat_needs_fchdir): New function.
32001         * lib/openat.h (openat_needs_fchdir): Declare it.
32002
32003 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
32004
32005         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
32006         Problem and fix reported by Pádraig Brady in
32007         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
32008
32009 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32010
32011         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
32012
32013 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32014
32015         * lib/memcoll.c (memcoll): Optimize for the common case where the
32016         arguments are bytewise equal.
32017
32018 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
32019
32020         * doc/regexprops-generic.texi: Add a copyright notice.
32021
32022 2006-08-15  Bruno Haible  <bruno@clisp.org>
32023
32024         * modules/tmpdir (License): Change to LGPL.
32025
32026 2006-08-15  Bruno Haible  <bruno@clisp.org>
32027
32028         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
32029         module.
32030
32031 2006-08-14  Simon Josefsson  <jas@extundo.com>
32032
32033         * config/srclist.txt: Add gnupload.
32034
32035 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32036
32037         Change copyright notice from LGPL 2 to GPL 2, since that's the
32038         standard form used in the gnulib repository.
32039         * tests/test-lock.c: Likewise.
32040         * tests/test-stdint.c: Likewise.
32041         * tests/test-tls.c: Likewise.
32042
32043         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
32044         prelude-manager.  User shorter URLs for GNU projects, without '?'.
32045         Add copyright notice.
32046
32047         * check-module: Add copyright notice.  Output a copyright
32048         notice if "--version" is specified.
32049         * modules/COPYING: New file.
32050         * tests/test-getaddrinfo.c: Add copyright notice.
32051         * tests/test-verify.c: Likewise.
32052
32053 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32054
32055         Change copyright notice from LGPL 2 to GPL 2, since that's the
32056         standard form used in the gnulib repository.
32057         * lib/lock.c: LGPL -> GPL.
32058         * lib/lock.h: Likewise.
32059         * lib/strnlen1.c: Likewise.
32060         * lib/strnlen1.h: Likewise.
32061         * lib/tls.c: Likewise.
32062         * lib/tls.h: Likewise.
32063         * lib/tmpdir.c: Likewise.
32064
32065         * lib/TODO: Remove; this belongs only in coreutils.
32066
32067 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32068
32069         Add copyright notices to long-enough files that lack them, since
32070         otherwise the files aren't clearly free.  Use the same notice that
32071         getdate.texi already uses.
32072         * doc/alloca-opt.texi: Add copyright notice.
32073         * doc/alloca.texi: Likewise.
32074         * doc/ctime.texi: Likewise.
32075         * doc/functions.texi: Likewise.
32076         * doc/gcd.texi: Likewise.
32077         * doc/gnulib-tool.texi: Likewise.
32078         * doc/inet_ntoa.texi: Likewise.
32079         * doc/visibility.texi: Likewise.
32080
32081         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
32082         * doc/quote.texi: Add copyright notice.
32083
32084         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
32085         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
32086         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
32087         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
32088         is now obsolete, and give a pointer to the Sun list.
32089         Add copyright notice.
32090
32091 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
32092
32093         * config/srclistvars.sh: Add copyright notice.
32094
32095 2006-08-14  Eric Blake  <ebb9@byu.net>
32096
32097         Import the following change from libc:
32098
32099         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
32100
32101         Upstream bug 2997.
32102         * lib/misc/error.c: Add space between program name and message if file
32103         name is missing.
32104
32105 2006-08-12  Karl Berry  <karl@gnu.org>
32106
32107         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
32108         remove, these originate in gnulib now.
32109
32110 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32111
32112         * doc/Makefile (standards.info standards.html standards.dvi):
32113         Also depend on make-stds.texi.
32114
32115 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
32116
32117         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
32118         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
32119
32120         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
32121         in wchar_t.  Problem reported by Eric Blake.
32122
32123         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
32124         LEN is smaller than SIZE.  Suggested by Bruno Haible.
32125         Also, help the compiler to keep LEN in a register.
32126
32127 2006-08-11  Eric Blake  <ebb9@byu.net>
32128
32129         * users.txt: Sort.  Add tar.
32130
32131 2006-08-11  Bruno Haible  <bruno@clisp.org>
32132
32133         * users.txt: New file.
32134
32135 2006-08-11  Bruno Haible  <bruno@clisp.org>
32136
32137         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
32138         before <wchar.h>. Needed for OSF/1 and BSD/OS.
32139
32140 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32141
32142         * modules/snprintf (Depends-on): Remove minmax.
32143         (Maintainer): Add self and Bruno.
32144
32145 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
32146
32147         * lib/.cppi-disable: Add snprintf.h, socket_.h.
32148         * lib/snprintf.c: Include <errno.h> and <limits.h>.
32149         (EOVERFLOW): Define if the system does not.
32150         Do not include "minmax.h"; it wasn't used.
32151         (snprintf): Don't assume size_t promotes to an unsigned type.
32152         Fix bug when generated string was too long for the buffer: the
32153         buffer's contents are supposed to be the initial prefix of the
32154         output.  Don't assume vasnprintf returns EOVERFLOW if the size
32155         exceeds INT_MAX; do the check ourselves.
32156
32157         Import the following changes from libc:
32158
32159         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
32160
32161         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
32162         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
32163         set wc to the byte which couldn't be converted.
32164         (re_string_reconstruct): Don't clear valid_raw_len before calling
32165         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
32166         tip_context using re_string_context_at.
32167
32168         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
32169
32170         * lib/posix/regex.h: g++ still cannot handled [restrict].
32171
32172         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
32173
32174         * lib/posix/regex.h: Remove special handling for VMS.
32175
32176 2006-08-10  Jim Meyering  <jim@meyering.net>
32177
32178         * modules/same-inode: New module.
32179         * modules/dev-ino: New module.
32180         * modules/cycle-check: Depend on these modules, rather than simply
32181         including their .h files.
32182         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
32183         required via m4/cycle-check.m4.
32184         * modules/same: Depend on new same-inode module, rather than
32185         including same-inode.h.
32186         * modules/chdir-safer: New file.
32187
32188         * modules/chown (Depends-on): Add stat-macros.
32189
32190 2006-08-10  Jim Meyering  <jim@meyering.net>
32191
32192         * m4/cycle-check.m4: New file.
32193         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
32194         * m4/dev-ino.m4, m4/same-inode.m4: New files.
32195
32196 2006-08-10  Eric Blake  <ebb9@byu.net>
32197
32198         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
32199         in from original proposal.
32200
32201 2006-08-10  Eric Blake  <ebb9@byu.net>
32202         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
32203
32204         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
32205         namespace.
32206
32207 2006-08-10  Bruno Haible  <bruno@clisp.org>
32208
32209         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
32210         as well.
32211
32212 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32213
32214         Sync from coreutils.
32215
32216         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
32217
32218         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
32219         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
32220
32221 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32222
32223         * modules/restrict: Remove; no longer needed now that we assume
32224         Autoconf 2.59 or later.
32225         * MODULES.html.sh: Remove 'restrict'.
32226         * modules/argp (Depends-on): Remove 'restrict'.
32227         * modules/base64 (Depends-on): Likewise.
32228         * modules/gc (Depends-on): Likewise.
32229         * modules/getaddrinfo (Depends-on): Likewise.
32230         * modules/glob (Depends-on): Likewise.
32231         * modules/inet_ntop (Depends-on): Likewise.
32232         * modules/inet_pton (Depends-on): Likewise.
32233         * modules/memxor (Depends-on): Likewise.
32234         * modules/regex (Depends-on): Likewise.
32235         * modules/strtok_r (Depends-on): Likewise.
32236         * modules/time_r (Depends-on): Likewise.
32237
32238 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
32239
32240         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
32241         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
32242         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
32243         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
32244         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
32245         * m4/memxor.m4 (gl_MEMXOR): Likewise.
32246         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
32247         gl_C_RESTRICT replaced by AC_C_RESTRICT.
32248
32249         Merge from coreutils.
32250         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
32251         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
32252         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
32253         * m4/time_r.m4 (gl_TIME_R): Likewise.
32254
32255 2006-08-09  Karl Berry  <karl@gnu.org>
32256
32257         * config/srclist.txt: no more gettext-tools, per Bruno.
32258
32259 2006-08-08  Eric Blake  <ebb9@byu.net>
32260
32261         * modules/verror: New module.
32262         * MODULES.html.sh: Document it.
32263
32264 2006-08-08  Eric Blake  <ebb9@byu.net>
32265
32266         * lib/verror.h, lib/verror.c: New files.
32267
32268 2006-08-08  Eric Blake  <ebb9@byu.net>
32269
32270         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
32271         verror_at_line output complies with GNU Coding Standards even when
32272         file is NULL.
32273
32274 2006-08-07  Bruno Haible  <bruno@clisp.org>
32275
32276         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
32277         versions of AIX.
32278         Reported by Ralf Wildenhues.
32279
32280 2006-08-07  Bruno Haible  <bruno@clisp.org>
32281
32282         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
32283         in an AC_DEFUN. Needed so that the autoconf snippets can use
32284         AC_REQUIRE.
32285
32286 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32287
32288         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32289         Initialize pkgdata_DATA.
32290         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
32291         overriding it.
32292
32293 2006-08-06  Eric Blake  <ebb9@byu.net>
32294
32295         * lib/error.h: Fold in some upstream changes from glibc.
32296         * lib/error.c: Likewise.
32297
32298 2006-08-04  Bruno Haible  <bruno@clisp.org>
32299
32300         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32301         Make the mostlyclean-local rule depend on mostlyclean-generic.
32302         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
32303
32304 2006-07-31  Bruno Haible  <bruno@clisp.org>
32305
32306         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
32307         <stdlib.h>, <string.h>.
32308
32309 2006-07-30  Bruno Haible  <bruno@clisp.org>
32310
32311         * modules/readlink (License): Change to LGPL.
32312
32313 2006-07-30  Bruno Haible  <bruno@clisp.org>
32314
32315         * modules/javaversion (Makefile.am): Distribute javaversion.java and
32316         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
32317         set PKGDATADIR to point to it.
32318
32319 2006-07-30  Bruno Haible  <bruno@clisp.org>
32320
32321         * modules/csharpexec (configure.ac): Comment out macro invocation.
32322         * modules/javaexec (configure.ac): Likewise.
32323         * modules/javacomp-script (configure.ac): Likewise.
32324
32325         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
32326
32327 2006-07-30  Bruno Haible  <bruno@clisp.org>
32328
32329         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
32330         linked-list.
32331
32332 2006-07-30  Bruno Haible  <bruno@clisp.org>
32333
32334         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
32335
32336 2006-07-30  Bruno Haible  <bruno@clisp.org>
32337
32338         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
32339         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
32340         get removed.
32341
32342 2006-07-29  Bruno Haible  <bruno@clisp.org>
32343
32344         Make it possible for gnulib-tool to work with locally modified or
32345         augmented gnulib repositories.
32346         * gnulib-tool (func_usage): Document --local-dir option.
32347         (local_gnulib_dir): New variable.
32348         Handle --local-dir option.
32349         (func_lookup_file): New function.
32350         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
32351         (func_get_description, func_get_filelist, func_get_description,
32352         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
32353         func_get_automake_snippet, func_get_include_directive,
32354         func_get_license, func_get_maintainer): Use func_lookup_file.
32355         (func_import, func_create_testdir): Use func_lookup_file.
32356
32357 2006-07-29  Bruno Haible  <bruno@clisp.org>
32358
32359         * modules/setenv (Depends-on): Add unistd.
32360
32361 2006-07-29  Bruno Haible  <bruno@clisp.org>
32362
32363         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
32364
32365 2006-07-29  Bruno Haible  <bruno@clisp.org>
32366
32367         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
32368
32369 2006-07-29  Bruno Haible  <bruno@clisp.org>
32370
32371         * gnulib-tool (import, update): If there is no Makefile.am, look at
32372         aclocal.m4, instead of bailing out.
32373
32374 2006-07-29  Bruno Haible  <bruno@clisp.org>
32375
32376         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
32377         Categorize the options by when they are useful.
32378
32379 2006-07-29  Bruno Haible  <bruno@clisp.org>
32380
32381         * gnulib-tool (func_usage): Document option --no-libtool.
32382         Handle option --no-libtool.
32383         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
32384         for changed semantics of $libtool variable.
32385         (func_import): Likewise. If libtool is not used, show this through
32386         an option --no-libtool.
32387         (func_create_testdir): Update.
32388
32389 2006-07-29  Bruno Haible  <bruno@clisp.org>
32390
32391         * gnulib-tool (func_import): Extend error message about missing
32392         --doc-base.
32393
32394 2006-07-29  Bruno Haible  <bruno@clisp.org>
32395
32396         * gnulib-tool (func_import): Don't create the $docbase directory if
32397         there is no file to store there.
32398
32399 2006-07-29  Bruno Haible  <bruno@clisp.org>
32400
32401         * gnulib-tool (autoconf_minversion): If a --dir option is given and
32402         relevant, look for configure.ac there, not in the current directory.
32403         Also use a simple search for AC_PREREQ, not "autoconf --trace".
32404
32405 2006-07-29  Bruno Haible  <bruno@clisp.org>
32406
32407         * gnulib-tool (SORT): New variable.
32408         (func_usage): Undocument --assume-autoconf option.
32409         Remove --assume-autoconf option handling.
32410         (autoconf_minversion): Determine from the contents of configure.ac.
32411         (func_import): Remove autoconf_minversion handling.
32412         Suggested by Eric Blake.
32413
32414 2006-07-29  Bruno Haible  <bruno@clisp.org>
32415
32416         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
32417
32418 2006-07-29  Bruno Haible  <bruno@clisp.org>
32419
32420         * config/srclist.txt (*setenv.[ch]): Remove rules.
32421
32422 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32423
32424         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
32425
32426 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32427
32428         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
32429         arpa/inet.h.
32430
32431 2006-07-28  Simon Josefsson  <jas@extundo.com>
32432
32433         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
32434         * modules/inet_pton (Depends-on): Likewise.
32435
32436 2006-07-28  Simon Josefsson  <jas@extundo.com>
32437
32438         * m4/netinet_in_h.m4: New file.
32439
32440 2006-07-28  Simon Josefsson  <jas@extundo.com>
32441
32442         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
32443         #include's.
32444
32445 2006-07-28  Simon Josefsson  <jas@extundo.com>
32446
32447         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
32448         #include's.
32449
32450 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
32451
32452         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
32453         setgid on directories only if they set these bits.
32454         * lib/modechange.h: Remove obsolete comment about masks.
32455
32456 2006-07-28  Eric Blake  <ebb9@byu.net>
32457
32458         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
32459         macro expansion.
32460
32461 2006-07-28  Bruno Haible  <bruno@clisp.org>
32462
32463         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
32464
32465 2006-07-28  Bruno Haible  <bruno@clisp.org>
32466
32467         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
32468
32469 2006-07-28  Bruno Haible  <bruno@clisp.org>
32470
32471         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
32472         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
32473         Define fallbacks.
32474         Avoids link error on FreeBSD 4.x.
32475         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
32476
32477         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
32478         encoding.
32479         * lib/mbswidth.c (iswcntrl): Likewise.
32480
32481 2006-07-27  Bruno Haible  <bruno@clisp.org>
32482
32483         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
32484         test.
32485
32486 2006-07-27  Bruno Haible  <bruno@clisp.org>
32487
32488         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
32489         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
32490         defined.
32491
32492 2006-07-26  Eric Blake  <ebb9@byu.net>
32493
32494         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
32495
32496 2006-07-26  Eric Blake  <ebb9@byu.net>
32497
32498         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
32499         like mingw that lack mkstemp.
32500         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
32501         avoid compilation warning on mingw.
32502
32503 2006-07-26  Bruno Haible  <bruno@clisp.org>
32504
32505         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
32506         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
32507         INT_FAST*_MIN, INTPTR_MIN.
32508
32509 2006-07-25  Bruno Haible  <bruno@clisp.org>
32510
32511         * modules/version-etc (Depends-on): Add stdarg.
32512
32513 2006-07-25  Bruno Haible  <bruno@clisp.org>
32514
32515         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
32516         complex commands.
32517
32518 2006-07-25  Bruno Haible  <bruno@clisp.org>
32519
32520         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
32521         defined in <stdarg.h> or config.h.
32522
32523 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
32524
32525         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
32526         (gl_STDIO_SAFER): Remove.
32527
32528 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
32529
32530         * MODULES.html.sh (File stream based Input/Output):
32531         Add fopen-safer, tmpfile-safer; remove stdio-safer.
32532         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
32533         * modules/fopen-safer, modules/tmpfile-safer: New files.
32534         * modules/stdio-safer: Remove.
32535
32536 2006-07-24  Bruno Haible  <bruno@clisp.org>
32537
32538         * modules/tmpdir: New file.
32539         * MODULES.html.sh (File system functions): Add it.
32540
32541 2006-07-24  Bruno Haible  <bruno@clisp.org>
32542
32543         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
32544         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
32545
32546 2006-07-24  Bruno Haible  <bruno@clisp.org>
32547
32548         * modules/clean-temp: New file.
32549
32550 2006-07-24  Bruno Haible  <bruno@clisp.org>
32551
32552         * m4/tmpdir.m4: New file, from GNU gettext.
32553
32554 2006-07-24  Bruno Haible  <bruno@clisp.org>
32555
32556         * lib/tmpdir.h: New file, from GNU gettext.
32557         * lib/tmpdir.c: New file, from GNU gettext.
32558
32559 2006-07-24  Bruno Haible  <bruno@clisp.org>
32560
32561         * lib/clean-temp.h: New file, from GNU gettext.
32562         * lib/clean-temp.c: New file, from GNU gettext.
32563
32564 2006-07-23  Eric Blake  <ebb9@byu.net>
32565
32566         * modules/stdio-safer (Files): Add tmpfile-safer.c.
32567         (Depends-on): Add binary-io.
32568
32569 2006-07-23  Eric Blake  <ebb9@byu.net>
32570
32571         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
32572
32573 2006-07-23  Eric Blake  <ebb9@byu.net>
32574
32575         * lib/tmpfile-safer.c: New file.
32576         * lib/stdio-safer.h (fopen_safer): Add prototype.
32577         * lib/stdio--.h (tmpfile): Make safer.
32578
32579 2006-07-23  Bruno Haible  <bruno@clisp.org>
32580
32581         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
32582         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
32583         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
32584         gl_linked_remove_at): Use it.
32585
32586 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32587         and Simon Josefsson <jas@extundo.com>
32588
32589         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
32590
32591         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
32592
32593 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32594
32595         * modules/close-stream: New file.
32596         * modules/closeout (Description): Make it clear that it exits
32597         with a diagnostic on error.
32598         (Depends-on): Add close-stream.  Remove fpending, stdbool.
32599         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
32600
32601 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32602
32603         * m4/close-stream.m4: New file.
32604
32605 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
32606
32607         * lib/close-stream.c, lib/close-stream.h: New files.
32608
32609 2006-07-22  Bruno Haible  <bruno@clisp.org>
32610
32611         Merge from GNU gettext 0.15.
32612
32613         2006-05-01  Bruno Haible  <bruno@clisp.org>
32614
32615                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
32616
32617         2006-07-22  Bruno Haible  <bruno@clisp.org>
32618
32619                 * modules/javaversion: New file.
32620                 * MODULES.html.sh (Java): Add javaversion.
32621
32622         2006-03-12  Bruno Haible  <bruno@clisp.org>
32623
32624                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
32625
32626         2005-12-04  Bruno Haible  <bruno@clisp.org>
32627
32628                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
32629                 (untested).
32630
32631         2006-06-21  Bruno Haible  <bruno@clisp.org>
32632
32633                 Avoid warnings from recent versions of mcs.
32634                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
32635                 -o, -L, -r any more. Use options documented since mcs-1.0
32636                 instead. Similarly for -g.
32637
32638         2005-12-04  Bruno Haible  <bruno@clisp.org>
32639
32640                 * build-aux/csharpcomp.sh.in: Suffix for resources is
32641                 .resources, not .resource.
32642
32643         2005-07-09  Bruno Haible  <bruno@clisp.org>
32644
32645                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
32646                 add a .dll suffix.
32647                 Reported by Mark Junker <mjscod@gmx.de>.
32648
32649         2006-07-22  Bruno Haible  <bruno@clisp.org>
32650
32651                 * modules/gettext: Upgrade to gettext-0.15.
32652                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
32653                 m4/visibility.m4.
32654                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
32655
32656 2006-07-22  Bruno Haible  <bruno@clisp.org>
32657
32658         Merge from GNU gettext 0.15.
32659
32660         2006-03-25  Bruno Haible  <bruno@clisp.org>
32661
32662                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
32663
32664         2006-07-21  Bruno Haible  <bruno@clisp.org>
32665
32666                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
32667                 "1.1".
32668
32669         2006-05-09  Bruno Haible  <bruno@clisp.org>
32670
32671                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
32672                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
32673                 for the conftestver execution.
32674
32675         2006-05-01  Bruno Haible  <bruno@clisp.org>
32676
32677                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
32678                 optional target-version argument. Verify that the compiler
32679                 groks source of the specified source-version, or add -source
32680                 option as necessary. Verify that the compiler produces
32681                 bytecode in the specified target-version, or add -target and
32682                 -source options as necessary. Make the result of the test
32683                 available as variable CONF_JAVAC. Also log error output in
32684                 config.log.
32685
32686         2006-03-11  Bruno Haible  <bruno@clisp.org>
32687
32688                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
32689
32690         2006-05-09  Bruno Haible  <bruno@clisp.org>
32691
32692                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
32693                 CLASSPATH_SEPARATOR to a semicolon.
32694
32695         2006-03-12  Bruno Haible  <bruno@clisp.org>
32696
32697                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
32698                 available as variable CONF_JAVA, for subsequent autoconf
32699                 tests. Also log error output in config.log.
32700
32701         2006-07-19  Bruno Haible  <bruno@clisp.org>
32702
32703                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
32704                 that getline works on glibc2 systems. Needed to avoid trouble
32705                 in relocatable.c.
32706                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
32707
32708         2005-12-04  Bruno Haible  <bruno@clisp.org>
32709
32710                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
32711                 launcher (untested).
32712
32713         2005-12-04  Bruno Haible  <bruno@clisp.org>
32714
32715                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
32716
32717         2006-07-22  Bruno Haible  <bruno@clisp.org>
32718
32719                 * gettext.m4: Update from GNU gettext-0.15.
32720                 * nls.m4: Likewise.
32721                 * po.m4: Likewise.
32722                 * inttypes-pri.m4: Likewise.
32723                 * inttypes-h.m4: Renamed from inttypes.m4.
32724                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
32725
32726 2006-07-22  Bruno Haible  <bruno@clisp.org>
32727
32728         Merge from GNU gettext 0.15.
32729
32730         2005-07-05  Bruno Haible  <bruno@clisp.org>
32731
32732                 * printf-args.c (printf_fetchargs): Work around broken
32733                 definition of wint_t on mingw.
32734
32735         2005-02-12  Bruno Haible  <bruno@clisp.org>
32736
32737                 * xallocsa.h: Add extern "C" for C++.
32738
32739         2006-05-17  Bruno Haible  <bruno@clisp.org>
32740
32741                 Cygwin portability.
32742                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
32743
32744         2006-04-30  Bruno Haible  <bruno@clisp.org>
32745
32746                 * progreloc.c: Include <mach-o/dyld.h> if available.
32747                 (find_executable): Use _NSGetExecutablePath when possible.
32748
32749         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
32750
32751                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
32752                 function.
32753
32754         2005-12-29  Bruno Haible  <bruno@clisp.org>
32755
32756                 * progreloc.c (set_program_name_and_installdir): Fix
32757                 compilation error.
32758
32759         2005-12-04  Bruno Haible  <bruno@clisp.org>
32760
32761                 Cygwin portability.
32762                 * progreloc.c: Include <windows.h> also on Cygwin.
32763                 (find_executable): Add support for Cygwin.
32764                 (set_program_name_and_installdir): Handle also platforms with
32765                 nonempty EXEEXT.
32766
32767         2006-07-11  Bruno Haible  <bruno@clisp.org>
32768
32769                 * javacomp.c: Fix a comment.
32770                 Reported by Jim Meyering.
32771
32772         2006-04-30  Bruno Haible  <bruno@clisp.org>
32773
32774                 * javacomp.h (compile_java_class): Add source_version,
32775                 target_version arguments.
32776                 * javacomp.c: Rewritten to choose only a compiler that
32777                 respects the specified source_version and target_version.
32778
32779         2006-06-27  Bruno Haible  <bruno@clisp.org>
32780
32781                 Assume correct S_ISDIR macro.
32782                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
32783
32784         2006-07-22  Bruno Haible  <bruno@clisp.org>
32785
32786                 * javaversion.h: New file, from GNU gettext.
32787                 * javaversion.c: New file, from GNU gettext.
32788                 * javaversion.java: New file, from GNU gettext.
32789                 * javaversion.class: New file, from GNU gettext.
32790
32791         2006-05-17  Bruno Haible  <bruno@clisp.org>
32792
32793                 Cygwin portability.
32794                 * javaexec.c (execute_java_class): Test for jview program
32795                 also on Cygwin.
32796
32797         2006-04-09  Bruno Haible  <bruno@clisp.org>
32798
32799                 * fatal-signal.c: Don't include string.h.
32800                 (at_fatal_signal): Use a copying loop instead of memcpy.
32801
32802         2005-12-04  Bruno Haible  <bruno@clisp.org>
32803
32804                 * csharpexec.c: Add support for 'clix' launcher (untested).
32805                 (execute_csharp_using_sscli): New function.
32806                 (execute_csharp_program): Call it.
32807
32808         2006-06-21  Bruno Haible  <bruno@clisp.org>
32809
32810                 Avoid warnings from recent versions of mcs.
32811                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
32812                 -o, -L, -r any more. Use options documented since mcs-1.0
32813                 instead. Similarly for -g.
32814
32815         2005-07-09  Bruno Haible  <bruno@clisp.org>
32816
32817                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
32818                 add a .dll suffix.
32819                 Reported by Mark Junker <mjscod@gmx.de>.
32820
32821         2006-06-17  Bruno Haible  <bruno@clisp.org>
32822
32823                 * config.charset: Update for NetBSD 3.0.
32824
32825         2006-05-17  Bruno Haible  <bruno@clisp.org>
32826
32827                 Cygwin portability.
32828                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
32829
32830         2006-05-16  Bruno Haible  <bruno@clisp.org>
32831
32832                 * localcharset.c [CYGWIN]: Include <windows.h>.
32833                 (get_charset_aliases): For Cygwin, return the same CPxxx
32834                 aliases list as under WIN32.
32835                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
32836                 the environment variables. Fall back to GetACP().
32837
32838         2006-04-05  Bruno Haible  <bruno@clisp.org>
32839
32840                 * config.charset: Update Juan Manuel Guerrero's address.
32841
32842         2005-02-12  Bruno Haible  <bruno@clisp.org>
32843
32844                 * allocsa.h: Add extern "C" for C++.
32845
32846         2005-02-10  Bruno Haible  <bruno@clisp.org>
32847
32848                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
32849                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
32850
32851         2006-07-22  Bruno Haible  <bruno@clisp.org>
32852
32853                 * gettext.h: Update to GNU gettext-0.15.
32854
32855 2006-07-22  Bruno Haible  <bruno@clisp.org>
32856
32857         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
32858         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
32859         lib-prefix.m4, longdouble.m4, ssize_t.m4.
32860
32861 2006-07-21  Eric Blake  <ebb9@byu.net>
32862
32863         * modules/stdlib-safer: New file.
32864         * MODULES.html.sh (File stream based Input/Output): Add
32865         stdlib-safer.
32866
32867 2006-07-21  Eric Blake  <ebb9@byu.net>
32868
32869         * lib/stdlib-safer.h: New file from coreutils, required by
32870         stdlib--.h.
32871
32872 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
32873
32874         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
32875
32876 2006-07-20  Bruno Haible  <bruno@clisp.org>
32877
32878         * gnulib-tool: Recognize new option --assume-autoconf.
32879         (autoconf_minversion): New variable.
32880         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
32881
32882 2006-07-20  Bruno Haible  <bruno@clisp.org>
32883
32884         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
32885
32886 2006-07-19  Derek R. Price  <derek@ximbiot.com>
32887
32888         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
32889         Reindent and repaginate.
32890
32891 2006-07-19  Derek Price  <derek@ximbiot.com>
32892
32893         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
32894         Correct grammar.
32895
32896 2006-07-17  Bruno Haible  <bruno@clisp.org>
32897
32898         * modules/list: New file.
32899         * modules/array-list: New file.
32900         * modules/carray-list, modules/carray-list-tests: New files.
32901         * modules/linked-list, modules/linked-list-tests: New files.
32902         * modules/avltree-list, modules/avltree-list-tests: New files.
32903         * modules/rbtree-list, modules/rbtree-list-tests: New files.
32904         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
32905         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
32906         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
32907         * modules/oset: New file.
32908         * modules/array-oset: New file.
32909         * modules/avltree-oset, modules/avltree-oset-tests: New files.
32910         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
32911         * tests/test-carray_list.c: New file.
32912         * tests/test-linked_list.c: New file.
32913         * tests/test-avltree_list.c: New file.
32914         * tests/test-rbtree_list.c: New file.
32915         * tests/test-linkedhash_list.c: New file.
32916         * tests/test-avltreehash_list.c: New file.
32917         * tests/test-rbtreehash_list.c: New file.
32918         * tests/test-avltree_oset.c: New file.
32919         * tests/test-rbtree_oset.c: New file.
32920         * MODULES.html.sh (Container data structures): New section.
32921
32922 2006-07-17  Bruno Haible  <bruno@clisp.org>
32923
32924         * m4/gl_list.m4: New file.
32925
32926 2006-07-17  Bruno Haible  <bruno@clisp.org>
32927
32928         * lib/gl_list.h: New file.
32929         * lib/gl_list.c: New file.
32930         * lib/gl_array_list.h: New file.
32931         * lib/gl_array_list.c: New file.
32932         * lib/gl_carray_list.h: New file.
32933         * lib/gl_carray_list.c: New file.
32934         * lib/gl_linked_list.h: New file.
32935         * lib/gl_linked_list.c: New file.
32936         * lib/gl_anylinked_list1.h: New file.
32937         * lib/gl_anylinked_list2.h: New file.
32938         * lib/gl_avltree_list.h: New file.
32939         * lib/gl_avltree_list.c: New file.
32940         * lib/gl_anyavltree_list1.h: New file.
32941         * lib/gl_anyavltree_list2.h: New file.
32942         * lib/gl_rbtree_list.h: New file.
32943         * lib/gl_rbtree_list.c: New file.
32944         * lib/gl_anyrbtree_list1.h: New file.
32945         * lib/gl_anyrbtree_list2.h: New file.
32946         * lib/gl_anytree_list1.h: New file.
32947         * lib/gl_anytree_list2.h: New file.
32948         * lib/gl_linkedhash_list.h: New file.
32949         * lib/gl_linkedhash_list.c: New file.
32950         * lib/gl_anyhash_list1.h: New file.
32951         * lib/gl_anyhash_list2.h: New file.
32952         * lib/gl_avltreehash_list.h: New file.
32953         * lib/gl_avltreehash_list.c: New file.
32954         * lib/gl_rbtreehash_list.h: New file.
32955         * lib/gl_rbtreehash_list.c: New file.
32956         * lib/gl_anytreehash_list1.h: New file.
32957         * lib/gl_anytreehash_list2.h: New file.
32958
32959         * lib/gl_oset.h: New file.
32960         * lib/gl_oset.c: New file.
32961         * lib/gl_array_oset.h: New file.
32962         * lib/gl_array_oset.c: New file.
32963         * lib/gl_avltree_oset.h: New file.
32964         * lib/gl_avltree_oset.c: New file.
32965         * lib/gl_rbtree_oset.h: New file.
32966         * lib/gl_rbtree_oset.c: New file.
32967         * lib/gl_anytree_oset.h: New file.
32968
32969 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
32970
32971         * m4/mkancesdirs.m4: New file.
32972         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
32973         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
32974         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
32975         it.
32976
32977 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
32978
32979         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
32980         * lib/mkancesdirs.h: New files.
32981         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
32982         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
32983         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
32984         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
32985         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
32986         callers changed.  Revamp internals significantly, by not
32987         attempting to create directories that are temporarily more
32988         permissive than the final results.  Do not attempt to use
32989         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
32990         This removes some race conditions, fixes some bugs, and simplifies
32991         things.  Use new dirchownmod function to do owner and mode changes.
32992         * lib/mkdir-p.h: Likewise.
32993         * lib/modechange.c (octal_to_mode): New function.
32994         (struct mode_change): New member mentioned.
32995         (make_node_op_equals): New arg mentioned.  All callers changed.
32996         (mode_compile): Keep track of which mode bits the user has explicitly
32997         mentioned.
32998         (mode_adjust): New arg DIR, so that we implement the X op correctly.
32999         New arg PMODE_BITS, to keep track of which mode bits the user
33000         mentioned; it treats S_ISUID and S_ISGID speciall.
33001         All callers changed.
33002         * lib/modechange.h: Likewise.
33003
33004 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
33005
33006         * MODULES.html.sh: Add mkancestors.
33007         * modules/mkancesdirs: New module.
33008         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
33009         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
33010         The chdir-safer and afs files are now orphans; I'll remove them
33011         unless someone speaks up.
33012         Add lib/dirchownmod.c, lib/dirchownmod.h.
33013         (Depends-on): Remove alloca, chown, save-cwd, dirname.
33014         Add lchown, mkancesdirs.
33015         (Maintainer): Add self.
33016
33017 2006-07-15  Karl Berry  <karl@gnu.org>
33018
33019         * gnulib-tool: help message wording/arrangement.
33020
33021 2006-07-14  Simon Josefsson  <jas@extundo.com>
33022
33023         * doc/gnulib.texi (Libtool and Windows): New section.
33024
33025 2006-07-12  Simon Josefsson  <jas@extundo.com>
33026
33027         * modules/gendocs (License): Fix license, approved by Karl.
33028
33029 2006-07-12  Eric Blake  <ebb9@byu.net>
33030
33031         * MODULES.html.sh: Add gendocs.
33032
33033 2006-07-11  Eric Blake  <ebb9@byu.net>
33034
33035         * modules/fdl: New module, to install doc/fdl.texi.
33036         * MODULES.html.sh: Add new section for documentation modules.
33037         * gnulib-tool: Avoid space-tab.
33038         (--doc-base): New option, to manage files from doc.
33039
33040 2006-07-11  Eric Blake  <ebb9@byu.net>
33041
33042         * m4/absolute-header.m4: Fix comments to match recent change.
33043
33044 2006-07-11  Eric Blake  <ebb9@byu.net>
33045
33046         * gnulib-tool: List --doc-base before --tests-base.
33047
33048 2006-07-11  Derek R. Price  <derek@ximbiot.com>
33049
33050         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
33051
33052 2006-07-11  Bruno Haible  <bruno@clisp.org>
33053
33054         * README: Mention where to put documentation.
33055
33056 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33057
33058         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
33059
33060 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
33061
33062         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
33063         to stdint.m4.
33064
33065 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
33066
33067         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
33068         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
33069         "no/such/file/stdint.h" when there is no such file, so that
33070         the resulting C code can be parsed by dodgy compilers.
33071         Problems reported by Bob Proulx.
33072
33073 2006-07-10  Derek R. Price  <derek@ximbiot.com>
33074
33075         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
33076         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
33077         macros into the GNU _D_EXACT_NAMLEN.
33078         * lib/savedir.c:  Likewise.
33079         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
33080
33081 2006-07-10  Derek R. Price  <derek@ximbiot.com>
33082         and Paul Eggert  <eggert@cs.ucla.edu>
33083
33084         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
33085         * m4/savedir.m4:
33086         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
33087         macros into the GNU _D_EXACT_NAMLEN.
33088
33089 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33090
33091         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
33092         around the absolute name, to work around a problem with the HP-UX
33093         11.23 native C compiler, reported by Bob Proulx.
33094
33095 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33096
33097         * doc/maintain.texi, make-stds.texi: Sync from
33098         <http://savannah.gnu.org/projects/gnustandards>.
33099
33100 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
33101
33102         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
33103
33104 2006-07-09  Jim Meyering  <jim@meyering.net>
33105
33106         * m4/glob.m4: Remove a doubled word in a comment.
33107
33108 2006-07-09  Jim Meyering  <jim@meyering.net>
33109
33110         * lib/argp-pv.c: Remove a doubled word in a comment.
33111         * lib/check-version.c (check_version): Likewise.
33112         * lib/javacomp.c (compile_java_class): Likewise.
33113
33114 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
33115
33116         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
33117         for the benefit of people using Autoconf 2.60.  If you want to
33118         support older Autoconf versions you can copy m4/onceonly_2_57.m4
33119         (or m4/onceonly.m4, if pre-2.57) manually.
33120
33121 2006-07-08  Jim Meyering  <jim@meyering.net>
33122
33123         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
33124         comment.
33125         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
33126         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
33127         comment.
33128
33129 2006-07-08  Jim Meyering  <jim@meyering.net>
33130
33131         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
33132
33133 2006-07-07  Simon Josefsson  <jas@extundo.com>
33134
33135         * tests/test-crc.c: Change expected crc value, the test vector
33136         were probably computed using the old broken crc.c?
33137
33138 2006-07-06  Simon Josefsson  <jas@extundo.com>
33139
33140         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
33141         now the canonical place for the M4 file).
33142
33143         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
33144         from the sys_socket dependency now.
33145
33146         * modules/inet_pton (Files): Ditto.
33147
33148         * modules/inet_ntop (Files): Ditto.
33149
33150 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
33151
33152         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
33153         not gl_PREREQ_GETUSERSHELL.
33154
33155 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33156
33157         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
33158         with only one argument, for Autoconf 2.60.
33159         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
33160         expand to nothing, so add a shell command to avoid syntax error.
33161         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
33162
33163 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33164
33165         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
33166
33167 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33168
33169         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
33170         no longer needed.  Check for isblank decl.
33171         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
33172         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
33173         of existence.
33174
33175 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33176
33177         * lib/getloadavg.c: Use __VMS, not VMS.
33178         * lib/getopt.c: Likewise.
33179         * lib/getpagesize.h: Likewise.
33180         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
33181         and probably does not work.
33182
33183 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
33184
33185         * lib/.cppi-disable: Add wcwidth.
33186         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
33187         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
33188         (ISGRAPH): Remove.  All uses changed to isgraph.
33189         (FOLD) [!defined _LIBC]: Remove special case.
33190         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
33191         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
33192         HAVE_ISBLANK.
33193         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
33194         case.
33195
33196 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
33197
33198         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
33199         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
33200         brackets.  Other minor changes to suppress some compiler
33201         warnings.
33202
33203 2006-07-06  Derek R. Price  <derek@ximbiot.com>
33204         and Paul Eggert  <eggert@cs.ucla.edu>
33205
33206         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
33207         of invoking obsolescent AC_HEADER_DIRENT macro.
33208         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
33209         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
33210         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
33211         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
33212         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
33213         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
33214         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
33215         * m4/readdir.m4: Remove; no longer needed.
33216
33217 2006-07-06  Derek R. Price  <derek@ximbiot.com>
33218         and Paul Eggert  <eggert@cs.ucla.edu>
33219
33220         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
33221         Don't worry about this obsolete case any more.
33222         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
33223         directories.
33224         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
33225         worry about this obsolete case any more.
33226         * lib/fts.c: Likewise.
33227         * lib/getcwd.c: Likewise.
33228         * lib/glob.h: Likewise.
33229         * lib/savedir.c: Likewise.
33230
33231 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
33232
33233         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
33234         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
33235         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
33236         needed.
33237         All uses removed.
33238         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33239         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
33240         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
33241         needed.
33242         * m4/getdate.m4 (gl_GETDATE): Likewise.
33243         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
33244         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
33245         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
33246         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33247         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
33248         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33249         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
33250         needed.
33251
33252 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
33253
33254         * lib/memcasecmp.c: Include <limits.h>.
33255         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
33256         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
33257         Don't assume isdigit succeeds only on '0' through '9'.
33258
33259 2006-07-05  Eric Blake  <ebb9@byu.net>
33260
33261         * modules/getaddrinfo (Depends-on): Add snprintf.
33262
33263 2006-07-05  Eric Blake  <ebb9@byu.net>
33264
33265         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
33266         to avoid 'header present but could not be compiled' on cygwin.
33267
33268 2006-07-05  Eric Blake  <ebb9@byu.net>
33269
33270         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
33271         missing from netdb.h.
33272         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
33273
33274 2006-07-05  Derek R. Price  <derek@ximbiot.com>
33275
33276         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
33277         no longer needed.
33278         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
33279         * m4/getdate.m4 (gl_GETDATE): Likewise.
33280         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
33281         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
33282         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
33283         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
33284         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33285
33286 2006-07-05  Derek R. Price  <derek@ximbiot.com>
33287
33288         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
33289         All uses of is_space replaced by isspace.
33290         * lib/exit.h: Don't talk about STDC_HEADERS.
33291         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
33292         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
33293         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
33294         replaced by isprint etc.
33295         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
33296         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
33297         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
33298         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
33299         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
33300         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
33301
33302 2006-07-05  Bruno Haible  <bruno@clisp.org>
33303
33304         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
33305         the function exists, before testing against AIX.
33306         Reported by Martin Lambers <marlam@marlam.de>.
33307
33308 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
33309
33310         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
33311         From Mark D. Baushke.
33312
33313 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
33314
33315         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
33316         to the absolute name, not just one, to bypass Sun C 5.8's
33317         "warning: #include of /usr/include/... may be non-portable".
33318
33319 2006-07-04  Eric Blake  <ebb9@byu.net>
33320
33321         * modules/dirname-tests: New test module.
33322         * tests/test-dirname.c: New file, replacing dirname.c
33323         TEST_DIRNAME section that was recently deleted.
33324
33325 2006-07-04  Bruno Haible  <bruno@clisp.org>
33326
33327         Assume ANSI C header files and <ctype.h> functions.
33328         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
33329         (mbsnwidth): Use isprint, iscntrl instead.
33330
33331 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33332
33333         Merge from coreutils.
33334         * MODULES.html.sh: Add xstrtold.
33335         * modules/xstrtold: New file.
33336         * modules/cycle-check (Files): Add lib/same-inode.h.
33337         * modules/dirname (Files): Add m4/double-slash-root.m4.
33338         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
33339         * modules/mkdir-p (Files): Add lib/same-inode.h.
33340         * modules/same (Files): Add lib/same-inode.h.
33341
33342 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33343
33344         * m4/absolute-header.m4: Renamed from full-header-path.m4.
33345         This is to keep the terminology clean; POSIX talks about
33346         "absolute pathnames", not "full pathnames", but the GNU
33347         Coding Standards say to use "path" for something else;
33348         so use "absolute" to keep both sides happy.
33349         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
33350         Set gl_absolute_header, not gl_full_header_path.
33351         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
33352         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
33353         All uses changed.
33354
33355         Merge from coreutils.
33356
33357         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
33358
33359         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
33360         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
33361         want to require the building of c-strtod.o.
33362         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
33363         needs -lm directly.
33364         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
33365
33366         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
33367
33368         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
33369         --as-needed option if available.  Problem reported by Albert Chin in
33370         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
33371         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
33372         cc merely issues a bunch of annoying warnings for --as-needed
33373         (this problem was reported by Bob Proulx).  Also, try linking with
33374         -lm to detect a bug in binutils 2.16 (this problem was reported
33375         by Ralf Wildenhues).
33376
33377         2006-06-18  Jim Meyering  <jim@meyering.net>
33378
33379         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
33380         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
33381         macro.
33382         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
33383         also check for glibc-2.4's abort-inducing bug.
33384
33385         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
33386         Low-probability clean-up should be to use rmdir to get rid of
33387         the just-created directory, not unlink.
33388
33389         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
33390         configure fail, and request a bug report to inform us about it.
33391         Add a comment that, barring reports to the contrary, in 2007 we'll
33392         assume ftruncate is universally available.
33393
33394         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
33395
33396         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
33397
33398         2006-03-12  Jim Meyering  <jim@meyering.net>
33399
33400         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
33401         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
33402         * m4/same.m4 (gl_SAME): Likewise.
33403         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
33404
33405         2006-03-11  Eric Blake  <ebb9@byu.net>
33406
33407         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
33408         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
33409         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
33410         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
33411
33412 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
33413
33414         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
33415         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
33416         reported by Mark D. Baushke, one in
33417         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
33418
33419         Merge from coreutils.
33420
33421         * lib/.cppi-disable: Add stdint_.h.
33422         * lib/.cvsignore: Add stdint.h.
33423
33424         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
33425
33426         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
33427         both double and long double versions.
33428         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
33429         * lib/xstrtold.c: New file.
33430         * lib/xstrtod.h (xstrtold): New decl.
33431
33432         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
33433
33434         * lib/filemode.c (setst): Remove.
33435         (strmode): Rewrite to avoid setst.  This makes the code shorter,
33436         (arguably) clearer, and the generated code is a bit smaller on my
33437         Debian GNU/Linux stable x86 host.
33438
33439         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
33440
33441         * lib/filemode.c: Include "filemode.h" first, to test the interface.
33442         Assume that filemode.h includes sys/types.h and sys/stat.h.
33443         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
33444         (ftypelet): Reorder to put common cases first, for efficiency.
33445         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
33446         to do 'M'.
33447         (strmode): Renamed from mode_string, and now stores 12 bytes instead
33448         of 10, for compatibility with FreeBSD.  All callers changed.
33449         (filemodestring): Now stores 12 bytes instead of 10, and sets file
33450         types that can't be deduced solely from st_mode.  First arg is now a
33451         const pointer.
33452         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
33453         (strmode): Renamed from mode_string.
33454         (filemodestring): New decl.
33455         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
33456         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
33457         needed.
33458         (S_ISPORT, S_ISWHT): New macros, if not already defined.
33459
33460         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
33461
33462         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
33463         fsusage.h now does that.  Include fsusage.h first, to test interface.
33464         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
33465         at most one method (the old code could have generated decls that
33466         didn't conform to C89, not that this was ever exercised).
33467         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
33468
33469         2006-03-19  Jim Meyering  <jim@meyering.net>
33470
33471         Work even in a chroot where d_ino values for entries in "/"
33472         don't match the stat.st_ino values for the same names.
33473         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
33474         number, iterate through all entries again, using lstat instead.
33475         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
33476         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
33477
33478         * lib/getcwd.c (__getcwd): Clarify a comment.
33479         Use memcpy in place of a call to strcpy.
33480
33481         2006-03-12  Jim Meyering  <jim@meyering.net>
33482
33483         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
33484         matches that of the current directory (which we're about to chdir ".."
33485         out of), then save the dev-ino of the parent, instead.
33486
33487         * lib/same-inode.h (SAME_INODE): New file/macro.
33488         * lib/chdir-safer.c (SAME_INODE): Remove definition.
33489         Include "same-inode.h", instead.
33490         * lib/same.c: Likewise.
33491         * lib/cycle-check.h: Include "same-inode.h".
33492         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
33493         * lib/cycle-check.c (SAME_INODE): Remove definition.
33494         * lib/root-dev-ino.h: Include "same-inode.h".
33495
33496         2006-03-11  Eric Blake  <ebb9@byu.net>
33497
33498         * lib/same.c (same_name): s/base_name/last_component/
33499         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
33500         * lib/filenamecat.c (file_name_concat): Likewise.
33501
33502         2006-03-11  Eric Blake  <ebb9@byu.net>,
33503                     Paul Eggert  <eggert@cs.ucla.edu>
33504
33505         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
33506         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
33507         drive prefix.
33508         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
33509         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
33510         (last_component): New method.
33511         * lib/dirname.c (dir_len): Determine when drive letters need a
33512         subsequent slash.  Preserve // when it is special.
33513         (dir_name): Don't append dot when drive letter is absolute.
33514         [TEST_DIRNAME]: Move into a full-blown gnulib test.
33515         * lib/basename.c (base_name): New semantics - malloc the result.
33516         Preserve // when it is special.  Preserve relative files that look
33517         like drive letters.
33518         (base_len): Preserve // when it is special.
33519         (last_component): New method, similar to old base_name semantics.
33520         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
33521         base_name.  Strip redundant slashes from ///.
33522
33523 2006-07-03  Jim Meyering  <jim@meyering.net>
33524
33525         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
33526         macro is used before the first cycle_check call.
33527
33528 2006-07-03  Eric Blake  <ebb9@byu.net>
33529
33530         * modules/dirname (Depends-on): Add xstrndup.
33531
33532 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33533
33534         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
33535         test cases, so that config.log is a bit easier to follow.
33536
33537 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
33538
33539         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
33540         both are 64 bits, since this seems to be the tradition, and this
33541         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
33542         we ever run into a host that prefers long long to long in this
33543         case, we'll need another configure-time test.  Problem reported by
33544         Jim Meyering.
33545
33546 2006-07-02  Eric Blake  <ebb9@byu.net>
33547
33548         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
33549
33550 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33551
33552         * modules/inttypes (Depends-on): No longer depends on stdint.
33553         * modules/stdint (Description): Say more about assumptions.
33554         Say that the fast types might differ.  Say macros are used.
33555         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
33556         (Makefile.am): Revise list of substituted symbols to match
33557         new stdint.m4.
33558         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
33559         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
33560         * tests/test-stdint.c (verify_same_types)
33561         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
33562         the code conforms to C99/C89.
33563         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
33564         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
33565
33566 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33567
33568         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
33569         but fix a bug, by requiring at least 64 bits.
33570         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
33571         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
33572         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
33573         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
33574
33575         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
33576         changes.  Make 2.59 a prerequisite.  Check and substitute for
33577         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
33578         inttypes.h.  Do not use special include files; just use the
33579         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
33580         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
33581         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
33582         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
33583         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
33584         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
33585         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
33586         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
33587         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
33588         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
33589         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
33590         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
33591         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
33592         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
33593         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
33594         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
33595         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
33596         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
33597         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
33598         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
33599         WINT_MAX.  Check for C99 conformance more strictly, by detecting
33600         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
33601         not check for things that C99 does not require, e.g., int8_t.  If
33602         a test isn't needed unless <stdint.h> isn't working, and is
33603         unlikely to be needed for any other reason, then don't do it
33604         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
33605         size_t, since we assume C89 freestanding at least.  Do not check
33606         for sig_atomic_t, wchar_t, or wint_t, since the code now does
33607         the right thing even if the types are not defined.  Instead use:
33608         (gl_STDINT_TYPE_PROPERTIES): New macro.
33609         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
33610         testing whether <sys/types.h> clashes, as Autoconf does this for
33611         us now.  All uses removed.
33612         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
33613         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
33614         (gl_CHECK_TYPE_SAME):
33615         Remove; no longer needed.
33616         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
33617         exists, since we'll return 0 anyway in that case.
33618         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
33619
33620 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
33621
33622         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
33623         possible collision with system files.
33624         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
33625         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
33626         WCHAR_MIN and WCHAR_MAX in this case.
33627         (<stddef.h>): Do not include; no longer needed.
33628         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
33629         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
33630         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
33631         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
33632         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
33633         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
33634         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
33635         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
33636         !defined(__c99))]: Include in this case too, since it's harmless
33637         now.
33638         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
33639         dangerous to do so.
33640         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
33641         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
33642         (_STDINT_MIN, _STDINT_MAX): New macros.
33643         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
33644         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
33645         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
33646         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
33647         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
33648         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
33649         macros, not typedefs; this simplifies things quite a bit.
33650         Use long int for all types narrower than int64_t.
33651         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
33652         Define in terms of long long int or int64_t or long int,
33653         not int64_t or int32_t.  This saves some compile-time testing.
33654         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
33655         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
33656         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
33657         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
33658         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
33659         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
33660         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
33661         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
33662         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
33663         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
33664         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
33665         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
33666         undef any previous version and define our own version, for
33667         simplicity and consistency with the new macros for types.
33668         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
33669         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
33670         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
33671         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
33672         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
33673         @WINT_T_SUFFIX@ to keep things simple here.
33674         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
33675         Simplify by assuming typical 8/16/32/64 host, since we're
33676         already doing that elsewhere anyway.
33677         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
33678         and assume long long int is 64 bits if available.  This
33679         speeds up 'configure'.
33680
33681 2006-07-01  Eric Blake  <ebb9@byu.net>
33682
33683         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
33684         Reported by Andreas Buening.
33685
33686 2006-07-01  Eric Blake  <ebb9@byu.net>
33687
33688         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
33689
33690 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
33691
33692         * lib/getaddrinfo.c: fixed typo
33693
33694 2006-06-29  Jim Meyering  <jim@meyering.net>
33695
33696         * modules/strftime (Maintainer): Add my name, since with the
33697         FPRINTFTIME changes strftime.c has forked from glibc.
33698
33699 2006-06-29  Eric Blake  <ebb9@byu.net>
33700
33701         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
33702
33703 2006-06-29  Eric Blake  <ebb9@byu.net>
33704
33705         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
33706
33707 2006-06-29  Eric Blake  <ebb9@byu.net>
33708
33709         * lib/stat_.h: New file.
33710
33711 2006-06-29  Eric Blake  <ebb9@byu.net>
33712
33713         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
33714         unused static function.
33715
33716 2006-06-29  Eric Blake  <ebb9@byu.net>
33717
33718         * doc/functions.texi (Function Portability): Document missing lstat
33719         on mingw.
33720
33721 2006-06-29  Eric Blake  <ebb9@byu.net>
33722
33723         * MODULES.html.sh: Add sys_stat.
33724         * modules/sys_stat: New module.
33725         * modules/mkstemp (Depends-on): Add sys_stat.
33726
33727 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33728
33729         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
33730
33731 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33732
33733         * m4/c-bs-a.m4: Removed.
33734
33735 2006-06-29  Derek R. Price  <derek@ximbiot.com>
33736
33737         * lib/strftime.c: Assume strftime() exists.
33738
33739 2006-06-29  Derek Price  <derek@ximbiot.com>
33740
33741         * modules/c-bs-a: Removed - \a is C89.
33742         * MODULES.html.sh: Remove c-bs-a.
33743
33744 2006-06-29  Bruno Haible  <bruno@clisp.org>
33745
33746         * modules/wcwidth (License): Change to LGPL.
33747
33748 2006-06-28  Simon Josefsson  <jas@extundo.com>
33749
33750         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
33751         on _WIN32.
33752
33753         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
33754         getnameinfo.
33755
33756 2006-06-28  Simon Josefsson  <jas@extundo.com>
33757
33758         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
33759
33760 2006-06-28  Simon Josefsson  <jas@extundo.com>
33761
33762         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
33763         functions there.  It will succeed on Windows XP, but on Windows
33764         2000 and (presumably) earlier, it will fail, and use the internal
33765         re-implementation.
33766         (use_win32_p): New function.
33767         (getaddrinfo): Use strtoul on servname, to support numeric ports.
33768         Support AI_NUMERICSERV to disable getservbyname.
33769         (getnameinfo): New function, only supports
33770         NI_NUMERICHOST|NI_NUMERICSERV for now.
33771
33772         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
33773         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
33774         getnameinfo.
33775
33776 2006-06-28  Eric Blake  <ebb9@byu.net>
33777
33778         * modules/wcwidth: New file.
33779         * modules/mbchar (Depends-on): Add wcwidth.
33780         * modules/mbswidth (Depends-on): Add wcwidth.
33781         * MODULES.html.sh: Add wcwidth.
33782
33783 2006-06-28  Eric Blake  <ebb9@byu.net>
33784
33785         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
33786         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
33787
33788 2006-06-28  Eric Blake  <ebb9@byu.net>
33789
33790         * lib/xvasprintf.h: Fix comments.
33791
33792 2006-06-28  Eric Blake  <ebb9@byu.net>
33793
33794         * lib/mbchar.h (wcwidth): Include wcwidth.h.
33795         * lib/mbswidth.c (wcwidth): Move from here...
33796         * lib/wcwidth.h: ...to this new file.
33797
33798 2006-06-28  Derek R. Price  <derek@ximbiot.com>
33799
33800         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
33801
33802         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
33803         it's obsolete.
33804         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
33805
33806 2006-06-28  Derek R. Price  <derek@ximbiot.com>
33807
33808         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
33809         Autoconf 2.60 says this stuff was obsolete.
33810
33811 2006-06-28  Bruno Haible  <bruno@clisp.org>
33812
33813         * modules/wcwidth (Files): Add m4/wchar_t.m4.
33814
33815 2006-06-28  Bruno Haible  <bruno@clisp.org>
33816
33817         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
33818         gt_TYPE_WCHAR_T.
33819
33820 2006-06-28  Bruno Haible  <bruno@clisp.org>
33821
33822         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
33823         declaration for wcwidth.
33824         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
33825
33826 2006-06-28  Bruno Haible  <bruno@clisp.org>
33827
33828         * lib/mkdtemp.c [MINGW]: Include <io.h>.
33829         (mkdir): Define using _mkdir.
33830
33831 2006-06-28  Bruno Haible  <bruno@clisp.org>
33832
33833         * lib/getaddrinfo.h: Fix POSIX URL.
33834         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
33835         _WIN32.
33836         (use_win32_p): Make static.
33837         (getaddrinfo): Reject service name if it is empty or does not consist
33838         solely of decimal digits, or if its value is > 65535.
33839         (getnameinfo): Remove useless casts.
33840
33841 2006-06-27  Simon Josefsson  <jas@extundo.com>
33842
33843         * modules/sys_select: New file, suggested by Bruno Haible, Paul
33844         Eggert and Martin Lambers.
33845
33846 2006-06-27  Simon Josefsson  <jas@extundo.com>
33847
33848         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
33849         Eggert and Martin Lambers.
33850
33851 2006-06-27  Bruno Haible  <bruno@clisp.org>
33852
33853         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
33854         result to 0, not to empty.
33855         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
33856
33857 2006-06-27  Bruno Haible  <bruno@clisp.org>
33858
33859         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
33860
33861 2006-06-26  Simon Josefsson  <jas@extundo.com>
33862
33863         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
33864         present.
33865
33866 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
33867
33868         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
33869         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
33870         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
33871
33872 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
33873
33874         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
33875
33876 2006-06-26  Bruno Haible  <bruno@clisp.org>
33877
33878         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
33879
33880 2006-06-26  Bruno Haible  <bruno@clisp.org>
33881
33882         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
33883
33884 2006-06-26  Bruno Haible  <bruno@clisp.org>
33885
33886         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
33887         SGI C compiler in pre-C99 mode.
33888         Suggested by Mark D. Baushke and Larry Jones.
33889
33890 2006-06-26  Bruno Haible  <bruno@clisp.org>
33891
33892         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
33893         WCHAR_MAX.
33894         Reported by Mark D. Baushke and Larry Jones.
33895
33896 2006-06-26  Bruno Haible  <bruno@clisp.org>
33897
33898         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
33899         in pre-C99 mode.
33900         Suggested by Mark D. Baushke and Larry Jones.
33901
33902 2006-06-23  Simon Josefsson  <jas@extundo.com>
33903             Bruno Haible  <bruno@clisp.org>
33904
33905         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
33906         Emit mostlyclean-local rule.
33907         (func_emit_tests_Makefile_am): Likewise.
33908         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
33909
33910 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
33911
33912         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
33913
33914 2006-06-23  Bruno Haible  <bruno@clisp.org>
33915
33916         * tests/test-stdint.c: Update to match ISO C 99 Technical
33917         Corrigendum 1.
33918
33919 2006-06-23  Bruno Haible  <bruno@clisp.org>
33920
33921         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
33922
33923 2006-06-23  Bruno Haible  <bruno@clisp.org>
33924
33925         * lib/stdint_.h: Treat IRIX like OpenBSD.
33926
33927 2006-06-23  Bruno Haible  <bruno@clisp.org>
33928
33929         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
33930         ISO C 99 Technical Corrigendum 1.
33931
33932 2006-06-22  Simon Josefsson  <jas@extundo.com>
33933
33934         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
33935         MinGW.
33936
33937 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
33938
33939         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
33940         needed.  Some compiler complained about some of them.  Problem reported
33941         by Larry Jones in
33942         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
33943
33944 2006-06-21  Simon Josefsson  <jas@extundo.com>
33945
33946         * tests/test-getaddrinfo.c: New file.
33947
33948         * modules/getaddrinfo-tests: New file.
33949
33950         * MODULES.html.sh: Add inet_pton.
33951
33952         * modules/inet_pton: New file.
33953
33954 2006-06-21  Simon Josefsson  <jas@extundo.com>
33955
33956         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
33957         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
33958         of using the (limited) gnulib implementation on Windows XP.
33959
33960         * m4/inet_pton.m4: New file.
33961
33962 2006-06-21  Simon Josefsson  <jas@extundo.com>
33963
33964         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
33965         variable.
33966
33967         * lib/socket_.h: Don't define WINVER.
33968
33969         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
33970         slightly modified to work in gnulib.
33971
33972 2006-06-21  Simon Josefsson  <jas@extundo.com>
33973
33974         * doc/gnulib.texi (Windows sockets): Add.
33975
33976 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
33977
33978         * lib/read-file.c (fread_file): Start with buffer allocation of
33979         0 bytes rather than 1 byte; this simplifies the code.
33980         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
33981         code to free buffer and save/restore errno.
33982         (internal_read_file): Remove unused local.
33983
33984 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
33985
33986         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
33987         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
33988         Problem reported by Denis Excoffier in
33989         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
33990
33991 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33992
33993         * modules/sys_socket, modules/socklen: Include sys/types since
33994         FreeBSD 4.x's sys/socket.h needs it.
33995
33996 2006-06-19  Simon Josefsson  <jas@extundo.com>
33997
33998         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
33999
34000 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
34001
34002         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
34003
34004 2006-06-19  Bruno Haible  <bruno@clisp.org>
34005
34006         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
34007         and FULL_PATH_INTTYPES_H in angle brackets.
34008         Reported by Mark D. Baushke <mdb@gnu.org>.
34009
34010 2006-06-17  Eric Blake  <ebb9@byu.net>
34011
34012         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
34013         errno.
34014
34015 2006-06-17  Bruno Haible  <bruno@clisp.org>
34016
34017         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
34018         <sys/inttypes.h>.
34019
34020 2006-06-17  Bruno Haible  <bruno@clisp.org>
34021
34022         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
34023         whether errno is declared. Assume <errno.h> declares errno.
34024
34025 2006-06-17  Bruno Haible  <bruno@clisp.org>
34026
34027         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
34028
34029 2006-06-17  Bruno Haible  <bruno@clisp.org>
34030
34031         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
34032         problem on Solaris 2.5.1.
34033
34034 2006-06-16  Eric Blake  <ebb9@byu.net>
34035
34036         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
34037         * lib/unicodeio.c [!defined errno]: Likewise.
34038         * lib/strtol.c [!defined errno]: Likewise.
34039         * lib/strtod.c [!defined errno]: Likewise.
34040
34041 2006-06-15  Eric Blake  <ebb9@byu.net>
34042
34043         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
34044
34045 2006-06-15  Eric Blake  <ebb9@byu.net>
34046
34047         * config/srclist.txt (ssize_t.m4): Lose sync.
34048
34049 2006-06-15  Bruno Haible  <bruno@clisp.org>
34050
34051         * modules/stdint (Files): Include m4/full-header-path.m4,
34052         m4/size_max.m4, m4/wchar_t.m4.
34053         (Makefile.am): Many more substitutions.
34054         * modules/stdint-tests: New file.
34055         * tests/test-stdint.c: New file.
34056
34057 2006-06-15  Bruno Haible  <bruno@clisp.org>
34058
34059         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
34060         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
34061         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
34062         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
34063         gl_CHECK_TYPE_SAME): New macros.
34064
34065 2006-06-15  Bruno Haible  <bruno@clisp.org>
34066
34067         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
34068
34069 2006-06-15  Bruno Haible  <bruno@clisp.org>
34070
34071         * lib/stdint_.h: Rewritten to be fully auto-configured.
34072         Fixes bug on HP-UX/IA64.
34073
34074 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
34075
34076         * lib/getdate.y (__attribute__): Don't define if already defined.
34077         Problem reported by Larry Jones.
34078         * lib/utimens.c (__attribute__): Likewise.
34079
34080 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
34081
34082         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
34083         reported by Andreas Schwab.
34084
34085 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34086             Bruno Haible  <bruno@clisp.org>
34087
34088         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
34089         check for the declaration of strnlen and a run test that exposes the
34090         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
34091         rpl_strndup.
34092
34093 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34094             Bruno Haible  <bruno@clisp.org>
34095
34096         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
34097
34098 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34099
34100         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
34101         compile test, for Tru64 4.0D.
34102
34103 2006-05-28  Karl Berry  <karl@gnu.org>
34104
34105         * config/srclist.txt (printf-args.c): lose sync.
34106
34107 2006-05-26  Martin Lambers  <marlam@marlam.de>
34108
34109         * lib/getpass.c: Updates the test for the native W32 API, and adds
34110         missing includes, thus fixing compilation warnings.
34111
34112 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
34113
34114         * lib/exclude.c (exclude_fnmatch): New function.
34115         (excluded_file_name): Call exclude_fnmatch.
34116         * lib/exclude.h (excluded_file_name): New prototype
34117
34118 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
34119
34120         * lib/tempname.c (small_open, large_open): New macros.
34121         (__open, __open64) [!_LIBC]: Remove.
34122         (__gen_tempname): Use small_open and large_open instead of __open
34123         and __open64.  This fixes a portability bug on HP-UX 11.11i
34124         reported by Simon Wing-Tang in
34125         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
34126
34127 2006-05-24  Bruno Haible  <bruno@clisp.org>
34128
34129         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
34130         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
34131         Reported by Thorsten Maerz <torte@netztorte.de> via
34132         Aaron Stone <aaron@serendipity.cx>.
34133
34134 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
34135
34136         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
34137         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
34138         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
34139         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
34140         not really conditional on the cache.
34141         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
34142
34143 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
34144
34145         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
34146         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
34147         (my_usleep): Don't mishandle maximum value.
34148
34149 2006-05-19  Jim Meyering  <jim@meyering.net>
34150
34151         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
34152
34153 2006-05-17  Bruno Haible  <bruno@clisp.org>
34154
34155         Cygwin portability.
34156         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
34157
34158 2006-05-17  Bruno Haible  <bruno@clisp.org>
34159
34160         * lib/stdint_.h: Fix recognition of Cygwin.
34161
34162 2006-05-15  Bruno Haible  <bruno@clisp.org>
34163
34164         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
34165         on libtool patch by Ralf Wildenhues.
34166
34167 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
34168
34169         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
34170         test for C99 conformance; (bool) 0.5 is an integer constant
34171         expression, but (bool) -0.5 is not.  Problem reported by Fedor
34172         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
34173
34174 2006-05-11  Simon Josefsson  <jas@extundo.com>
34175
34176         * m4/xvasprintf.m4: Fix obvious typo.
34177
34178 2006-05-11  Jim Meyering  <jim@meyering.net>
34179
34180         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
34181         James Lemley.
34182
34183 2006-05-10  Simon Josefsson  <jas@extundo.com>
34184
34185         * lib/md4.c: Typo fix, update copyright years.
34186         (K1, K2): Don't use L because it turn computations into 64-bit on
34187         64-bit platforms.
34188
34189 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
34190
34191         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
34192         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
34193         unwanted sign propagation, e.g., on hosts with 64-bit int.
34194         There still are some problems with reeelly weird theoretical hosts
34195         (e.g., 33-bit int) but it's not worth worrying about now.
34196         * lib/sha1.c (rol): Likewise.
34197         (K1, K2, K3, K4): Remove unnecessary L suffix.
34198
34199 2006-05-10  Bruno Haible  <bruno@clisp.org>
34200
34201         * lib/des.c: Cast to avoid warnings.
34202
34203 2006-05-09  Bruno Haible  <bruno@clisp.org>
34204
34205         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
34206         (Depends-on): Depend also on xsize, stdarg.
34207         (configure.ac): Add gl_XVASPRINTF.
34208
34209 2006-05-09  Bruno Haible  <bruno@clisp.org>
34210
34211         * m4/xvasprintf.m4: New file.
34212
34213 2006-05-09  Bruno Haible  <bruno@clisp.org>
34214
34215         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
34216         (EOVERFLOW): Define fallback value.
34217         (xstrcat): New function.
34218         (xvasprintf): Recognize the special case of a string concatenation.
34219
34220 2006-05-08  Eric Blake  <ebb9@byu.net>
34221
34222         * gnulib-tool (func_version): Base copyright year on CVS date.
34223         (func_emit_copyright_notice): New function.
34224         (func_emit_lib_Makefile_am): Use it.
34225         (func_emit_tests_Makefile_am): Likewise.
34226         (func_import): Likewise.
34227
34228 2006-05-08  Bruno Haible  <bruno@clisp.org>
34229
34230         * modules/stdarg: New file.
34231         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
34232
34233 2006-05-08  Bruno Haible  <bruno@clisp.org>
34234
34235         * m4/stdarg.m4: New file, from GNU gettext.
34236
34237 2006-05-08  Bruno Haible  <bruno@clisp.org>
34238
34239         * config/srclist.txt (build-aux/config.rpath): different from latest
34240         release.
34241
34242 2006-05-08  Bruno Haible  <bruno@clisp.org>
34243
34244         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
34245
34246 2006-05-05  Jim Meyering  <jim@meyering.net>
34247
34248         * m4/warning.m4: New file, derived from bison's file by the same name.
34249
34250 2006-05-03  Bruno Haible  <bruno@clisp.org>
34251
34252         * lib/stdint_.h: Shorter URL.
34253         * lib/inttypes.h: Likewise.
34254
34255 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34256
34257         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
34258
34259 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34260
34261         * lib/verify.h: Document the internals better.  Most of this change
34262         was written by Bruno Haible.
34263
34264 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
34265
34266         * doc/verify.texi: New file, partly based on a proposal by
34267         Bruno Haible.
34268
34269 2006-05-02  Bruno Haible  <bruno@clisp.org>
34270
34271         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
34272         test from here...
34273         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
34274
34275 2006-04-29  Bruno Haible  <bruno@clisp.org>
34276
34277         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
34278         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
34279
34280 2006-04-29  Bruno Haible  <bruno@clisp.org>
34281
34282         * gnulib-tool: Make --update option actually work.
34283
34284 2006-04-29  Bruno Haible  <bruno@clisp.org>
34285
34286         * doc/gcd.texi: New file.
34287         * doc/gnulib.texi: Include it.
34288
34289 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
34290
34291         * lib/getdate.y (get_date): When adding relative date, start with the
34292         initial time, not with the result of the first mktime call.
34293
34294 2006-04-25  Bruno Haible  <bruno@clisp.org>
34295
34296         * gnulib-tool (func_import): Output the include directives in three
34297         blocks, sorted separately.
34298         Reported by Ben Pfaff <blp@cs.stanford.edu>.
34299
34300 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
34301
34302         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
34303         to define main with arguments, for C++.  Reported by Eric Blake.
34304         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
34305         Prefer 'int main ()' to 'int main (void)', for C++.
34306         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
34307         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
34308         for 'main', for C99 and C++.
34309
34310 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
34311
34312         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
34313         Don't assume that exit status -1 is valid.
34314         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
34315         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
34316         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
34317         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
34318         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
34319         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
34320         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
34321         functions can be used without declaring them, or that you can
34322         exit with status -1.
34323         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
34324
34325 2006-04-24  Karl Berry  <karl@gnu.org>
34326
34327         * config/srclist.txt (longdouble.m4): sync lost.
34328
34329 2006-04-24  Eric Blake  <ebb9@byu.net>
34330
34331         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
34332
34333 2006-04-24  Bruno Haible  <bruno@clisp.org>
34334
34335         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
34336         poll() implementation in AIX.
34337         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34338
34339 2006-04-24  Bruno Haible  <bruno@clisp.org>
34340
34341         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
34342         assigned exactly once.
34343
34344 2006-04-23  Claudio Fontana  <claudio@gnu.org>
34345             Bruno Haible  <bruno@clisp.org>
34346
34347         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
34348         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
34349         for AM_CPPFLAGS.
34350
34351 2006-04-23  Bruno Haible  <bruno@clisp.org>
34352
34353         * modules/copy-file: Depend on unistd.
34354         * modules/execute: Likewise.
34355         * modules/fatal-signal: Likewise.
34356         * modules/findprog: Likewise.
34357         * modules/mkdtemp : Likewise.
34358         * modules/pipe: Likewise.
34359         * modules/wait-process: Likewise.
34360
34361 2006-04-23  Bruno Haible  <bruno@clisp.org>
34362
34363         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
34364         condition was already detected.
34365         Reported by Ben Pfaff <blp@cs.stanford.edu>.
34366
34367 2006-04-23  Bruno Haible  <bruno@clisp.org>
34368
34369         * lib/copy-file.c: Include <unistd.h> unconditionally.
34370         * lib/execute.c: Likewise.
34371         * lib/fatal-signal.c: Likewise.
34372         * lib/findprog.c: Likewise.
34373         * lib/mkdtemp.c: Likewise.
34374         * lib/pipe.h: Likewise.
34375         * lib/pipe.c: Likewise.
34376         * lib/wait-process.h: Likewise.
34377
34378 2006-04-23  Bruno Haible  <bruno@clisp.org>
34379
34380         * gnulib-tool (func_usage): Fix --import description. Document
34381         --update.
34382         (func_import): Create temporary file in a temporary directory, if
34383         --dry-run is specified. Silence errors from 'grep' when there are no
34384         m4 files in $m4dir.
34385         (func_create_testdir): Silence errors from 'grep' when there are no
34386         m4 files in $m4dir.
34387         Reported by Karl Berry <karl@freefriends.org>.
34388
34389 2006-04-20  Bruno Haible  <bruno@clisp.org>
34390
34391         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
34392         one argument, so that the code will be portable to Autoconf 2.60.
34393         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
34394         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
34395         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
34396
34397 2006-04-19  Derek Price  <derek@ximbiot.com>
34398             Eric Blake  <ebb9@byu.net>
34399
34400         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
34401         rather than "/full/path.h".  Update comment to match.  Shorten &
34402         generalize m4_translit call via AS_TR_CPP.
34403
34404 2006-04-19  Derek Price  <derek@ximbiot.com>
34405             Eric Blake  <ebb9@byu.net>
34406
34407         * lib/inttypes.h: Correct grammar in comment.
34408
34409 2006-04-18  Derek Price  <derek@ximbiot.com>
34410             Paul Eggert  <eggert@cs.ucla.edu>
34411
34412         * modules/inttypes: New file.
34413         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
34414
34415 2006-04-18  Derek Price  <derek@ximbiot.com>
34416             Paul Eggert  <eggert@cs.ucla.edu>
34417
34418         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
34419         New files.
34420
34421 2006-04-18  Derek Price  <derek@ximbiot.com>
34422             Paul Eggert  <eggert@cs.ucla.edu>
34423
34424         * lib/inttypes.h: New file.
34425         * lib/strtoimax.c: Assume <inttypes.h>.
34426
34427 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
34428
34429         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
34430         isn't mounted.  Problem reported by Kir Kolyshkin.
34431
34432 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
34433
34434         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
34435         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
34436         Derek R. Price.
34437         * lib/regex.h (RE_DUP_MAX): Update comment to match current
34438         implementation.
34439
34440 2006-04-12  Eric Blake  <ebb9@byu.net>
34441
34442         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
34443         is now done automatically by the corresponding Autoconf macro.
34444
34445 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
34446
34447         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
34448         time_r.h.
34449
34450 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34451
34452         Merge regex changes from libc, removing some of our
34453         POSIX-conformance changes that were rejected and redoing them in a
34454         less-intrusive way.
34455
34456         * lib/regcomp.c (re_compile_internal, init_dfa):
34457         Length arg is now size_t, not Idx.  All uses changed.
34458         (peek_token): Forward decl now says internal_function.
34459         (__re_error_msgid, __re_error_msgid_idx):
34460         Now static rather than extern with attribute_hidden.
34461         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
34462         For some reason libc prefers K&R style defns for external functions.
34463         (regerror) [!defined _LIBC]: Likewise.
34464         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
34465         (seek_collating_symbol_entry, lookup_collation_sequence_value):
34466         (build_range_exp, build_collating_symbol):
34467         Use K&R-style defn.
34468         (re_compile_fastmap): Use '\0' to memset, not 0.
34469         (utf8_sb_map): Make the calculations more obvious.
34470         (init_dfa, parse_bracket_exp, build_charclass_op):
34471         Call calloc and cast result, as glibc does.
34472         (init_word_char, fetch_token, peek_token, peek_token_bracket):
34473         (build_range_exp, build_collating_symbol):
34474         Now internal functions.
34475
34476         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
34477
34478         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
34479         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
34480         Don't depend on VMS; depend on __VMS instead, for POSIX
34481         namespace cleanness.
34482         (regoff_t): Define to ssize_t, not long int.
34483
34484         Remove the REG_ macros named below.  Instead, make the old names
34485         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
34486         __USE_GNU_REGEX.
34487         (REG_BACKSLASH_ESCAPE_IN_LISTS):
34488         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
34489         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
34490         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
34491         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
34492         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
34493         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
34494         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
34495         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
34496         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
34497         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
34498         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
34499         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
34500         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
34501         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
34502         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
34503         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
34504         (REG_NREGS):
34505         Remove.  All uses replaced by the old RE_* names.
34506         (RE_BACKSLASH_ESCAPE_IN_LISTS):
34507         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
34508         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
34509         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
34510         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
34511         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
34512         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
34513         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
34514         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
34515         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
34516         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
34517         Don't bother having these macros be independent of each others'
34518         values, since they no longer exist in the POSIX name space.
34519
34520         Rename the following member names back to their old names,
34521         unless !__USE_GNU_REGEX.  All uses changed back.
34522         (buffer): Renamed from re_buffer.
34523         (allocated): Renamed from re_allocated.
34524         (used): Renamed from re_used.
34525         (syntax): Renamed from re_syntax.
34526         (fastmap): Renamed from re_fastmap.
34527         (translate): Renamed from re_translate.
34528         (can_be_null): Renamed from re_can_be_null.
34529         (regs_allocated): Renamed from re_regs_allocated.
34530         (fastmap_accurate): Renamed from re_fastmap_accurate.
34531         (no_sub): Renamed from re_no_sub.
34532         (not_bol): Renamed from re_not_bol.
34533         (not_eol): Renamed from re_not_eol.
34534         (newline_anchor): Renamed from re_newline_anchor.
34535         (num_regs): Renamed from rm_num_regs.
34536         (start): Renamed from rm_start.
34537         (end): Renamed from rm_end.
34538
34539         (free_state): Move up a bit.
34540
34541         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
34542         #define to be empty.
34543         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
34544         when that is what is intended.
34545         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
34546         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
34547         (MAX): New macro.
34548         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
34549         All uses changed back to re_malloc, etc.  It's now the caller's
34550         responsibility to check for overflow; all callers changed.
34551         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
34552         (re_x2nrealloc): Remove.
34553         (free_state): Remove decl.
34554
34555         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
34556         (re_set_registers, re_exec):
34557         Use K&R-style defn.
34558
34559         2006-01-31  Roland McGrath  <roland@redhat.com>
34560
34561         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
34562         Reported by Mike Frysinger <vapier@gentoo.org>.
34563
34564         2006-01-15  Andreas Jaeger  <aj@suse.de>
34565
34566         [BZ #1950]
34567         * lib/regex_internal.c (re_string_reconstruct): Adjust for
34568         build_wcs_upper_buffer change.
34569         (build_wcs_upper_buffer): Change return type.
34570
34571         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
34572
34573         * lib/regex_internal.h: Include <stdint.h> if available.
34574
34575         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
34576
34577         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
34578
34579         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
34580
34581         * lib/regcomp.c: Adjust for changed secondary hash function.
34582
34583         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
34584
34585         * lib/regex.h: Pretty printing.
34586         Clean up namespace a bit.
34587
34588         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
34589
34590         * lib/regexec.c (update_cur_sifted_state, check_arrival,
34591         check_arrival_add_next_nodes): Avoid using uninitialized variable.
34592
34593         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
34594                     Ulrich Drepper  <drepper@redhat.com>
34595
34596         [BZ #1302]
34597         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
34598         changed.
34599         (bitset_word_t): Renamed from bitset_word.  All uses changed.
34600
34601         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
34602
34603         [BZ #281]
34604         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
34605         * lib/regcomp.c: Remove unnecessary uses of
34606         unsigned RE_TRANSLATE_TYPE.
34607         * lib/regex_internal.h: Likewise.
34608         * lib/regex_internal.c: Likewise.
34609         * lib/regexec.c: Likewise.
34610         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
34611
34612         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
34613
34614         * lib/regexec.c (find_recover_state): Remove unnecessary
34615         initialization.
34616         (transit_state_bkref): Make DFA a const pointer.
34617         (get_subexp): Likewise.
34618         (check_arrival): Likewise.
34619         (update_cur_sifted_state): Likewise.
34620         (re_search_internal): Likewise.
34621         (prune_impossible_nodes): Likewise.
34622         (acquire_init_state_context): Likewise.
34623         (proceed_next_node): Likewise.
34624         (set_regs): Likewise.
34625         (free_fail_stack_return): Likewise.
34626         (check_arrival_expand_ecl): Mark DFA parameter as const.
34627         (check_arrival_expand_ecl_sub): Likewise.
34628         (check_subexp_limits): Likewise.
34629         (sub_epsilon_src_nodes):  Likewise.
34630         (add_epsilon_src_nodes):  Likewise.
34631         (merge_state_array): Likewise.
34632         (update_regs): Likewise.
34633         (build_trtable): Likewise.
34634         (sift_states_backward): Mark MCTX parameter as const.
34635         (build_sifted_states): Likewise.
34636         (update_cur_sifted_state): Likewise.
34637         (sift_states_mkref): Likewise.
34638         (check_arrival_expand_ecl): Mark eclosure as const.
34639         (check_dst_limits_calc_pos_1): Likewise.
34640         * lib/regex_internal.h (re_match_context_t): Make dfa a const
34641         pointer.
34642
34643         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
34644
34645         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
34646         (transit_state_sb): Likewise.
34647         (transit_state_mb): Likewise.
34648         (sift_states_iter_mb): Likewise.
34649         (check_arrival_add_next_nodes): Likewise.
34650         (check_node_accept_bytes): Change first parameter to pointer-to-const.
34651         [_LIBC] (re_search_2_stub): Use mempcpy.
34652
34653         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
34654         mbrtowc for very simple UTF-8 case.
34655
34656         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
34657         a pointer-to-const.
34658         (re_acquire_state_context): Likewise.
34659         * lib/regex_internal.h: Adjust prototypes.
34660
34661         * lib/regex.c: Prevent using C++ compilers.
34662
34663         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
34664         (re_acquire_state_context): Likewise.
34665
34666 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34667
34668         * modules/regex (Depends-on): Add ssize_t.
34669
34670 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34671
34672         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
34673         translation table.
34674
34675 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
34676
34677         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
34678
34679 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
34680             Bruno Haible  <bruno@clisp.org>
34681
34682         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
34683         <sys/types.h> and <inttypes.h>.
34684
34685 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34686
34687         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
34688         `__error_t_defined', so argp.h will not typedef the former.
34689
34690 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
34691
34692         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
34693         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
34694         glibc names.  Even if glibc is changed to conform to POSIX, the
34695         traditional names will be available anyway, since regex depends on
34696         the extensions module.  Also, fix a longstanding typo in the
34697         implementation of Spencer ERE test #75 from grep 2.3.  Problems
34698         reported by Emanuele Giaquinta.  Also, change sense of cached
34699         variable, so that the message makes sense.
34700
34701 2006-03-24  Simon Josefsson  <jas@extundo.com>
34702
34703         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
34704         including some doc fixes.
34705         (base64_encode_alloc): Fix +1 bug on allocation failures.
34706
34707 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34708
34709         * lib/base64.c (base64_encode): Do not read past end of array with
34710         unsanitized input on systems with CHAR_BIT > 8.
34711
34712 2006-03-24  Eric Blake  <ebb9@byu.net>
34713
34714         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
34715
34716 2006-03-22  Karl Berry  <karl@gnu.org>
34717
34718         * config/srclist.txt (*setenv.[ch]): get from coreutils.
34719         * config/srclistvars.sh (COREUTILS): new var.
34720
34721 2006-03-17  Jim Meyering  <jim@meyering.net>
34722
34723         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
34724         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
34725
34726 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
34727
34728         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
34729         no longer needs it.  Instead, check that regoff_t is as least
34730         as wide as ptrdiff_t.
34731
34732         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
34733         so that our regex.h stays compatible with the installed regex.
34734         This is helpful for installers who configure --without-included-regex.
34735         Problem reported by Emanuele Giaquinta.
34736
34737 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
34738
34739         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
34740         Typedef to long int, not to off_, as POSIX will likely change
34741         in that direction.
34742
34743 2006-03-15  Eric Blake  <ebb9@byu.net>
34744
34745         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
34746
34747 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
34748
34749         * lib/argp-help.c (validate_uparams): Fix typo
34750         * lib/argp-parse.c (argp_default_options): Consistently begin help
34751         messages with a lowercase letter.
34752
34753 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
34754
34755         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
34756         overrun buffers and shouldn't be used (much as gets shouldn't be
34757         used).
34758         * lib/time_r.c (asctime_r, ctime_r): Likewise.
34759
34760 2006-03-08  Simon Josefsson  <jas@extundo.com>
34761
34762         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
34763         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34764
34765 2006-03-08  Simon Josefsson  <jas@extundo.com>
34766
34767         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
34768         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34769
34770 2006-03-08  Simon Josefsson  <jas@extundo.com>
34771
34772         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
34773         signal that configure disabled the device.
34774
34775 2006-03-08  Simon Josefsson  <jas@extundo.com>
34776
34777         * build-aux/maint.mk: Fix refresh-po, to handle no translated
34778         languages.
34779
34780 2006-03-07  Simon Josefsson  <jas@extundo.com>
34781
34782         * modules/getopt (Depends-on): Add unistd.
34783
34784         * modules/unistd: New file.
34785
34786 2006-03-07  Simon Josefsson  <jas@extundo.com>
34787
34788         * modules/gc-random: New file.
34789
34790 2006-03-07  Simon Josefsson  <jas@extundo.com>
34791
34792         * m4/unistd_h.m4: New file.
34793
34794 2006-03-07  Simon Josefsson  <jas@extundo.com>
34795
34796         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
34797         test to be side-effect free by storing the result in the cache
34798         variable gl_cv_lib_readline, and moving the assignment of
34799         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
34800         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34801
34802 2006-03-07  Simon Josefsson  <jas@extundo.com>
34803
34804         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
34805         error on missing devices (the functions will return an error).
34806
34807         * m4/gc.m4: Move random stuff to gc-random.m4
34808
34809 2006-03-07  Simon Josefsson  <jas@extundo.com>
34810
34811         * lib/unistd_.h: New file.
34812
34813 2006-03-07  Simon Josefsson  <jas@extundo.com>
34814
34815         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
34816
34817 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
34818
34819         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
34820         Problem reported by Juan Manuel Guerrero.
34821
34822 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
34823
34824         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
34825         the unistd module.
34826         * lib/getlogin_r.c: Likewise.
34827         * lib/getlogin_r.h: Likewise.
34828         * lib/glob.c: Likewise.
34829         * lib/pagealign_alloc.c: Likewise.
34830         * lib/unistd_.h: Remove; no longer needed.
34831
34832 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
34833
34834         * MODULES.html.sh (Support for systems lacking POSIX:2001):
34835         Add unistd.
34836         * modules/c-stack (Depends-on): Add unistd.
34837         * modules/getlogin_r: Likewise.
34838         * modules/glob: Likewise.
34839         * modules/pagealign_alloc: Likewise.
34840         * modules/unistd (Files): Remove lib/unistd_.h.
34841         (EXTRA_DIST): Remove.
34842         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
34843         need unistd_.h.
34844         (MOSTLYCLEANFILES): Remove unistd.h-t.
34845
34846 2006-03-03  Simon Josefsson  <jas@extundo.com>
34847
34848         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
34849
34850 2006-03-03  Simon Josefsson  <jas@extundo.com>
34851
34852         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
34853         libidn and bison.
34854
34855 2006-03-03  Simon Josefsson  <jas@extundo.com>
34856
34857         * build-aux/maint.mk: Add indent target.
34858
34859 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
34860
34861         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
34862         our replacement poll.h in any case, to avoid a differing
34863         declaration from a system header.  Seen on AIX.
34864
34865 2006-03-01  Simon Josefsson  <jas@extundo.com>
34866
34867         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
34868         <kasal@ucw.cz>.
34869
34870 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
34871
34872         * modules/gettime (Depends-on): Add extensions module.
34873         * modules/nanosleep (Depends-on): Likewise.
34874         * modules/settime (Depends-on): Likewise.
34875
34876 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
34877
34878         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
34879         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
34880         pedantically.
34881         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
34882         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
34883
34884         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
34885         not "==".  Reported by Ralf Wildenhues.
34886
34887 2006-03-01  Karl Berry  <karl@gnu.org>
34888
34889         * doc/Copyright/request-*: new files, synced from gnuorg.
34890
34891 2006-03-01  Karl Berry  <karl@gnu.org>
34892
34893         * config/srclist.txt (Copyright/*): new entries.
34894
34895 2006-02-28  Simon Josefsson  <jas@extundo.com>
34896
34897         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
34898
34899 2006-02-27  Simon Josefsson  <jas@extundo.com>
34900
34901         * lib/base64.h: Indent #define's.  From Jim Meyering
34902         <jim@meyering.net>.
34903
34904 2006-02-27  Jim Meyering  <jim@meyering.net>
34905
34906         Revert the change of 2006-02-24, so these files can continue
34907         to be sync'd from gettext.
34908         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
34909         of `config.h'.
34910
34911 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
34912
34913         * modules/intprops: New file.
34914         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
34915         Add intprops.
34916         * modules/getloadavg (Files): Remove lib/intprops.h.
34917         (Depends-on): Add intprops.
34918         * modules/human: Likewise.
34919         * modules/inttostr: Likewise.
34920         * modules/openat: Likewise.
34921         * modules/sig2str: Likewise.
34922         * modules/userspec: Likewise.
34923         * modules/utimecmp: Likewise.
34924         * modules/xnanosleep: Likewise.
34925         * modules/xstrtol: Likewise.
34926
34927 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
34928
34929         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
34930         * modules/lock-tests (TESTS): Use $(EXEEXT).
34931         * modules/tls-tests: Likewise.
34932         * modules/argp-tests: Likewise.
34933         (check_PROGRAMS): New var, replacing...
34934         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
34935
34936 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34937
34938         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
34939         `config.h'.
34940
34941 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
34942
34943         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
34944
34945 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34946
34947         Sync from coreutils.
34948         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
34949         gl_CHDIR_SAFER.
34950
34951 2006-02-22  Jim Meyering  <jim@meyering.net>
34952
34953         Sync from coreutils.
34954         * m4/chdir-safer.m4: New file.
34955
34956 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
34957
34958         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
34959         AT_FDCWD exceeds INT_MAX.
34960         * lib/openat.h (AT_FDCWD): Likewise.
34961
34962 2006-02-17  Eric Blake  <address@hidden>
34963
34964         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
34965
34966 2006-02-16  Simon Josefsson  <jas@extundo.com>
34967
34968         * modules/getaddrinfo (Depends-on): Add sys_socket.
34969
34970 2006-02-15  Simon Josefsson  <jas@extundo.com>
34971
34972         * build-aux/maint.mk: Add dsyntax-check rule.
34973
34974 2006-02-15  Eric Blake  <ebb9@byu.net>
34975
34976         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
34977         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
34978         'present but cannot compile' warnings on cygwin.
34979         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
34980         use ws2tcpip.h if sys/socket.h works.
34981         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
34982         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
34983
34984 2006-02-14  Simon Josefsson  <jas@extundo.com>
34985
34986         * modules/maintainer-makefile (Files): Rename.
34987
34988         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
34989         and (the local) Makefile.cfg to maint-cfg.mk.
34990
34991         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
34992         to the latter.
34993
34994         * modules/maintainer-makefile: New module.
34995
34996         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
34997         severaly stripped to make it possible to build it up from scratch
34998         with reliable tests.
34999
35000         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
35001         fixes to permit overriding the default actions when configure and
35002         makefile are not available.
35003
35004 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
35005
35006         Sync from coreutils.
35007         * modules/lstat (Depends-on): Don't depend on xalloc.
35008         (License): Change from GPL to LGPL, since this is now simply a
35009         replacement for a libc function.
35010
35011 2006-02-14  Jim Meyering  <jim@meyering.net>
35012
35013         Sync from coreutils.
35014
35015         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
35016         failure on deficient systems, and simplify gnulib lgpl dependencies.
35017         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
35018         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
35019
35020         * lib/xalloc-die.c: Remove unused definition of N_.
35021
35022 2006-02-14  Jim Meyering  <jim@meyering.net>
35023
35024         Sync from coreutils.
35025         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
35026         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
35027         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
35028         double-quote uses of that variable, to accommodate the rare case in
35029         which getmntent is available in none of the libraries checked.  This
35030         happens at least on FreeBSD 5.0.
35031
35032 2006-02-13  Simon Josefsson  <jas@extundo.com>
35033
35034         * gnulib-tool (Usage): Fix --import, from
35035         karl@freefriends.org (Karl Berry).
35036
35037 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
35038
35039         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
35040
35041 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
35042
35043         * lib/argp-namefrob.h: Restore changes accidentally lost during the
35044         "autoupdate" on 2005-12-12.
35045
35046 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
35047
35048         * modules/closeout (Depends-on): Remove atexit.
35049
35050 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
35051
35052         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
35053         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
35054
35055 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
35056
35057         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
35058         __EXTENSIONS__ if this causes compilation to fail.  Problem
35059         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
35060         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
35061
35062 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
35063
35064         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
35065         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
35066         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
35067         All uses changed.
35068
35069 2006-01-26  Simon Josefsson  <jas@extundo.com>
35070
35071         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
35072         prototype is visible on mingw32.
35073
35074         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
35075         for mingw32.
35076
35077         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
35078         mingw32).
35079
35080 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
35081
35082         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
35083         attempt to open for write; this always fails, at least on POSIX
35084         hosts.  This reinstates the 2006-01-09 change, which was
35085         inadvertently removed.
35086
35087 2006-01-26  Bruno Haible  <bruno@clisp.org>
35088
35089         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
35090         Reported by Paul Eggert.
35091
35092 2006-01-26  Bruno Haible  <bruno@clisp.org>
35093             Paul Eggert  <eggert@cs.ucla.edu>
35094
35095         * lib/stdbool_.h (_Bool)
35096         [(! (defined __cplusplus || defined __BEOS__)
35097           && !defined __GNUC__
35098           && !(defined __HP_cc || defined __xlc__
35099                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
35100                || defined __sgi))]:
35101         #define to signed char in these cases too; this simplifies
35102         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
35103         etc., separately) and makes it more conservative.
35104
35105 2006-01-25  Simon Josefsson  <jas@extundo.com>
35106
35107         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
35108         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
35109         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
35110
35111 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
35112
35113         * lib/argp-namefrob.h: Bugfix. Remove stray #
35114
35115 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
35116
35117         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
35118         so that we test the test.
35119         Check for yet another HP-UX cc bug involving *bool |= bool.
35120
35121 2006-01-25  Karl Berry  <karl@gnu.org>
35122
35123         * config/srclist.txt (vasnprintf.c): sync lost.
35124
35125 2006-01-25  Jim Meyering  <jim@meyering.net>
35126
35127         Sync from the stable (b5) branch of coreutils:
35128
35129         * lib/fts.c (fts_children): Don't let close() clobber errno from
35130         failed fchdir().
35131
35132         * lib/fts.c (fts_stat): When following a symlink-to-directory,
35133         don't necessarily interpret stat-fails+lstat-succeeds as indicating
35134         a dangling symlink.  That can also happen at least for ELOOP.
35135         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
35136         FYI, this bug predates the inclusion of fts.c in coreutils.
35137
35138         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
35139         in their own block, so pre-c99 compilers don't object.
35140
35141         Avoid the double-free (first in fts_read, second in fts_close) that
35142         would occur when an `active' directory is made inaccessible (e.g.,
35143         via chmod a-x) during a traversal.
35144         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
35145         before returning.  Reproduce this failure by
35146         mkdir -p a/b; cd a; chmod a-x . b
35147         Reported by Stavros Passas.
35148
35149 2006-01-25  Jim Meyering  <jim@meyering.net>
35150
35151         * lib/fileblocks.c: Remove more useless parentheses.
35152         * lib/readutmp.h: Likewise.
35153
35154 2006-01-25  Bruno Haible  <bruno@clisp.org>
35155
35156         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
35157         warnings.
35158         Reported by Paul Eggert.
35159
35160 2006-01-25  Bruno Haible  <bruno@clisp.org>
35161
35162         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
35163         rid of a trap command. For Solaris sh.
35164         Reported by Mark D. Baushke <mdb@gnu.org>.
35165
35166 2006-01-24  Simon Josefsson  <jas@extundo.com>
35167
35168         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
35169         Bruno.
35170
35171 2006-01-24  Karl Berry  <karl@gnu.org>
35172
35173         * config/srclist.txt (argp-namefrob.h): sync lost.
35174
35175 2006-01-24  Jim Meyering  <jim@meyering.net>
35176
35177         * modules/openat (Files): Add lib/intprops.h.
35178         From Mark D. Baushke.
35179
35180 2006-01-24  Jim Meyering  <jim@meyering.net>
35181
35182         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
35183         Reported by Mark D. Baushke.
35184
35185 2006-01-24  Jim Meyering  <jim@meyering.net>
35186
35187         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
35188
35189 2006-01-24  Bruno Haible  <bruno@clisp.org>
35190
35191         * modules/strnlen (Maintainer): Change from glibc to all.
35192
35193 2006-01-24  Bruno Haible  <bruno@clisp.org>
35194
35195         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
35196         Patch by Paul Eggert.
35197
35198 2006-01-24  Bruno Haible  <bruno@clisp.org>
35199
35200         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
35201         already has it.
35202         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
35203         2005-11-26.
35204
35205         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
35206         'signed char' to avoid problems with the built-in _Bool type.
35207         Reported by Paul Eggert on 2005-11-26.
35208
35209 2006-01-24  Bruno Haible  <bruno@clisp.org>
35210
35211         * gnulib-tool (func_import): Avoid constructing complicated sed
35212         expressions inside backquote.
35213         Report and solution by Mark D. Baushke <mdb@gnu.org>.
35214
35215 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
35216
35217         These changes imported from libc.
35218         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
35219         test and two separate function calls.
35220         * lib/strndup.c (__strndup): Add libc_hidden_def.
35221
35222 2006-01-23  Simon Josefsson  <jas@extundo.com>
35223
35224         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
35225         Remove the test_*_SOURCES variable: automake infers it by default.
35226         * modules/tls-tests: Likewise.
35227
35228 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35229
35230         Work around porting bugs reported by Dieter in
35231         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
35232         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
35233         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
35234         Include "getopt.h" first, to check interface.
35235         (getenv): Declare only if defined HAVE_DECL_GETENV &&
35236         !HAVE_DECL_GETENV.
35237         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
35238         (__strndup): Revert to K&R-style function dfns, the glibc style.
35239         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
35240         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
35241         Include strnlen.h first, to get prototype properly.
35242         (strnlen): Renamed from __strnlen.
35243         Remove weak alias.
35244
35245 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35246
35247         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
35248
35249 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
35250
35251         * config/srclist.txt: Adjust to reflect glibc reorganization.
35252         This affects only comments.
35253
35254 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
35255
35256          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
35257          Reported by Bruce Korb <bkorb@gnu.org>.
35258
35259 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
35260
35261         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
35262         to pacify gcc -Wswitch-default.
35263
35264 2006-01-22  Bruno Haible  <bruno@clisp.org>
35265
35266         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
35267         temporary buffer for sprintf, take into account the precision also
35268         for 'd', 'i', 'u', 'o', 'x', 'X'.
35269
35270 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
35271
35272         * modules/argp-tests: New module
35273         * tests/test-argp.c: New file
35274         * tests/test-argp-2.sh: New file
35275
35276 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
35277
35278         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
35279         (__argp_base_name): Removed
35280         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
35281         typo.
35282         (__argp_base_name): Provide macro definition or extern declaration
35283         depending on the configuration
35284
35285 2006-01-20  Simon Josefsson  <jas@extundo.com>
35286
35287         * modules/inet_ntop (Depends-on): Depend on sys_socket.
35288
35289 2006-01-20  Simon Josefsson  <jas@extundo.com>
35290
35291         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
35292
35293 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
35294
35295         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
35296         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
35297         Suggested by Bruno Haible.
35298
35299 2006-01-20  Karl Berry  <karl@gnu.org>
35300
35301         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
35302         until changes propagate, I guess.
35303
35304 2006-01-19  Simon Josefsson  <jas@extundo.com>
35305
35306         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
35307
35308 2006-01-19  Simon Josefsson  <jas@extundo.com>
35309
35310         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
35311
35312 2006-01-19  Simon Josefsson  <jas@extundo.com>
35313
35314         * gnulib-tool: Set check_PROGRAMS.
35315
35316         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
35317         modules/des-tests, modules/gc-arcfour-tests,
35318         modules/gc-arctwo-tests, modules/gc-des-tests,
35319         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
35320         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
35321         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
35322         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
35323         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
35324         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
35325         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
35326         test_*_SOURCES.
35327
35328 2006-01-18  Simon Josefsson  <jas@extundo.com>
35329
35330         * modules/socklen (Depends-on): Depend on sys_socket.
35331
35332 2006-01-18  Simon Josefsson  <jas@extundo.com>
35333
35334         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
35335         modules/des-tests, modules/gc-arcfour-tests,
35336         modules/gc-arctwo-tests, modules/gc-des-tests,
35337         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
35338         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
35339         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
35340         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
35341         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
35342         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
35343         $(EXEEXT) to automake TESTS variable, for mingw32.
35344
35345 2006-01-17  Simon Josefsson  <jas@extundo.com>
35346
35347         * modules/socklen (Include): Need sys/socket.h.
35348
35349 2006-01-17  Bruno Haible  <bruno@clisp.org>
35350
35351         * modules/ssize_t (Include): Add <sys/types.h>.
35352
35353 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
35354
35355         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
35356         it's not portable and it doesn't work with cross-compiles.
35357         Problem reported by Bruno Haible.  Fix missing-$ typo in
35358         'test "gl_cv_ignore_unused_libraries" ...' that prevented
35359         -zignore from being used with Sun's C compiler.
35360
35361 2006-01-12  Simon Josefsson  <jas@extundo.com>
35362
35363         * lib/base64.c: Fix warning, reported by Bruno Haible
35364         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
35365
35366 2006-01-12  Bruno Haible  <bruno@clisp.org>
35367
35368         * modules/ldd: New file.
35369         * build-aux/ldd.sh.in: New file.
35370         * MODULES.html.sh (Support for building libraries and executables): Add
35371         ldd.
35372
35373 2006-01-12  Bruno Haible  <bruno@clisp.org>
35374
35375         * m4/ldd.m4: New file.
35376
35377 2006-01-12  Bruno Haible  <bruno@clisp.org>
35378
35379         * gnulib-tool (func_import, func_create_testdir): Don't go into an
35380         endless loop while replacing $auxdir with build-aux.
35381
35382 2006-01-11  Simon Josefsson  <jas@extundo.com>
35383
35384         * lib/stdint_.h (SIZE_MAX): Add missing (.
35385
35386 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
35387
35388         Sync from coreutils.
35389         * lib/md5.c: Fix commentary typos.
35390         (alignof, UNALIGNED_P): No need for a GCC-specific version.
35391         * lib/md5.h (__attribute__): Remove; unused.
35392         * lib/sha1.c: Fix commentary to match md5 better.
35393         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
35394         so that we don't need to worry about alignment.  All uses changed.
35395         This merges the 2005-10-28 md5 change into sha1.
35396
35397 2006-01-11  Jim Meyering  <jim@meyering.net>
35398
35399         Sync from coreutils.
35400         * lib/md5.c (OP): Fix spacing.
35401
35402 2006-01-11  Bruno Haible  <bruno@clisp.org>
35403
35404         Ensure automatic ordering between gl_LOCK and gl_ARGP.
35405         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
35406         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
35407
35408 2006-01-11  Bruno Haible  <bruno@clisp.org>
35409
35410         Ensure automatic ordering between gl_LOCK and gl_ARGP.
35411         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
35412         the "early" section as well.
35413
35414 2006-01-11  Bruno Haible  <bruno@clisp.org>
35415
35416         Avoid "ar: no archive members specified" error on MacOS X.
35417         * gnulib-tool (func_modules_add_dummy): New function.
35418         (func_import, func_create_testdir): Invoke it.
35419
35420 2006-01-11  Bruno Haible  <bruno@clisp.org>
35421
35422         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
35423         with $auxdir in AC_CONFIG_FILES statements.
35424
35425 2006-01-11  Bruno Haible  <bruno@clisp.org>
35426
35427         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35428         Initialize also noinst_HEADERS to empty.
35429
35430 2006-01-11  Bruno Haible  <bruno@clisp.org>
35431
35432         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
35433         variables.
35434         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
35435         autoreconf.
35436
35437 2006-01-11  Bruno Haible  <bruno@clisp.org>
35438
35439         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
35440         overridable by the user.
35441         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
35442
35443 2006-01-10  Simon Josefsson  <jas@extundo.com>
35444
35445         * modules/sys_socket: New file.
35446
35447 2006-01-10  Simon Josefsson  <jas@extundo.com>
35448
35449         * m4/sys_socket_h.m4: New file.
35450
35451 2006-01-10  Simon Josefsson  <jas@extundo.com>
35452
35453         * lib/socket_.h: New file.
35454
35455 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35456
35457         * modules/readutmp (Maintainer): Add myself.
35458
35459 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35460
35461         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
35462         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
35463         People who are still concerned with buggy memcmp implementations
35464         can invoke gl_FUNC_MEMCMP themselves.
35465
35466 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
35467
35468         * lib/regex_internal.h (BITSET_WORD_BITS):
35469         Work around a bug in 64-bit PGC (before version 6.1-2), where the
35470         preprocessor mishandles large unsigned values as if they were signed.
35471         Problem reported by Claudio Fontana in
35472         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
35473
35474 2006-01-10  Jim Meyering  <jim@meyering.net>
35475
35476         Avoid the double-free (first in fts_read, second in fts_close) that
35477         would occur when an `active' directory is made inaccessible (e.g.,
35478         via chmod a-x) during a traversal.
35479         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
35480         before returning.  Reproduce this failure by
35481         mkdir -p a/b; cd a; chmod a-x . b
35482         Reported by Stavros Passas.
35483
35484         Sync from coreutils.
35485         * lib/sha1.c: Tweak grammar in a comment.
35486
35487 2006-01-10  Jim Meyering  <jim@meyering.net>
35488
35489         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
35490         Patch by Joerg Sonnenberger.
35491
35492 2006-01-10  Bruno Haible  <bruno@clisp.org>
35493
35494         * modules/readutmp: Depend on module free.
35495         * modules/strtok_r: Depend on module restrict.
35496
35497 2006-01-10  Bruno Haible  <bruno@clisp.org>
35498
35499         * modules/gettext (configure.ac): Add an invocation of
35500         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
35501
35502 2006-01-10  Bruno Haible  <bruno@clisp.org>
35503
35504         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
35505         Reported by Werner Lemberg <wl@gnu.org>.
35506
35507 2006-01-10  Bruno Haible  <bruno@clisp.org>
35508
35509         * lib/localcharset.c: Update from GNU gettext.
35510
35511 2006-01-10  Bruno Haible  <bruno@clisp.org>
35512
35513         * lib/argp.h (__const): Remove macro. Use const instead.
35514         * lib/argp-fmtstream.h (__const): Likewise.
35515         * lib/glob_.h (__const): Remove macro.
35516         * lib/glob-libc.h: Use const instead of __const.
35517
35518 2006-01-10  Bruno Haible  <bruno@clisp.org>
35519
35520         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
35521         variable.
35522         Needed to avoid an automake error regarding the 'gettext' module.
35523
35524 2006-01-09  Simon Josefsson  <jas@extundo.com>
35525
35526         * modules/inet_ntop (Depends-on): Add restrict.
35527
35528 2006-01-09  Simon Josefsson  <jas@extundo.com>
35529
35530         * modules/gc-rijndael-tests (License): Put under LGPL.
35531
35532         * modules/gc-des-tests (License): Likewise.
35533
35534         * modules/gc-arcfour-tests (License): Likewise.
35535
35536         * modules/gc-arctwo-tests (License): Likewise.
35537
35538         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
35539
35540         * modules/gc-hmac-sha1-tests (Files): Likewise.
35541
35542         * modules/gc-hmac-md5-tests (License): Likewise.
35543
35544         * modules/gc-sha1-tests (License): Likewise.
35545
35546         * modules/gc-md5-tests (License): Likewise.
35547
35548         * modules/gc-md4-tests (License): Likewise.
35549
35550         * modules/gc-md2-tests (License): Likewise.
35551
35552         * modules/gc-tests (License): Likewise.
35553
35554         * modules/des-tests (License): Likewise.
35555
35556         * modules/md4-tests (License): Likewise.
35557
35558         * modules/md2-tests (License): Likewise.
35559
35560 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35561
35562         Sync from coreutils:
35563
35564         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
35565         * modules/lib-ignore: New file.
35566         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
35567         chdir-safer.m4, lchmod.m4.
35568         * modules/openat: Add mkdirat.c, openat-priv.h.
35569
35570 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35571
35572         Sync from coreutils.
35573         * m4/lib-ignore.m4: New file.
35574         * m4/lchmod.m4: New file.
35575
35576 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35577
35578         Sync from coreutils.
35579         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
35580         for write access: POSIX says that must fail.
35581         * lib/fts.c (diropen): Likewise.
35582         * lib/save-cwd.c (save_cwd): Likewise.
35583         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
35584         well, for minor improvements on hosts that lack O_DIRECTORY.
35585         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
35586         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
35587         Fall back on chown if open failed with EACCES.
35588
35589         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
35590         Report an error at compile-time if only a 1-second nominal clock
35591         resolution is found.
35592
35593         * lib/lchmod.h: New file.
35594         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
35595         (make_dir_parents): Use lchown rather than chown, and
35596         lchmod rather than chmod.
35597
35598         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
35599         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
35600         "proc" reported by n0dalus.
35601
35602         * lib/mountlist.c: Include <limits.h>.
35603         (dev_from_mount_options)
35604         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
35605         New function.  It no longer assumes "dev=" has the System V meaning
35606         on Linux (since it doesn't).  It also parses "dev=" more carefully.
35607         (read_file_system_list)
35608         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
35609         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
35610         dev= in that case.
35611
35612         * lib/posixtm.h (PDS_PRE_2000): New macro.
35613         * lib/posixtm.c (year): Arg is now syntax_bits rather than
35614         allow_century.  All usages changed.  Reject dates outside the range
35615         1969-1999 if PDS_PRE_2000 is used.
35616
35617 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
35618
35619         Sync from coreutils.
35620         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
35621         (Time of day items): Mention the possibility of leap seconds.
35622         Problem reported by Dr. David Alan Gilbert.
35623
35624 2006-01-09  Jim Meyering  <jim@meyering.net>
35625
35626         Sync from coreutils.
35627
35628         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
35629
35630         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
35631
35632         * lib/modechange.c (mode_compile): Reject an invalid mode string
35633         that starts with an octal digit.  From Andreas Gruenbacher.
35634
35635         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
35636         and dup to open_safer and dup_safer, respectively.
35637         (openat_permissive): Fix typo in comment.
35638
35639         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
35640         "gettext.h"; either no longer needed or are guaranteed by openat.h.
35641         (_): Remove; no longer needed.
35642         (openat): Renamed from rpl_openat; no need for rpl_openat
35643         since openat.h renames openat for us.
35644         Replace most of the body with a call to openat_permissive,
35645         to avoid duplicate code.
35646         Port to (probably hypothetical) environments were mode_t is
35647         wider than int.
35648         (openat_permissive): Require mode arg, so that we can check
35649         types better.  Put it just after flags.  Change cwd failure
35650         indicator from pointer-to-bool to pointer-to-errno-value.
35651         All callers changed.
35652         Invoke openat_save_fail and/or openat_restore_fail if
35653         cwd_errno is null, so that openat can call us.
35654         (openat_permissive, fdopendir, fstatat, unlinkat):
35655         Simplify errno handling to avoid some duplicate code,
35656         as it's OK to set errno on success.
35657         * lib/openat.h: Revamp code so that function macros depend on
35658         __OPENAT_PREFIX only, not also on AT_FDCWD.
35659         (openat_ro): Remove.  Caller changed to use openat_permissive.
35660         (openat_permissive): Now a macro, if not a function.
35661         (openat_restore_fail, openat_save_fail): Now always functions,
35662         since mkdirat needs them even if __OPENAT_PREFIX is defined.
35663
35664         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
35665         and openat.c.
35666         * lib/mkdirat.c: Include openat-priv.h.
35667         Remove definitions of macros defined therein.
35668         * lib/openat.c: Likewise.
35669
35670         * lib/mkdirat.c (mkdirat): New file and function.
35671         * lib/openat.h (mkdirat): Declare.
35672
35673         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
35674
35675         * lib/openat.h (openat_permissive): Declare.
35676         (openat_ro): Define.
35677
35678         * lib/openat.c (EXPECTED_ERRNO): New macro.
35679         (openat_permissive): New function -- used in remove.c rewrite.
35680         (all functions): Set errno just before returning, only if there
35681         was an actual failure.
35682         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
35683
35684         Emulate openat-family functions using Linux's procfs, if possible.
35685         Idea and some code based on Ulrich Drepper's glibc changes.
35686
35687         * lib/openat.c: (BUILD_PROC_NAME): New macro.
35688         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
35689         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
35690         before falling back on save_cwd and restore_cwd.
35691         (fdopendir, fstatat, unlinkat): Likewise.
35692
35693         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
35694         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
35695
35696         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
35697         as second argument to va_arg.  Otherwise, some versions of gcc
35698         warn that `if this code is reached, the program will abort'.
35699
35700 2006-01-09  Jim Meyering  <jim@meyering.net>
35701
35702         Sync from coreutils.
35703         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
35704         Require openat-priv.h.
35705
35706 2006-01-09  Bruno Haible  <bruno@clisp.org>
35707
35708         * modules/strnlen (Include): Use strnlen.h.
35709
35710 2006-01-09  Bruno Haible  <bruno@clisp.org>
35711
35712         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
35713
35714 2006-01-09  Bruno Haible  <bruno@clisp.org>
35715
35716         * lib/sysexit_.h (EX_OK): New macro.
35717         Suggested by Martin Lambers <marlam@marlam.de>.
35718
35719 2006-01-09  Bruno Haible  <bruno@clisp.org>
35720
35721         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
35722         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
35723
35724 2006-01-09  Bruno Haible  <bruno@clisp.org>
35725
35726         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
35727         numbers.
35728
35729 2006-01-09  Bruno Haible  <bruno@clisp.org>
35730
35731         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
35732         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
35733         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
35734         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
35735
35736 2006-01-09  Bruno Haible  <bruno@clisp.org>
35737
35738         * build-aux/javacomp.sh.in: New file, moved from lib/.
35739         * modules/javacomp-script (Files): Update.
35740         (configure.ac): Add AC_CONFIG_FILES invocation.
35741         (EXTRA_DIST): Remove variable.
35742
35743         * build-aux/javaexec.sh.in: New file, moved from lib/.
35744         * modules/javaexec (Files): Update.
35745         (configure.ac): Add AC_CONFIG_FILES invocation.
35746         (EXTRA_DIST): Remove javaexec.sh.in.
35747
35748         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
35749         * modules/csharpcomp-script (Files): Update.
35750         (configure.ac): Add AC_CONFIG_FILES invocation.
35751         (EXTRA_DIST): Remove variable.
35752
35753         * build-aux/csharpexec.sh.in: New file, moved from lib/.
35754         * modules/csharpexec (Files): Update.
35755         (configure.ac): Add AC_CONFIG_FILES invocation.
35756         (EXTRA_DIST): Remove csharpexec.sh.in.
35757
35758 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
35759
35760         Sync from coreutils.
35761
35762         Add POSIX ACL support
35763         * lib/acl.h (copy_acl, set_acl): Add declarations.
35764         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
35765         systems other than Linux.
35766         (chmod_or_fchmod): New function: use fchmod when possible,
35767         and chmod otherwise.
35768         (file_has_acl): Add a POSIX ACL implementation, with a
35769         Linux-specific subcase.
35770         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
35771         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
35772         acls are unsupported.
35773         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
35774         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
35775         are unsupported.
35776
35777 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
35778
35779         Sync from coreutils.
35780         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
35781
35782 2006-01-07  Bruno Haible  <bruno@clisp.org>
35783
35784         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
35785         gl_EARLY.
35786
35787 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
35788
35789         * lib/strftime.c (tzname): Don't declare if it is already #defined.
35790         Problem reported for Mingw by Mark Junker.
35791
35792 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
35793
35794         * README: Gnulib normally doesn't generate a tarball.
35795
35796 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
35797
35798         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
35799         long int, not int, for nanosecond counts, so that people who are
35800         used to POSIX struct timespec won't be surprised.  Reported by Jim
35801         Meyering.
35802
35803 2005-12-28  Bruno Haible  <bruno@clisp.org>
35804
35805         * build-aux/config.rpath: Update from GNU gettext.
35806
35807 2005-12-16  Jim Meyering  <jim@meyering.net>
35808
35809         * modules/fprintftime: New module.
35810         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
35811
35812 2005-12-16  Jim Meyering  <jim@meyering.net>
35813
35814         * m4/fprintftime.m4: New file.
35815
35816 2005-12-16  Jim Meyering  <jim@meyering.net>
35817
35818         * lib/fprintftime.c, lib/fprintftime.h: New files.
35819
35820 2005-12-15  Simon Josefsson  <jas@extundo.com>
35821
35822         * modules/socklen (configure.ac): Fix M4 macro name, to align with
35823         new m4/socklen.m4.
35824
35825 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
35826
35827         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
35828         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
35829
35830 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
35831
35832         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
35833         * lib/argp-help.c (fill_in_uparams): Check if the constructed
35834         struct uparams is valid. Fall back to the default values if it is
35835         not.
35836
35837 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
35838
35839         * modules/argp (Files): Add argp-pin.c
35840         (Depends-on): dirname
35841         (lib_SOURCES): Add argp-pin.c
35842
35843 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
35844
35845         * m4/argp.m4:  Check if program_invocation_name and
35846         program_invocation_short_name are declared and define appropriate
35847         macros if they are not.
35848
35849 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
35850
35851         * lib/argp-help.c (__argp_base_name): New function
35852         (__argp_short_program_name): Rewrite using __argp_base_name
35853         * lib/argp-namefrob.h: Define program_invocation_name and
35854         program_invocation_short_name if requested
35855         (__argp_base_name): Add prototype
35856         * lib/argp-parse.c (argp_def): Use gettext wrappers
35857         (argp_default_parser): Use __argp_base_name
35858         * lib/argp-pin.c: New file. Defines program_invocation_name and
35859         program_invocation_short_name on systems that lack them.
35860
35861 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
35862
35863         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
35864         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
35865         porting problem reported by Georg Schwarz in
35866         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
35867
35868 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
35869
35870         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
35871         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
35872         porting problem reported by Georg Schwarz in
35873         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
35874
35875 2005-12-05  Bruno Haible  <bruno@clisp.org>
35876
35877         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
35878         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
35879         Reported by Mark Junker <mjscod@gmx.de>.
35880
35881 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
35882
35883         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
35884         Use implementation from Albert Chin, with some
35885         comments/corrections by Stepan Kasal and myself.
35886
35887 2005-12-02  Bruno Haible  <bruno@clisp.org>
35888
35889         * gnulib-tool (func_import): Accept GPLed build tool modules when
35890         --lgpl is given.
35891         * modules/csharpcomp-script: New file.
35892         * modules/csharpcomp: Depend on it.
35893         * modules/javacomp-script: New file.
35894         * modules/javacomp: Depend on it.
35895         Suggested by Simon Josefsson.
35896
35897 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
35898
35899         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
35900         statement, to work around an HP-UX 10.20 compiler bug reported by
35901         Peter O'Gorman.
35902
35903 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
35904
35905         * modules/savedir (Depends-on): Add openat.
35906
35907 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
35908
35909         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
35910         (uintmax_t) [defined uintmax_t]: Do not declare.
35911         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
35912         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
35913         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
35914         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
35915         sake of portability to weird hosts that C allows (though we don't
35916         know of any practical examples).
35917
35918         * lib/savedir.h (fdsavedir): New decl.
35919         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
35920         contains most of the former guts of savedir.
35921         (savedir): Use savedirstream.
35922         Include "openat.h".
35923
35924 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
35925
35926         * modules/obstack (Files): Add m4/ulonglong.m4.
35927         Problem reported by Davide Angelocola.
35928
35929 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
35930
35931         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
35932         coreutils no longer futzes with rounding modes.
35933
35934 2005-11-14  Jim Meyering  <jim@meyering.net>
35935
35936         * lib/mkstemp-safer.c: Include <config.h>, required for possible
35937         replacement of mkstemp.
35938
35939 2005-11-10  Simon Josefsson  <jas@extundo.com>
35940
35941         * lib/readline.c: Remove EOL.
35942
35943 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
35944
35945         * modules/gethrxtime (Depends-on): Add gettime.
35946
35947 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
35948
35949         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
35950         or gettimeofday; no longer needed.
35951
35952 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
35953
35954         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
35955         time business.
35956         (gethrxtime) [! (HAVE_NANOUPTIME
35957         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
35958         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
35959         our own approximation.
35960
35961 2005-11-08  Eric Blake  <ebb9@byu.net>
35962
35963         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
35964
35965 2005-11-08  Eric Blake  <ebb9@byu.net>
35966
35967         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
35968
35969 2005-11-04  Bruno Haible  <bruno@clisp.org>
35970
35971         * gnulib-tool: Implement --update mode.
35972
35973 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
35974
35975         Fix porting problem reported by Theodoros V. Kalamatianos.
35976         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
35977         Don't assume that futimes failing means we must fail.
35978
35979 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
35980
35981         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
35982         variables to suggest the intended function of the PATH_MAX check.
35983
35984 2005-10-30  Kean Johnston  <jkj@sco.com>
35985
35986         Trivial changes to support SCO systems.
35987         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
35988         as PATH_MAX.
35989         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
35990         where __ptr is null when no I/O is pending.
35991
35992 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
35993
35994         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
35995         leave errno alone.  Problem reported by Dmitry V. Levin.
35996
35997 2005-10-28  Simon Josefsson  <jas@extundo.com>
35998
35999         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
36000         Test more.
36001
36002         * tests/test-gc-md2.c, tests/test-md2.c: New files.
36003
36004         * modules/md2, modules/md2-tests: New files.
36005
36006 2005-10-28  Simon Josefsson  <jas@extundo.com>
36007
36008         * m4/inet_ntop.m4: More tests.
36009
36010         * m4/gc-md2.m4, md2.m4: New file.
36011
36012 2005-10-28  Simon Josefsson  <jas@extundo.com>
36013
36014         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
36015         "restrict" keywords, as per POSIX.  Protect the function
36016         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
36017         Don't use K&R prototypes.  Check the sprintf return values.
36018         Re-define EAFNOSUPPORT if not present.  Indent.
36019
36020         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
36021         suggested by Bruno Haible <bruno@clisp.org>.
36022
36023         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
36024
36025         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
36026
36027         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
36028         libgcrypt).
36029
36030         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
36031
36032         * lib/md2.h, lib/md2.c: New files.
36033
36034 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
36035
36036         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
36037         errno alone.  Problem reported by Frederic Jolliton.
36038
36039 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
36040
36041         * modules/verify (License): Change from GPL to LGPL.  This is a
36042         tiny module and there are apparently near-equivalents that are
36043         under the BSD license.
36044
36045 2005-10-24  Simon Josefsson  <jas@extundo.com>
36046
36047         * modules/sha1: Relicense to LGPL.
36048
36049 2005-10-24  Simon Josefsson  <jas@extundo.com>
36050
36051         * lib/md4.h: Shrink buffer size, now that we changed the type.
36052
36053 2005-10-23  Simon Josefsson  <jas@extundo.com>
36054
36055         * gnulib-tool (func_import): Fix --tests-base.
36056
36057 2005-10-22  Simon Josefsson  <jas@extundo.com>
36058
36059         * modules/arcfour (Depends-on): Need stdint.
36060
36061 2005-10-22  Simon Josefsson  <jas@extundo.com>
36062
36063         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
36064         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
36065
36066 2005-10-22  Simon Josefsson  <jas@extundo.com>
36067
36068         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
36069         suggested by Bruno Haible <bruno@clisp.org>.
36070
36071 2005-10-22  Simon Josefsson  <jas@extundo.com>
36072
36073         * lib/crc.h: Include stddef.h, for size_t.
36074
36075 2005-10-22  Simon Josefsson  <jas@extundo.com>
36076
36077         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
36078         arcfour_context struct (simplify test vector testing in GNU
36079         Shishi).
36080
36081 2005-10-21  Simon Josefsson  <jas@extundo.com>
36082
36083         * modules/des, modules/des-tests: New files.
36084
36085         * modules/gc-des, modules/gc-des-tests: New files.
36086
36087         * tests/test-des.c, tests/test-gc-des.c: New file.
36088
36089 2005-10-21  Simon Josefsson  <jas@extundo.com>
36090
36091         * modules/arctwo, modules/arctwo-tests: New files.
36092
36093         * tests/test-arctwo.c: New file.
36094
36095         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
36096
36097         * tests/test-gc-arctwo.c: New file.
36098
36099 2005-10-21  Simon Josefsson  <jas@extundo.com>
36100
36101         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
36102         Bruno Haible <bruno@clisp.org>.
36103
36104         * m4/gc-des.m4: New file.
36105
36106 2005-10-21  Simon Josefsson  <jas@extundo.com>
36107
36108         * m4/arctwo.m4: New file.
36109
36110         * m4/gc-arctwo.m4: New file.
36111
36112 2005-10-21  Simon Josefsson  <jas@extundo.com>
36113
36114         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
36115         block.
36116
36117 2005-10-21  Simon Josefsson  <jas@extundo.com>
36118
36119         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
36120         <bruno@clisp.org>.
36121
36122         * lib/hmac-sha1.c (hmac_sha1): Likewise.
36123
36124         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
36125         Bruno Haible <bruno@clisp.org>.
36126
36127         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
36128         <bruno@clisp.org>.
36129
36130 2005-10-21  Simon Josefsson  <jas@extundo.com>
36131
36132         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
36133
36134 2005-10-21  Simon Josefsson  <jas@extundo.com>
36135
36136         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
36137
36138 2005-10-21  Simon Josefsson  <jas@extundo.com>
36139
36140         * lib/des.h, lib/des.c: New files.
36141
36142         * lib/gc-gnulib.c: Support DES.c
36143
36144 2005-10-21  Simon Josefsson  <jas@extundo.com>
36145
36146         * lib/arctwo.h, lib/arctwo.c: New files.
36147
36148         * lib/gc-gnulib.c: Support ARCTWO.
36149
36150 2005-10-21  Simon Josefsson  <jas@extundo.com>
36151
36152         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
36153         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36154
36155 2005-10-21  Simon Josefsson  <jas@extundo.com>
36156
36157         * gnulib-tool (func_import, func_create_testdir): Define automake
36158         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
36159         Makefile.am snippet),
36160         suggested by Bruno Haible <bruno@clisp.org>.
36161
36162         * modules/gc (Makefile.am): Use it.
36163
36164 2005-10-21  Bruno Haible  <bruno@clisp.org>
36165
36166         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
36167         patch.
36168
36169 2005-10-19  Simon Josefsson  <jas@extundo.com>
36170
36171         * tests/test-gc-rijndael.c: New file.
36172
36173         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
36174
36175 2005-10-19  Simon Josefsson  <jas@extundo.com>
36176
36177         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
36178         interface too.
36179
36180 2005-10-19  Simon Josefsson  <jas@extundo.com>
36181
36182         * tests/test-gc-arcfour.c: New file.
36183
36184         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
36185
36186 2005-10-19  Simon Josefsson  <jas@extundo.com>
36187
36188         * modules/gc-md4, modules/gc-md4-tests: New file.
36189
36190         * tests/test-gc-md4.c: New file.
36191
36192 2005-10-19  Simon Josefsson  <jas@extundo.com>
36193
36194         * m4/gc-md4.m4: New file.
36195
36196 2005-10-19  Simon Josefsson  <jas@extundo.com>
36197
36198         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
36199         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
36200         <kasal@ucw.cz>.
36201
36202 2005-10-19  Simon Josefsson  <jas@extundo.com>
36203
36204         * m4/gc-arcfour.m4: New file.
36205
36206         * m4/gc-rijndael.m4: New file.
36207
36208 2005-10-19  Simon Josefsson  <jas@extundo.com>
36209
36210         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
36211
36212 2005-10-19  Simon Josefsson  <jas@extundo.com>
36213
36214         * lib/gc-gnulib.c: Support ARCFOUR.
36215
36216 2005-10-19  Simon Josefsson  <jas@extundo.com>
36217
36218         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
36219         support.
36220
36221         * lib/gc.h: Add ECB enum type.
36222
36223         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
36224
36225 2005-10-18  Simon Josefsson  <jas@extundo.com>
36226
36227         * tests/test-md5.c: New file.
36228
36229         * modules/md5-tests: New file.
36230
36231 2005-10-18  Simon Josefsson  <jas@extundo.com>
36232
36233         * tests/test-md4.c: New file.
36234
36235         * modules/md4, modules/md4-tests: New files.
36236
36237 2005-10-18  Simon Josefsson  <jas@extundo.com>
36238
36239         * m4/md4.m4: New file.
36240
36241 2005-10-18  Simon Josefsson  <jas@extundo.com>
36242
36243         * lib/md4.h, lib/md4.c: New files, based on md5.?.
36244
36245 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
36246
36247         * gnulib-tool (func_create_testdir): Omit the second check whether
36248         BUILT_SOURCES in nonempty.
36249
36250 2005-10-17  Simon Josefsson  <jas@extundo.com>
36251
36252         * tests/test-rijndael.c: New file.
36253
36254 2005-10-17  Simon Josefsson  <jas@extundo.com>
36255
36256         * modules/sha1: Depend on stdint instead of md5.
36257
36258         * modules/md5: Depend on stdint, remove uint32_t.
36259
36260 2005-10-17  Simon Josefsson  <jas@extundo.com>
36261
36262         * modules/gc-sha1-tests: New file.
36263
36264         * tests/test-gc-sha1.c: New file.
36265
36266 2005-10-17  Simon Josefsson  <jas@extundo.com>
36267
36268         * m4/md5.m4: Remove call to uint32_t.m4.
36269
36270 2005-10-17  Simon Josefsson  <jas@extundo.com>
36271
36272         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
36273
36274         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
36275         md5.h.
36276
36277         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
36278
36279         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
36280
36281 2005-10-17  Simon Josefsson  <jas@extundo.com>
36282
36283         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
36284
36285 2005-10-17  Simon Josefsson  <jas@extundo.com>
36286
36287         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
36288
36289 2005-10-17  Simon Josefsson  <jas@extundo.com>
36290
36291         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
36292
36293         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
36294
36295 2005-10-17  Bruno Haible  <bruno@clisp.org>
36296
36297         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
36298         that it can also be used in a test.
36299
36300 2005-10-16  Bruno Haible  <bruno@clisp.org>
36301
36302         * gnulib-tool (func_emit_tests_Makefile_am): Also define
36303         TESTS_ENVIRONMENT, so that individual tests can augment it.
36304
36305         * gnulib-tool (func_create_testdir): Use an intermediate target for
36306         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
36307         macros, like $(ALLOCA_H), which cannot be passed through the command
36308         line.
36309
36310 2005-10-15  Simon Josefsson  <jas@extundo.com>
36311
36312         * modules/rijndael-tests: New file.
36313
36314         * modules/rijndael: New file.
36315
36316 2005-10-15  Simon Josefsson  <jas@extundo.com>
36317
36318         * m4/rijndael.m4: New file.
36319
36320 2005-10-15  Simon Josefsson  <jas@extundo.com>
36321
36322         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
36323
36324         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
36325
36326 2005-10-14  Simon Josefsson  <jas@extundo.com>
36327
36328         * tests/test-arcfour.c: New file.
36329
36330         * modules/arcfour, modules/arcfour-tests: New files.
36331
36332 2005-10-14  Simon Josefsson  <jas@extundo.com>
36333
36334         * m4/arcfour.m4: New file.
36335
36336 2005-10-14  Simon Josefsson  <jas@extundo.com>
36337
36338         * lib/arcfour.h, lib/arcfour.c: New files.
36339
36340 2005-10-14  Roland McGrath  <roland@redhat.com>
36341
36342         Import from libc.  [BZ #1331]
36343         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
36344         macro argument.
36345         Reported by Matej Vela <vela@debian.org>.
36346
36347 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
36348
36349         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
36350         include <wchar.h>; no longer needed.
36351
36352 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
36353
36354         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
36355
36356 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
36357         and  Ulrich Drepper  <drepper@redhat.com>
36358
36359         Import from libc.
36360         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
36361         instead of inline stream orientation test and two separate
36362         function calls.  Pay no attention to USE_IN_LIBIO.
36363
36364 2005-10-13  Simon Josefsson  <jas@extundo.com>
36365
36366         * modules/gc-hmac-md5-tests: New file.
36367
36368         * tests/test-gc-hmac-sha1.c: New file.
36369
36370         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
36371
36372         * modules/gc-hmac-md5-tests: New file.
36373
36374         * tests/test-gc-md5.c: New file.
36375
36376         * modules/gc-md5-tests: New file.
36377
36378 2005-10-13  Simon Josefsson  <jas@extundo.com>
36379
36380         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
36381         Move memory allocation outside of loop.
36382
36383 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
36384
36385         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
36386         intermediate directory is in a read-only file system.  Problem
36387         reported by Eric Blake.
36388
36389 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
36390
36391         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
36392
36393 2005-10-12  Simon Josefsson  <jas@extundo.com>
36394
36395         * tests/test-hmac-sha1.c: New file.
36396
36397         * modules/hmac-sha1-tests: New file.
36398
36399         * modules/hmac-sha1: New file.
36400
36401 2005-10-12  Simon Josefsson  <jas@extundo.com>
36402
36403         * modules/gc-sha1: New file.
36404
36405 2005-10-12  Simon Josefsson  <jas@extundo.com>
36406
36407         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
36408
36409         * tests/test-gc-pbkdf2-sha1.c: New file.
36410
36411 2005-10-12  Simon Josefsson  <jas@extundo.com>
36412
36413         * modules/gc-md5, modules/gc-hmac-md5: New files.
36414
36415         * modules/gc (Files): Remove md5, memxor and hmac files.
36416
36417 2005-10-12  Simon Josefsson  <jas@extundo.com>
36418
36419         * m4/gc-pbkdf2-sha1.m4: New file.
36420
36421         * m4/gc-hmac-sha1.m4: New file.
36422
36423         * m4/gc-sha1: New file.
36424
36425         * m4/hmac-sha1.m4: New file.
36426
36427 2005-10-12  Simon Josefsson  <jas@extundo.com>
36428
36429         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
36430
36431         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
36432
36433 2005-10-12  Simon Josefsson  <jas@extundo.com>
36434
36435         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
36436         suggested by Bruno Haible <bruno@clisp.org>.
36437
36438 2005-10-12  Simon Josefsson  <jas@extundo.com>
36439
36440         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
36441
36442 2005-10-12  Simon Josefsson  <jas@extundo.com>
36443
36444         * lib/gc-pbkdf2-sha1.c: New file.
36445
36446         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
36447
36448 2005-10-12  Simon Josefsson  <jas@extundo.com>
36449
36450         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
36451
36452         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
36453
36454 2005-10-12  Simon Josefsson  <jas@extundo.com>
36455
36456         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
36457         GC_USE_HMAC_MD5, respectively.
36458
36459         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
36460         (gc_md5): Fix typo.
36461
36462         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
36463
36464         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
36465
36466         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
36467
36468 2005-10-12  Bruno Haible  <bruno@clisp.org>
36469
36470         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
36471         Reported by Stepan Kasal <kasal@ucw.cz>.
36472
36473 2005-10-11  Simon Josefsson  <jas@extundo.com>
36474
36475         * tests/test-crc.c: New file.
36476
36477         * modules/crc, modules/crc-tests: New files.
36478
36479 2005-10-11  Simon Josefsson  <jas@extundo.com>
36480
36481         * m4/crc.m4: New file.
36482
36483 2005-10-11  Simon Josefsson  <jas@extundo.com>
36484
36485         * lib/gc.h: Add gc_hash and gc_hash_buffer.
36486
36487         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
36488
36489         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
36490
36491 2005-10-11  Simon Josefsson  <jas@extundo.com>
36492
36493         * lib/crc.h, lib/crc.c: New files.
36494
36495         * lib/gc.h (gc_hash_buffer): Add doc.
36496
36497 2005-10-11  Bruno Haible  <bruno@clisp.org>
36498
36499         * modules/c-strcasestr: New file.
36500         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
36501
36502 2005-10-11  Bruno Haible  <bruno@clisp.org>
36503
36504         * modules/c-strcase: New file.
36505         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
36506
36507 2005-10-11  Bruno Haible  <bruno@clisp.org>
36508
36509         * lib/strcasecmp.c: Include limits.h.
36510         (strcasecmp): Avoid integer overflow on exotic platforms.
36511         * lib/strncasecmp.c: Include limits.h.
36512         (strncasecmp): Avoid integer overflow on exotic platforms.
36513         Reported by Paul Eggert.
36514
36515 2005-10-11  Bruno Haible  <bruno@clisp.org>
36516
36517         * lib/c-strcasestr.h: New file, from GNU gettext.
36518         * lib/c-strcasestr.c: New file, from GNU gettext.
36519
36520 2005-10-11  Bruno Haible  <bruno@clisp.org>
36521
36522         * lib/c-strcase.h: New file, from GNU gettext.
36523         * lib/c-strcasecmp.c: New file, from GNU gettext.
36524         * lib/c-strncasecmp.c: New file, from GNU gettext.
36525
36526 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
36527
36528         * modules/mempcpy (License): GPL -> LGPL.
36529         * modules/strchrnul (License): Likewise.
36530         * modules/sysexits (License): Likewise.
36531
36532 2005-10-08  Simon Josefsson  <jas@extundo.com>
36533
36534         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
36535
36536 2005-10-07  Simon Josefsson  <jas@extundo.com>
36537
36538         * m4/memxor.m4: Remove gl_C_RESTRICT call.
36539
36540 2005-10-06  Simon Josefsson  <jas@extundo.com>
36541
36542         * tests/test-hmac-md5.c: New file.
36543
36544         * modules/hmac-md5-tests: New file.
36545
36546         * modules/hmac-md5: New file.
36547
36548 2005-10-06  Simon Josefsson  <jas@extundo.com>
36549
36550         * m4/hmac-md5.m4: New file.
36551
36552         * m4/memxor.m4: Require gl_C_RESTRICT.
36553
36554 2005-10-06  Simon Josefsson  <jas@extundo.com>
36555
36556         * lib/memxor.c (memxor): Avoid casts and warnings.
36557
36558 2005-10-06  Simon Josefsson  <jas@extundo.com>
36559
36560         * lib/hmac-md5.c: New file.
36561
36562         * lib/hmac.h: New file.
36563
36564 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
36565
36566         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
36567         promotes to int, not unsigned int, to catch the AIX 5.3
36568         compiler bug.
36569
36570 2005-10-05  Simon Josefsson  <jas@extundo.com>
36571
36572         * modules/memxor: New file.
36573
36574         * modules/iconv (Files): Move config.rpath to havelib, it is used
36575         there.
36576
36577         * modules/havelib (Files): Add config.rpath.
36578
36579 2005-10-05  Simon Josefsson  <jas@extundo.com>
36580
36581         * m4/memxor.m4: New file.
36582
36583 2005-10-05  Simon Josefsson  <jas@extundo.com>
36584
36585         * lib/memxor.c (memxor): Fix compiler error.
36586
36587         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
36588         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
36589
36590         * lib/memxor.h, lib/memxor.c: New files.
36591
36592         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
36593         we assume all systems have it, suggested by Jim Meyering
36594         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
36595         any systems lack sys/socket.h; mingw32 is known to lack it, but we
36596         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
36597         same reasons.
36598
36599 2005-10-05  Simon Josefsson  <jas@extundo.com>
36600
36601         * config/srclist.txt: Add glibc bug 1423 for md5.h.
36602
36603 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
36604
36605         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
36606         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
36607         needed, since the source code now assumes these .h files.
36608
36609 2005-10-05  Derek Price  <derek@ximbiot.com>
36610
36611         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
36612
36613 2005-10-05  Bruno Haible  <bruno@clisp.org>
36614
36615         * modules/stdint (License): Change to LGPL.
36616
36617 2005-10-04  Simon Josefsson  <jas@extundo.com>
36618
36619         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
36620         D. Baushke" <mdb@gnu.org>.
36621
36622 2005-10-04  Bruno Haible  <bruno@clisp.org>
36623
36624         * lib/verify.h (verify_true): Provide alternative definition for C++.
36625
36626 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
36627
36628         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
36629         (SSIZE_MAX): New macro, if not already defined.
36630         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
36631         than 2 GiB.
36632
36633 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36634
36635         Sync from coreutils.
36636         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
36637         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
36638         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
36639         ULLONG_MAX doesn't work with 2.7.2.1.
36640
36641 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36642
36643         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
36644         From Ben Pfaff.
36645
36646         * modules/exclude (Depends-on): Depend on verify.
36647         * modules/strtoimax (Depends-on): Likewise.
36648         * modules/utimecmp (Depends-on): Likewise.
36649
36650 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
36651
36652         * lib/exclude.c: Include verify.h.
36653         (verify): Remove.  All callers changed to use verify.h's version.
36654         * lib/strtoimax.c: Likewise.
36655         * lib/utimecmp.c: Likewis.e
36656
36657         Sync from coreutils.
36658         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
36659         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
36660         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
36661         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
36662         bother returning ENOSYS if settimeofday or stime fails; just let
36663         them return whatever errno they want to return.
36664         * lib/utimens.c: Include unistd.h, for dup2.
36665         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
36666         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
36667
36668 2005-10-02  Jim Meyering  <jim@meyering.net>
36669
36670         Sync from coreutils.
36671         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
36672         from glibc-2.2.5 that fails for read-only files.
36673
36674 2005-10-02  Jim Meyering  <jim@meyering.net>
36675
36676         Sync from coreutils.
36677         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
36678         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
36679         `#if HAVE_CONFIG_H'.
36680         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
36681         Remove AT_FDCWD test.
36682         Do not consume the fd unless successful.
36683         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
36684         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
36685         block, so that we don't even try to compile it if settimeofday is
36686         available.  This works around a compilation failure on OSF1 V5.1,
36687         due to stime requiring a `long int*' while tv_sec is `int'.
36688
36689 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
36690
36691         Sync from coreutils.
36692         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
36693         against `yes', rather than just testing for nonempty.
36694
36695 2005-10-01  Simon Josefsson  <jas@extundo.com>
36696
36697         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
36698         and Darwin.
36699
36700         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
36701         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
36702         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
36703         freeaddrinfo and gai_strerror are declared by the POSIX headers.
36704         Check if struct addrinfo is declared.
36705
36706 2005-10-01  Simon Josefsson  <jas@extundo.com>
36707
36708         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
36709         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
36710         AI_* and EAI_* definitions.  Protect function declarations.
36711
36712 2005-10-01  Jim Meyering  <jim@meyering.net>
36713
36714         Sync from coreutils.
36715
36716         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
36717         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
36718         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
36719         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
36720         in the inet and nsl libraries.  Required on Solaris 5.7.
36721
36722 2005-10-01  Jim Meyering  <jim@meyering.net>
36723
36724         Sync from coreutils.
36725         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
36726         in the inet and nsl libraries.  Required on Solaris 5.7.
36727
36728 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
36729
36730         * lib/getdelim.c (getdelim): Remove unused variables.
36731
36732 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
36733
36734         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
36735         so that the code works even with ancient cpp.  Portability problem
36736         with GCC 2.7.2.1 reported by Thomas M.Ott.
36737
36738 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
36739
36740         * modules/regex (Depends-on): Add strcase.
36741
36742         * modules/gethostname (Licence): Change from GPL to LGPL, since
36743         gethostname.c is a trivial implementation of a standard library
36744         function.
36745         * modules/poll (License): Change from GPL to LGPL, since it's
36746         derived from LGPL code.
36747
36748 2005-09-27  Jim Meyering  <jim@meyering.net>
36749
36750         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
36751         HAVE_CONFIG_H.
36752
36753         * lib/intprops.h (signed_type_or_expr__): Define.
36754         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
36755         for unsigned types.
36756
36757 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
36758
36759         * lib/verify.h (verify_expr): Remove, replacing with:
36760         (verify_true): New macro that returns true instead of void.
36761         (verify_type__): Remove.
36762         (verify): Use verify_true rather than verify_type__.
36763
36764 2005-09-26  Bruno Haible  <bruno@clisp.org>
36765
36766         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
36767         is necessary.
36768         (lib_SOURCES): Remove mbchar.c.
36769         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
36770         (Files): Add m4/mbrtowc.m4.
36771         * modules/mbiter: Likewise.
36772         * modules/mbuiter: Likewise.
36773
36774 2005-09-26  Bruno Haible  <bruno@clisp.org>
36775
36776         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
36777         compile mbchar.c if they are not both present.
36778         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
36779         * m4/mbiter.m4 (gl_MBITER): Likewise.
36780         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
36781         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
36782         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
36783
36784 2005-09-25  Jim Meyering  <jim@meyering.net>
36785
36786         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
36787         also uses socklen_t.
36788
36789 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
36790
36791         * lib/utimens.c (ENOSYS): Define if not already defined.
36792         (futimens): Support having a null PATH if the file descriptor
36793         is nonnegative.
36794
36795         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
36796         Remove.
36797         (__attribute): Define to empty unless GCC 3.1 or later.
36798         This works around a core dump on OpenBSD 3.4, which has GCC
36799         2.95.3, which dumps core when given __attribute__(()).  It also
36800         simplifies other tests, since we really don't want to bother with
36801         worrying about which ancient version of GCC supported what.
36802         Original problem reported by Yoann Vandoorselaere, with part of
36803         the fix suggested by Derek Price.
36804
36805 2005-09-24  Jim Meyering  <jim@meyering.net>
36806
36807         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
36808         so we can once again use a positive bitfield width of 1 -- now we
36809         don't have to explain why we were using a bitfield width of 2.
36810
36811 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
36812
36813         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
36814         and similarly for the other external symbols.  Problem reported
36815         by James Gallager.
36816
36817         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
36818         bug reported by Jim Meyering.
36819
36820         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
36821         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
36822         not needed, since socklen is a prerequisite module.
36823
36824 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
36825
36826         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
36827         Problem reported by Eric Blake.
36828         (getaddrinfo): Initialize se so that it's not garbage.
36829         Redo internal storage allocation so that it doesn't make unportable
36830         assumptions about alignment.
36831         Fix a memory leak.
36832
36833         * lib/utimens.c (futimens): Use futimesat if available.
36834         Prefer it to futimes since it doesn't have the futimes bug.
36835
36836         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
36837         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
36838         Instead, declare a function that returns a pointer to an array,
36839         and use verify_type__ to declare the size of the array.
36840         Problem and germ of a solution reported by Bruno Haible.
36841         (verify_type__): Use 2, not 1, for bitfield size, to avoid
36842         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
36843
36844 2005-09-23  Jim Meyering  <jim@meyering.net>
36845
36846         Sync from coreutils.
36847         Correct build failure (socklen_t not defined) on at least
36848         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
36849         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
36850
36851 2005-09-23  Jim Meyering  <jim@meyering.net>
36852
36853         * modules/getaddrinfo (Depends-on): Add socklen.
36854
36855 2005-09-23  Bruno Haible  <bruno@clisp.org>
36856
36857         * tests/test-verify.c: New file.
36858
36859 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
36860
36861         Sync from coreutils.
36862
36863         * modules/argmatch (Depends-on): Add verify.
36864         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
36865         unistd-safer.
36866         * modules/save-cwd (Depends-on): Likewise.
36867
36868         * modules/openat (Files): Add lib/openat-die.c.
36869         (Depends-on): Remove error, exitfail.
36870         Add dirname.
36871
36872         * modules/verify: New file.
36873         * MODULES.html.sh (Diagnostics <assert.h>): New section,
36874         with "verify" module.
36875
36876 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
36877
36878         Sync from coreutils.
36879
36880         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
36881         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
36882         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
36883         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
36884         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
36885         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
36886         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
36887         Don't bother checking for string.h, stdlib.h, unistd.h.
36888         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
36889         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
36890         module's job.
36891         * m4/jm-macros.m4 (gl_MACROS): Likewise.
36892         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
36893
36894         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
36895         (gl_GETDATE): Use it.
36896
36897         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
36898
36899 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
36900
36901         Sync from coreutils.
36902
36903         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
36904         stat-time.h.
36905         * lib/argmatch.h: Include verify.h
36906         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
36907         (ARGMATCH_ASSERT): Remove; unused.
36908         * lib/canonicalize.c: Assume STDC_HEADERS.
36909         * lib/exclude.c: Include "strcase.h".
36910         * lib/regex_internal.h [!defined _LIBC]: Likewise.
36911         * lib/getusershell.c: Include stdio--.h rather than stdio.h
36912         and stdio-safer.h.
36913         (getusershell): Call fopen, not fopen_safer.
36914         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
36915         Do not include unistd-safer.h.
36916         (save_cwd): Don't call fd_safer; no longer needed
36917         now that we include fcntl--.h.
36918
36919         * lib/getdate.y (relative_time): New type.
36920         (RELATIVE_TIME_0): New constant.
36921         (parser_control): Use relative_time instead of doing it ourselves.
36922         (%union): Add new relative_time rel member.
36923         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
36924         Now typeless.
36925         (relunit, relunit_snumber): Now of type rel.
36926         (zone, rel, relunit, get_date): Adjust to above changes.
36927
36928         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
36929         Do not include unistd-safer.h.
36930         (getloadavg): Don't call fd_safer; no longer needed
36931         now that we include fcntl--.h.
36932
36933         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
36934         (make_dir_parents): Treat ENOSYS like EEXIST.
36935
36936         Improve quality of diagnostics on restore_cwd failure.
36937         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
36938         (make_dir_parents): Last arg is now int * (for errno), not bool *.
36939         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
36940         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
36941         each time through the loop.  Do not diagnose restore_cwd failure;
36942         that is the caller's job (and perhaps the caller does not care).
36943
36944         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
36945         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
36946         If the file already exists but is not a directory, don't bother
36947         to try to make its parents.
36948         Close potential file descriptor leak if we can't chdir("/") (!).
36949         Don't always return true if chdir($PWD) fails; return true only
36950         if the requested action was done successfully (except for the
36951         chdir($PWD)).
36952         Don't log final directory unless we actually made it.
36953         Refactor to avoid duplicate code to fix up permissions.
36954         Don't attempt to fix up parent permissions if chdir($PWD) fails.
36955
36956         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
36957         to make it a bit faster and (I hope) clearer.
36958         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
36959         Fix bug in formats like %2N.
36960
36961         * lib/verify.h: New file.
36962
36963 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
36964
36965         Sync from coreutils.
36966         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
36967
36968 2005-09-22  Jim Meyering  <jim@meyering.net>
36969
36970         Sync from coreutils.
36971
36972         * m4/lstat.m4 (gl_FUNC_LSTAT):
36973         Use AC_LIBSOURCES to require lstat.c and lstat.h.
36974         Remove obsolete comment.
36975         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
36976         * m4/xstrtod.m4: Likewise.
36977
36978         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
36979
36980 2005-09-22  Jim Meyering  <jim@meyering.net>
36981
36982         Sync from coreutils.
36983
36984         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
36985
36986         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
36987         the .tm_year member, since otherwise gcc-4.0 would now warn about
36988         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
36989
36990         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
36991         order to avoid an unsuppressible warning from gcc on 64-bit systems.
36992
36993         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
36994         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
36995         when run in a time zone for which daylight savings time is in effect
36996         for the starting date.
36997
36998         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
36999         stop us from restricting permissions of just-created absolute-named
37000         directories.
37001         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
37002         to restore initial working directory.
37003         * lib/mkdir-p.c (make_dir_parents): New parameter:
37004         different_working_dir, to tell caller if/when we change the working
37005         directory and are unable to return to the initial one.
37006         * lib/mkdir-p.h (make_dir_parents): Update prototype.
37007         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
37008         `return false'.  This fixes a bug introduced on 2004-07-30.
37009
37010         * lib/openat.c (fdopendir): Be sure to close the supplied
37011         file descriptor before returning.  This makes our replacement
37012         implementation a little closer to Solaris's, where fdopendir
37013         ties the file descriptor to the returned DIR* pointer.
37014         * lib/openat.c (unlinkat): New function.
37015         * lib/openat.h (unlinkat): Add prototype.
37016         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
37017         (openat_restore_fail): Rename from openat_restore_die.
37018         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
37019
37020         Provide an alternative to exiting immediately upon save_cwd or
37021         restore_cwd failure.  Now, an application can arrange e.g.,
37022         to perform a longjump in that case.
37023         * lib/openat.c: Include dirname.h.
37024         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
37025         (rpl_openat, fdopendir, fstatat): Call openat_save_die
37026         and openat_restore_die rather than calling error directly.
37027         Don't include "error.h" or "exitfail.h"; they're no longer needed.
37028
37029         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
37030         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
37031         define.
37032
37033         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
37034         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
37035                             int utc, int nanoseconds);
37036         Background:
37037         date should not have to allocate a megabyte of virtual memory to
37038         handle a format argument like +%1048575T.  When implemented with
37039         strftime, it must allocate such a buffer, use strftime to fill it
37040         in, print it, then free it.
37041         With fprintftime, it simply prints everything and exits.
37042         With no need for memory allocation, that's one fewer way to fail.
37043         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
37044         optional field width, not before, so we accept %9:z, not %:9z.
37045         (my_strftime): Be sure to use L_('x') for literals.
37046
37047         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
37048         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
37049         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
37050         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
37051         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
37052         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
37053         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
37054         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
37055         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
37056         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
37057         * lib/xgethostname.c, lib/xreadlink.c:
37058         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
37059
37060         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
37061         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
37062         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
37063         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
37064         and don't include <sys/file.h>).
37065
37066 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
37067
37068         Sync from coreutils.
37069
37070         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
37071         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
37072         [!LDAV_DONE]: Avoid unused variable warning.
37073
37074 2005-09-21  Bruno Haible  <bruno@clisp.org>
37075
37076         * lib/unicodeio.h (unicode_to_mb): New declaration.
37077
37078 2005-09-20  Derek Price  <derek@ximbiot.com>
37079
37080         * lib/getaddrinfo.c: Don't include <netdb.h> included from
37081         getaddrinfo.h.
37082
37083 2005-09-20  Bruno Haible  <bruno@clisp.org>
37084
37085         * gnulib-tool: Remove trailing slashes from the values specified for
37086         --source-base, --m4-base, --tests-base, --aux-dir.
37087         Suggested by Simon Josefsson <jas@extundo.com>.
37088
37089 2005-09-20  Bruno Haible  <bruno@clisp.org>
37090
37091         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
37092         func_modules_to_filelist, func_import, func_create_testdir): Make all
37093         sorting results locale-independent, so that gnulib-cache.m4 doesn't
37094         change when gnulib-tool is invoked in a different locale.
37095
37096 2005-09-19  Simon Josefsson  <jas@extundo.com>
37097
37098         * m4/socklen.m4: Fix typo.
37099
37100 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37101
37102         Use a consistent style for including <config.h>.
37103         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
37104         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
37105         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
37106         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
37107         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
37108         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
37109         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
37110         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
37111         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
37112         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
37113         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
37114         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
37115         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
37116         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
37117         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
37118         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
37119         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
37120         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
37121         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
37122         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
37123         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
37124         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
37125         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
37126         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
37127         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
37128         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
37129         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
37130         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
37131         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
37132         lib/xstrtoumax.c, lib/yesno.c:
37133         Standardize inclusion of config.h.
37134         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
37135         lib/inttostr.h:  Removed inclusion of config.h from header files.
37136         * lib/inttostr.c:  Adjusted in-tree users.
37137         * lib/timespec.h: Remove superfluous warning to include config.h.
37138         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
37139         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
37140         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
37141         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
37142         config.h with HAVE_CONFIG_H.
37143
37144 2005-09-19  Jim Meyering  <jim@meyering.net>
37145
37146         * modules/pathmax (License): Change to LGPL.
37147
37148 2005-09-19  Derek Price  <derek@ximbiot.com>
37149
37150         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
37151
37152 2005-09-19  Bruno Haible  <bruno@clisp.org>
37153
37154         * gnulib-tool (import): Provide default for --tests-base.
37155
37156 2005-09-19  Bruno Haible  <bruno@clisp.org>
37157
37158         * doc/quote.texi: New file, extracted from gnulib.texi.
37159         * doc/ctime.texi: New file, extracted from gnulib.texi.
37160         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
37161         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
37162         * doc/gnulib.texi: Include them.
37163
37164 2005-09-18  Bruno Haible  <bruno@clisp.org>
37165
37166         Portability fix.
37167         * gnulib-tool (func_readlink): New function.
37168         (func_ln_if_changed): Use it.
37169
37170 2005-09-18  Bruno Haible  <bruno@clisp.org>
37171
37172         * gnulib-tool: Support --with-tests also with --import.
37173         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
37174         (func_import): Use variables $testsbase and $inctests. Emit a
37175         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
37176         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
37177         SUBDIRS += $testsdir.
37178         (func_create_testdir): Update.
37179
37180 2005-09-18  Bruno Haible  <bruno@clisp.org>
37181
37182         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
37183         instead of $dry_run.
37184         (func_cp_if_changed, func_mv_if_changed): Remove functions.
37185         (func_ln_if_changed): Don't handle dry-run here.
37186         (func_import): In dry-run mode, detect more precisely which actions
37187         would be performed, and don't use "...ing" verbs.
37188
37189 2005-09-18  Bruno Haible  <bruno@clisp.org>
37190
37191         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
37192         (func_import): Use join on two temporary files instead of three nested
37193         loops, in order to determine which files are new or old.
37194
37195 2005-09-18  Bruno Haible  <bruno@clisp.org>
37196
37197         * gnulib-tool (func_import): Comment out code that spits out the
37198         new files with --dry-run.
37199
37200 2005-09-18  Bruno Haible  <bruno@clisp.org>
37201
37202         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
37203
37204 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37205
37206         * lib/stat-time.h: New file.
37207         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
37208         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
37209         in a different way.
37210         (timespec_cmp): New function.
37211         * lib/utimecmp.c: Include stat-time.h.
37212         (SYSCALL_RESOLUTION): Depend on whether various struct stat
37213         members exist, not on the obsolescent ST_MTIM_NSEC.
37214         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
37215
37216 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37217
37218         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
37219
37220 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
37221
37222         * MODULES.html.sh (File system functions): Add stat-time.
37223         * modules/stat-time: New file.
37224         * modules/timespec (Files): Remove m4/st_mtim.m4; this
37225         is now done in a different way, by the stat-time module.
37226         * modules/utimecmp (Depends-on): Add stat-time.
37227
37228 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
37229
37230         * m4/st_mtim.m4: Remove.  Superseded by...
37231         * m4/stat-time.m4: New file.
37232         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
37233         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
37234
37235 2005-09-15  Derek Price  <derek@ximbiot.com>
37236
37237         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
37238
37239 2005-09-15  Derek Price  <derek@ximbiot.com>
37240
37241         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
37242         * lib/regex_internal.c: Ditto, using this...
37243         (__GNUC_PREREQ): ...new macro.
37244         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
37245         using...
37246         (__GNUC_PREREQ): ...this new macro.
37247
37248         * lib/strstr.h: Include string.h. Define strstr as a macro here.
37249
37250 2005-09-15  Derek Price  <derek@ximbiot.com>
37251             Paul Eggert  <eggert@cs.ucla.edu>
37252
37253         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
37254         changes, consolidating in...
37255         * lib/regex_internal.h: ...this file.
37256
37257 2005-09-13  Jim Meyering  <jim@meyering.net>
37258
37259         * lib/canon-host.c: Filter through gnu indent and reword comments
37260         slightly.
37261         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
37262
37263 2005-09-13  Derek Price  <derek@ximbiot.com>
37264
37265         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
37266         failure.
37267         Reported by Jim Meyering  <jim@meyering.net>.
37268
37269 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
37270
37271         * lib/base64.c: Typo.
37272         (base64_encode): Put b64str in initialized data section.
37273
37274 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
37275
37276         Merge glibc and coreutils changes into gnulib, plus a few
37277         extra fixes.
37278         * lib/md5.c: Use #error rather than a string.
37279         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
37280         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
37281         (__attribute__): Define to empty for non recent-GCC.
37282         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
37283         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
37284         Renamed from their non-__ counterparts, with new macros replacing
37285         them if not _LIBC.  Add __THROW attribute.
37286         (rol): Remove.
37287         (struct md5_ctx): Align buffer if using GCC.
37288         * lib/sha1.h (struct sha1_ctx): Likewise.
37289         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
37290         The old name was backwards.
37291         (NOTSWAP): Remove; not used.
37292         (rol): New macro, moved here from md5.h.
37293         (sha1_process_block): Remove a FIXME that doesn't make sense.
37294
37295 2005-09-12  Derek Price  <derek@ximbiot.com>
37296
37297         Return usable errors from canon-host.
37298         * lib/canon-host.h: New file.
37299         * lib/canon-host.c (canon_host): Wrap...
37300         (canon_host_r): ...this new function, which now relies exclusively on
37301         getaddrinfo.
37302         (ch_strerror): New function.
37303         (last_cherror): New global.
37304         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
37305         interface.
37306         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
37307         void *.
37308         (freeaddrinfo): Free ai->ai_canonname when set.
37309
37310 2005-09-12  Derek Price  <derek@ximbiot.com>
37311
37312         Make canon-host require getaddrinfo.
37313         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
37314         AC_LIBSOURCE canon-host.h.  Call...
37315         (gl_PREREQ_CANON_HOST): ...this new function, which requires
37316         gl_GETADDRINFO.
37317         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
37318
37319 2005-09-12  Derek Price  <derek@ximbiot.com>
37320
37321         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
37322         LGPL.
37323         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
37324
37325 2005-09-12  Derek Price  <derek@ximbiot.com>
37326
37327         * lib/gai_strerror.c: Include config.h when available.  Include
37328         getaddrinfo.h before other headers to test interface.
37329         Reported by Larry Jones <lawrence.jones@ugs.com>.
37330
37331 2005-09-12  Derek Price  <derek@ximbiot.com>
37332             Paul Eggert  <eggert@cs.ucla.edu>
37333
37334         * modules/glob (Files): Add glob-libc.h.
37335
37336 2005-09-12  Derek Price  <derek@ximbiot.com>
37337             Paul Eggert  <eggert@cs.ucla.edu>
37338
37339         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
37340         glob_.h, glob-libc.h.
37341         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
37342
37343 2005-09-12  Derek Price  <derek@ximbiot.com>
37344             Paul Eggert  <eggert@cs.ucla.edu>
37345
37346         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
37347         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
37348         protecting things that should be done only in gnulib contexts.
37349         * lib/glob_.h: New file, containing only the glob things needed for
37350         gnulib.
37351         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
37352         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
37353         (glob, globfree, glob_pattern_p): Now defined simply in terms of
37354         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
37355         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
37356         and to respect the namespace rules better.
37357
37358 2005-09-08  Simon Josefsson  <jas@extundo.com>
37359
37360         * modules/socklen: New file.
37361
37362 2005-09-08  Simon Josefsson  <jas@extundo.com>
37363
37364         * m4/socklen.m4: New file.
37365
37366 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37367
37368         * modules/utimens (Files): Add m4/utimbuf.m4, since
37369         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
37370         Reported by Sergey Poznyakoff.
37371
37372 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37373
37374         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
37375         definitions, since that's the preferred style in glibc.
37376         Fix a minor spacing issue, and update copyright notice to match
37377         glibc's.
37378
37379 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
37380
37381         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
37382
37383 2005-09-06  Simon Josefsson  <jas@extundo.com>
37384
37385         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
37386         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
37387
37388 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
37389
37390         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
37391         warning.
37392
37393 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
37394
37395         * config/srclist.txt: Add glibc bug 1302.
37396
37397 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
37398
37399         Change bitset word type from unsigned int to unsigned long int,
37400         as this has better performance on typical 64-bit hosts.
37401         Port bitset code to hosts with unusual word sizes.
37402         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
37403         (build_collating_symbol):
37404         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
37405         argument is a bitset.  This is merely a style issue, but it makes
37406         it clearer that an entire array is expected.
37407         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
37408         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
37409         Port to the case where bitset_word is not the same as unsigned int.
37410         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
37411         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
37412         Likewise.
37413         * lib/regexec.c (check_dst_limits_calc_pos_1,
37414         check_subexp_matching_top):
37415         (build_trtable, group_nodes_into_DFAstates):
37416         Likewise.
37417         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
37418         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
37419         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
37420         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
37421         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
37422         * lib/regcomp.c (optimize_subexps, lower_subexp):
37423         Work even if bitset_word has holes in its bitwise representation.
37424         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
37425         * lib/regexec.c (check_dst_limits_calc_pos_1,
37426         check_subexp_matching_top):
37427         Likewise.
37428         * lib/regex_internal.c (re_string_reconstruct):
37429         Don't assume UCHAR_MAX == 255.
37430         * lib/regex_internal.h (bitset_set_all): Likewise.
37431         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
37432         All uses changed.
37433         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
37434         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
37435         All uses changed.
37436         (BITSET_WORD_MAX): New macro.
37437         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
37438         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
37439         (bitset_empty, bitset_copy):
37440         Prefer sizeof (bitset) to multiplying it out ourselves.
37441         (bitset_not_merge): Remove; unused.
37442         (bitset_contain): Return bool, not unsigned int with one bit on.
37443         All callers changed.
37444         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
37445         alignment than re_node_set; do this by defining a new internal
37446         type struct dests_alloc and using it to allocate memory.
37447
37448 2005-09-05  Bruno Haible  <bruno@clisp.org>
37449
37450         * gnulib-tool (func_import): Fix comparison in handling of symbolic
37451         links.
37452
37453 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
37454
37455         * modules/size_max (Makefile.am): Add size_max.h
37456
37457 2005-09-04  Derek Price  <derek@ximbiot.com>
37458
37459         * gnulib-tool (func_import): Fix reversed $symbolic logic.
37460
37461 2005-09-03  Simon Josefsson  <jas@extundo.com>
37462
37463         * gnulib-tool: Fix typo.
37464
37465 2005-09-03  Simon Josefsson  <jas@extundo.com>
37466
37467         * config/srclist.txt: Add glibc bug 1293.
37468
37469 2005-09-03  Derek Price  <derek@ximbiot.com>
37470
37471         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
37472         From Larry Jones <lawrence.jones@ugs.com>.
37473
37474 2005-09-02  Simon Josefsson  <jas@extundo.com>
37475
37476         * modules/socklen: New file.
37477
37478 2005-09-02  Simon Josefsson  <jas@extundo.com>
37479
37480         * modules/havelib: New module.
37481
37482         * modules/gettext, modules/iconv, modules/lock, modules/readline:
37483         Use havelib.
37484
37485 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
37486
37487         Check for arithmetic overflow when calculating sizes, to prevent
37488         some buffer-overflow issues.  These patches are conservative, in the
37489         sense that when I couldn't determine whether an overflow was possible,
37490         I inserted a run-time check.
37491         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
37492         macros.
37493         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
37494         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
37495         (re_xnrealloc, re_x2nrealloc): New inline functions.
37496         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
37497         parse_bracket_exp):
37498         (build_equiv_class, build_charclass): Check for arithmetic overflow
37499         in size expression calculations.
37500         * lib/regex_internal.c (re_string_realloc_buffers):
37501         (build_wcs_upper_buffer, re_node_set_add_intersect):
37502         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
37503         (re_dfa_add_node, register_state): Likewise.
37504         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
37505         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
37506         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
37507         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
37508
37509 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
37510
37511         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
37512         m4/ulonglong.m4.  Problem reported by Martin Lambers.
37513
37514 2005-09-02  Bruno Haible  <bruno@clisp.org>
37515
37516         Support for lib vs. lib64 distinction on biarch platforms.
37517         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
37518         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
37519         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
37520
37521 2005-09-02  Bruno Haible  <bruno@clisp.org>
37522
37523         * gnulib-tool (import): In the other first-use case, provide defaults
37524         as well.
37525
37526 2005-09-02  Bruno Haible  <bruno@clisp.org>
37527
37528         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
37529         patches not yet found in the latest gettext release.
37530
37531 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37532
37533         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
37534         to avoid a collision with bits/local_lim.h in glibc.
37535         All uses changed.  Problem reported by Dmitry V. Levin in
37536         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
37537
37538         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
37539         bugs in int versus size_t comparisons.
37540         (re_string_context_at): Fix bug where the code assumed that
37541         Idx is signed.
37542
37543         Use bool where appropriate.
37544         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
37545         All callers changed.
37546         (calc_eclosure_iter): Likewise, for ROOT arg.
37547         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
37548         (build_charclass_op): Likewise, for NON_MATCH arg.
37549         * lib/regex_internal.c (re_string_allocate, re_string_construct):
37550         (re_string_construct_common): Likewise, for ICASE arg.
37551         * lib/regexec.c (re_search_2_stub, re_search_stub):
37552         Likewise, for RET_LEN arg.
37553         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
37554         (set_regs): Likewise, for FL_BACKTRACK arg.
37555         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
37556         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
37557         (calc_eclosure_iter, parse_bracket_exp):
37558         Use bool for internal variables that are booleans.
37559         * lib/regexec.c (re_search_internal, check_matching,
37560         proceed_next_node):
37561         (set_regs, build_sifted_states, sift_states_bkref):
37562         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
37563         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
37564         (find_collation_sequence_value):
37565         Likewise.
37566         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
37567         (re_node_set_compare):
37568         Return bool, not int. All callers changed.
37569         * lib/regexec.c (check_halt_node_context, check_dst_limits):
37570         (build_trtable, check_node_accept): Likewise.
37571         * lib/regex_internal.h: Include stdbool.h.
37572
37573         Fix bugs uncovered when converting to bool.
37574         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
37575         failure instead of charging ahead blindly.
37576         * lib/regex_internal.c (register_state): Likewise.
37577         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
37578         for freeing internal storage.
37579         (group_nodes_into_DFA_states): Use unsigned int, not int, for
37580         bitset pieces used as boolean, to avoid undefined behavior
37581         on hosts that do int overflow checking.
37582
37583 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
37584
37585         * config/srclist.txt: Add glibc bugs 1285-1287.
37586
37587 2005-09-01  Jim Meyering  <jim@meyering.net>
37588
37589         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
37590         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
37591         Require gl_STAT_MACROS, too.
37592
37593 2005-09-01  Bruno Haible  <bruno@clisp.org>
37594
37595         * gnulib-tool (import): In the first-use case, provide defaults.
37596
37597 2005-09-01  Bruno Haible  <bruno@clisp.org>
37598
37599         * gnulib-tool (func_import): Remove the .tmp files.
37600
37601 2005-09-01  Bruno Haible  <bruno@clisp.org>
37602
37603         * gnulib-tool (func_import): Fix handling of symbolic links.
37604
37605 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37606
37607         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
37608         old glibc regex code mishandles strings longer than 2**31 bytes.
37609         This patch fixes this when the regex code is used in gnulib
37610         (i.e., outside glibc).
37611
37612         This patch should not affect the use of the regex code inside
37613         glibc.  No doubt this problem also needs to be handled for glibc
37614         as well, but the result will be an incompatible change to the
37615         glibc ABI, and the old ABI will have to be supported too.  That
37616         can be the the subject for another patch.
37617
37618         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
37619         governing whether the rest of this patch is active.  By default,
37620         the macro is disabled and the patch has no effect.
37621         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
37622         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
37623         (struct re_pattern_buffer, re_search, re_search_2, re_match):
37624         (re_match_2, re_set_registers): Use the new types.
37625         * lib/regex_internal.h (Idx, re_hashval_t): New types.
37626         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
37627         New macros.
37628         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
37629         (re_string_context_at, bin_tree_t, re_dfastate_t):
37630         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
37631         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
37632         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
37633         (re_string_char_size_at, re_string_wchar_at):
37634         (re_string_elem_size_at):
37635         Use the new types and macros to port to 64-bit hosts.
37636         Use unsigned types for internal values, so that the code
37637         mostly works even for arrays larger than SSIZE_MAX.
37638         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
37639         (search_duplicated_node, calc_eclosure_iter, fetch_number):
37640         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
37641         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
37642         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
37643         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
37644         (calc_inveclosure, parse_dup_op, build_range_exp):
37645         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
37646         (fetch_number, create_token_tree, mark_opt_subexp):
37647         Likewise.
37648         * lib/regex_internal.c (re_string_construct_common,
37649         create_ci_newstate):
37650         (create_cd_newstate, re_string_allocate, re_string_construct):
37651         (re_string_realloc_buffers, build_wcs_upper_buffer):
37652         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
37653         (re_string_reconstruct, re_string_peek_byte_case):
37654         (re_string_fetch_byte_case, re_string_context_at):
37655         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
37656         (re_node_set_init_copy, re_node_set_add_intersect):
37657         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
37658         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
37659         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
37660         (re_acquire_state, re_acquire_state_context, register_state):
37661         Likewise.
37662         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
37663         search_cur_bkref_entry):
37664         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
37665         (re_search_internal, re_search_2_stub, re_search_stub)
37666         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
37667         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
37668         (update_cur_sifted_state, check_dst_limits):
37669         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
37670         (check_subexp_limits, sift_states_bkref, merge_state_array):
37671         (check_subexp_matching_top, get_subexp, get_subexp_sub):
37672         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
37673         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
37674         (expand_bkref_cache, check_node_accept_bytes):
37675         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
37676         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
37677         (acquire_init_state_context, check_halt_node_context):
37678         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
37679         (sift_states_backward, clean_state_log_if_needed):
37680         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
37681         (find_recover_state, transit_state_sb, transit_state_mb):
37682         (transit_state_bkref, build_trtable, match_ctx_clean):
37683         Likewise.
37684         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
37685         to work around an assumption that REG_MISSING is negative.
37686
37687         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
37688         (seek_collating_symbol_entry) [defined _LIBC]:
37689         (lookup_collation_sequence_value) [defined _LIBC]:
37690         (build_range_exp, build_collating_symbol) [defined _LIBC]:
37691         Use prototypes rather than old-style function definitions.
37692         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
37693         (transit_state_sb) [0]:
37694         (find_collation_sequence_value) [defined _LIBC]: Likewise.
37695
37696         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
37697         rm_eo.
37698
37699         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
37700         (optimize_subexps, lower_subexp):
37701         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
37702         since the signed shift might overflow.  Use 1u<<31 instead.
37703         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
37704         Likewise.
37705         * lib/regexec.c (check_dst_limits_calc_pos_1,
37706         check_subexp_matching_top): Likewise.
37707
37708         * lib/regcomp.c (optimize_subexps, lower_subexp):
37709         Use CHAR_BIT rather than 8, for clarity.
37710         * lib/regexec.c (check_dst_limits_calc_pos_1):
37711         (check_subexp_matching_top): Likewise.
37712         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
37713         have to worry about portability issues when shifting it left.
37714         Remove no-longer-needed test for table_size > 0.
37715         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
37716         in a word, as the resulting behavior is undefined.
37717         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
37718         in one case, a <= should have been an <, and in another case the
37719         whole test was missing.
37720         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
37721         the standard name CHAR_BIT.
37722         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
37723         this is not true on one's complement and signed-magnitude hosts.
37724
37725         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
37726         next_last_offset.
37727         (struct re_dfa_t): Remove unused member states_alloc.
37728         * lib/regcomp.c (init_dfa): Don't initialize unused members.
37729
37730 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37731
37732         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
37733         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
37734         and large-file glibc and in 32-bit large-file Solaris.
37735
37736 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37737
37738         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
37739         lengths fit in regoff_t; this isn't true if regoff_t is the same
37740         width as size_t.
37741         * lib/regex.c (re_search_internal): 5th arg is LAST_START
37742         (= START + RANGE) instead of RANGE.  This avoids overflow
37743         problems when regoff_t is the same width as size_t.
37744         All callers changed.
37745         (re_search_2_stub): Check for overflow when adding the
37746         sizes of the two strings.
37747         (re_search_stub): Check for overflow when adding START
37748         to RANGE; if it occurs, substitute the extreme value.
37749
37750 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
37751
37752         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
37753
37754 2005-08-31  Jim Meyering  <jim@meyering.net>
37755
37756         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
37757         a pointer-to-const.
37758         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
37759         (register_state): Likewise.
37760         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
37761         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
37762         (group_nodes_into_DFAstates): Likewise.
37763
37764 2005-08-31  Jim Meyering  <jim@meyering.net>
37765
37766         * check-module: Add a FIXME comment.
37767
37768 2005-08-31  Eric Blake  <ebb9@byu.net>
37769
37770         * modules/unistd-safer (Files): Add unistd--.h.
37771         * modules/stdio-safer (Files): Add stdio--.h.
37772
37773 2005-08-31  Derek Price  <derek@ximbiot.com>
37774
37775         * lib/getdelim.c (getdelim): Return EOF on EOF.
37776         Reported by Larry Jones <lawrence.jones@ugs.com>.
37777
37778 2005-08-31  Bruno Haible  <bruno@clisp.org>
37779
37780         Avoid unnecessary diffs in the generated lib/Makefile.am.
37781         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
37782         the generated files.
37783         (func_import): Don't set cmd.
37784
37785 2005-08-31  Bruno Haible  <bruno@clisp.org>
37786
37787         * lib/strstr.c: Include <stddef.h>, for NULL.
37788         * lib/strcasestr.c: Likewise.
37789         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
37790
37791 2005-08-31  Bruno Haible  <bruno@clisp.org>
37792
37793         * gnulib-tool: New option --macro-prefix.
37794         (func_import): Use macro_prefix.
37795         (import): Handle option --macro-prefix.
37796
37797 2005-08-31  Bruno Haible  <bruno@clisp.org>
37798
37799         * gnulib-tool (import): Rename most ac_* variables to cached_*.
37800         Also use new variables cached_lgpl, cached_libtool.
37801
37802 2005-08-31  Bruno Haible  <bruno@clisp.org>
37803
37804         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
37805         always instantiating them.
37806
37807 2005-08-31  Bruno Haible  <bruno@clisp.org>
37808
37809         * gnulib-tool (func_import): Read the previous cached settings
37810         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
37811         earlier added by gnulib but are now dropped. Warn when a gnulib file
37812         overwrites a non-gnulib file.
37813
37814 2005-08-31  Bruno Haible  <bruno@clisp.org>
37815
37816         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
37817         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
37818         projects that don't keep autogenerated files in CVS. Put into
37819         actioncmd only the specified modules, not the transitive closure.
37820
37821 2005-08-31  Bruno Haible  <bruno@clisp.org>
37822
37823         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
37824         Create directories that shall be filled.
37825         (import): Don't look for gl_* macros in configure.ac. Recurse across
37826         all directories containing a gnulib-cache.m4 files, if meaningful.
37827
37828 2005-08-31  Bruno Haible  <bruno@clisp.org>
37829
37830         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
37831         (import): Set seen_libtool when we see gl_LIBTOOL.
37832
37833 2005-08-31  Bruno Haible  <bruno@clisp.org>
37834
37835         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
37836         declaration macro definitions from generated gnulib.m4.
37837
37838 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
37839
37840         * lib/iconvme.h: Add prototype for iconv_alloc.
37841
37842 2005-08-29  Simon Josefsson  <jas@extundo.com>
37843
37844         * lib/iconvme.c: Fix errno.
37845
37846 2005-08-29  Bruno Haible  <bruno@clisp.org>
37847
37848         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
37849         that it works when the directory contains spaces.
37850
37851 2005-08-29  Bruno Haible  <bruno@clisp.org>
37852
37853         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
37854
37855 2005-08-29  Bruno Haible  <bruno@clisp.org>
37856
37857         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
37858         Emit more advice.
37859
37860 2005-08-29  Bruno Haible  <bruno@clisp.org>
37861         and Stepan Kasal  <kasal@ucw.cz>
37862
37863         * check-module: If more parameters are given, check each of them
37864         separately; add more exceptions, as noted by Jim Meyering.
37865         (check_module): New procedure.
37866         (%exempt_header): Now contains all exceptions.
37867
37868 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
37869
37870         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
37871
37872 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
37873
37874         * lib/iconvme.c: Split iconv_string into iconv_alloc.
37875
37876 2005-08-28  Bruno Haible  <bruno@clisp.org>
37877
37878         * m4/gnulib-tool.m4: New file.
37879
37880 2005-08-27  Jim Meyering  <jim@meyering.net>
37881
37882         * modules/unistd-safer (Files): Add pipe-safer.c.
37883         * modules/fcntl-safer (Files): Add creat-safer.c.
37884
37885 2005-08-27  Jim Meyering  <jim@meyering.net>
37886
37887         * m4/stdlib-safer.m4: New file.  From coreutils.
37888         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
37889         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
37890         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
37891         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
37892         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
37893
37894 2005-08-27  Jim Meyering  <jim@meyering.net>
37895
37896         * lib/fopen-safer.c: Merge minor changes from coreutils.
37897         * lib/dup-safer.c: Likewise.
37898         * lib/fd-safer.c: Likewise.
37899
37900         Merge from coreutils.
37901         * lib/stdio--.h: New file.
37902         * lib/stdlib--.h: New file.
37903         * lib/mkstemp-safer.c: New file.
37904
37905         GNU tar needs these.
37906         * lib/pipe-safer.c: New file.
37907         * lib/creat-safer.c: New file.
37908         * lib/fcntl--.h (creat): Define to creat_safer.
37909         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
37910         * lib/unistd--.h (pipe): Define to pipe_safer.
37911         * lib/unistd-safer.h: Declare pipe_safer.
37912
37913 2005-08-26  Simon Josefsson  <jas@extundo.com>
37914
37915         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
37916         Haible <bruno@clisp.org>.
37917
37918 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
37919
37920         * lib/regex_internal.h: Remove all references to
37921         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
37922         or better.
37923         (bitset_not, bitset_merge, bitset_not_merge):
37924         (bitset_mask, re_string_allocate, re_string_construct):
37925         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
37926         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
37927         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
37928         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
37929         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
37930         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
37931         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
37932         (re_acquire_state_context):
37933         Remove unnecessary forward decls.
37934         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
37935         Put __attribute at function definition,
37936         now that the function decl has been removed.
37937         * lib/regex_internal.c (re_string_peek_byte_case):
37938         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
37939         Likewise.
37940
37941 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
37942
37943         * m4/regex.m4: Add AC_PREREQ(2.50).
37944         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
37945
37946 2005-08-25  Simon Josefsson  <jas@extundo.com>
37947
37948         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
37949         __fsetlocking.
37950
37951 2005-08-25  Simon Josefsson  <jas@extundo.com>
37952
37953         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
37954         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
37955         GLIBC specific code.
37956
37957 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37958
37959         Make regex safe for g++.  This fixes one real bug (an "err"
37960         that should have been "*err").  g++ problem reported by
37961         Sam Steingold.
37962         * lib/regex_internal.h (re_calloc): New macro, consistent with
37963         re_malloc etc.  All callers of calloc changed to use re_calloc.
37964         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
37965         not int.  All callers changed.
37966         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
37967         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
37968         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
37969         (find_recover_state): Change "err" to "*err"; this fixes what
37970         appears to be a real bug.
37971         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
37972         versus int.
37973
37974 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37975
37976         * modules/regex (Depends-on): Add malloc, since the code
37977         assumes that !malloc(0) means failure.
37978
37979 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37980
37981         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
37982
37983         alloca modernization/simplification for regex.
37984         * lib/regex.c: Remove portability cruft for alloca.  This no longer
37985         needs to be at the start of the file, and can be moved into
37986         regex_internal.h and simplified.
37987         * lib/regex_internal.h: Include <alloca.h>.
37988         (__libc_use_alloca) [!defined _LIBC]: New macro.
37989         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
37990         now works outside glibc.
37991
37992 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
37993
37994         * config/srclist.txt: Add glibc bugs 1241, 1245.
37995
37996 2005-08-25  Jim Meyering  <jim@meyering.net>
37997
37998         * lib/open-safer.c: Include <config.h>.
37999         Otherwise, we'd lose LARGEFILE support in any file using
38000         e.g. "fcntl--.h"
38001
38002 2005-08-25  Bruno Haible  <bruno@clisp.org>
38003
38004         * m4/minmax.m4: Require autoconf 2.52.
38005         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
38006         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
38007         alternatives of translit over the alphabet.
38008         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
38009
38010 2005-08-24  Simon Josefsson  <jas@extundo.com>
38011
38012         * tests/test-getpass.c: New file.
38013
38014 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38015
38016         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
38017         for GNU regex features.
38018
38019 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38020
38021         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
38022         * lib/regex.h (regerror): Likewise.
38023
38024         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
38025         requires this.  (The code never needed it.)
38026
38027         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
38028         All uses of recently-renamed identifiers changed to use the new,
38029         POSIX-compliant names.  The code will build and run just fine
38030         without these changes, but it's better to eat our own dog food
38031         and use the standard-conforming names.
38032
38033         * lib/regex.h: Fix a multitude of POSIX name space violations.
38034         These changes have an effect only for programs that define
38035         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
38036         do not change anything for programs compiled in the normal way.
38037         Also, there is no effect on the ABI.
38038
38039         (_REGEX_SOURCE): New macro.
38040         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
38041         defined and _GNU_SOURCE is not; this fixes a name space violation.
38042
38043         Rename the following macros to obey POSIX requirements.
38044         The old names are still visible as macros if _REGEX_SOURCE is defined.
38045         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
38046         RE_BACKSLASH_ESCAPE_IN_LISTS.
38047         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
38048         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
38049         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
38050         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
38051         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
38052         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
38053         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
38054         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
38055         (REG_INTERVALS): renamed from RE_INTERVALS.
38056         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
38057         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
38058         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
38059         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
38060         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
38061         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
38062         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
38063         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
38064         RE_UNMATCHED_RIGHT_PAREN_ORD.
38065         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
38066         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
38067         (REG_DEBUG): renamed from RE_DEBUG.
38068         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
38069         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
38070         unusual, since we can't clash with the POSIX REG_ICASE.
38071         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
38072         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
38073         (REG_NO_SUB): renamed from RE_NO_SUB.
38074         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
38075         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
38076         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
38077         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
38078         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
38079         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
38080         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
38081         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
38082         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
38083         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
38084         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
38085         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
38086         RE_SYNTAX_POSIX_MINIMAL_BASIC.
38087         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
38088         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
38089         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
38090         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
38091         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
38092         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
38093         (REG_FIXED): Renamed from REGS_FIXED.
38094         (REG_NREGS): Renamed from RE_NREGS.
38095
38096         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
38097         of other REG_* macros, since POSIX says the user is allowed to
38098         #undef these macros selectively.
38099
38100         (reg_errcode_t): Update comment stating what other tables need
38101         to be consistent.
38102
38103         Rename the following enum values to obey POSIX requirements.
38104         The old names are still visible as macros.
38105         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
38106         is not defined, since GNU is supposed to be a superset of POSIX as
38107         much as possible, and since we want reg_errcode_t to be a signed
38108         type for implementation consistency.
38109         (_REG_NOERROR): Renamed from REG_NOERROR.
38110         (_REG_NOMATCH): Renamed from REG_NOMATCH.
38111         (_REG_BADPAT): Renamed from REG_BADPAT.
38112         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
38113         (_REG_ECTYPE): Renamed from REG_ECTYPE.
38114         (_REG_EESCAPE): Renamed from REG_EESCAPE.
38115         (_REG_ESUBREG): Renamed from REG_ESUBREG.
38116         (_REG_EBRACK): Renamed from REG_EBRACK.
38117         (_REG_EPAREN): Renamed from REG_EPAREN.
38118         (_REG_EBRACE): Renamed from REG_EBRACE.
38119         (_REG_BADBR): Renamed from REG_BADBR.
38120         (_REG_ERANGE): Renamed from REG_ERANGE.
38121         (_REG_ESPACE): Renamed from REG_ESPACE.
38122         (_REG_BADRPT): Renamed from REG_BADRPT.
38123         (_REG_EEND): Renamed from REG_EEND.
38124         (_REG_ESIZE): Renamed from REG_ESIZE.
38125         (_REG_ERPAREN): Renamed from REG_ERPAREN.
38126         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
38127         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
38128         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
38129         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
38130
38131         (_REG_RE_NAME, _REG_RM_NAME): New macros.
38132         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
38133         changed.  But support the old name if the new one is not defined
38134         and if _REGEX_SOURCE.
38135
38136         Change the following member names in struct re_pattern_buffer.
38137         The old names are still supported if !_REGEX_SOURCE.
38138         The new names are always supported, regardless of _REGEX_SOURCE.
38139         (re_buffer): Renamed from buffer.
38140         (re_allocated): Renamed from allocated.
38141         (re_used): Renamed from used.
38142         (re_syntax): Renamed from syntax.
38143         (re_fastmap): Renamed from fastmap.
38144         (re_translate): Renamed from translate.
38145         (re_can_be_null): Renamed from can_be_null.
38146         (re_regs_allocated): Renamed from regs_allocated.
38147         (re_fastmap_accurate): Renamed from fastmap_accurate.
38148         (re_no_sub): Renamed from no_sub.
38149         (re_not_bol): Renamed from not_bol.
38150         (re_not_eol): Renamed from not_eol.
38151         (re_newline_anchor): Renamed from newline_anchor.
38152
38153         Change the following member names in struct re_registers.
38154         The old names are still supported if !_REGEX_SOURCE.
38155         The new names are always supported, regardless of _REGEX_SOURCE.
38156         (rm_num_regs): Renamed from num_regs.
38157         (rm_start): Renamed from start.
38158         (rm_end): Renamed from end.
38159
38160         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
38161         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
38162         Prepend __ to parameter names.
38163
38164         Undo yesterday's changes.
38165
38166 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
38167
38168         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
38169         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
38170         lib/regex.c.
38171
38172 2005-08-24  Jim Meyering  <jim@meyering.net>
38173
38174         Sync from coreutils.
38175         * m4/fcntl-safer.m4: New file.
38176
38177         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
38178         and object files for this module.
38179
38180 2005-08-24  Jim Meyering  <jim@meyering.net>
38181
38182         Sync from coreutils.
38183         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
38184
38185 2005-08-24  Jim Meyering  <jim@meyering.net>
38186
38187         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
38188         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
38189
38190 2005-08-24  Jim Meyering  <jim@meyering.net>
38191
38192         * modules/fcntl-safer: New module.
38193         * modules/fts (Depends-on): Add fcntl-safer.
38194         * MODULES.html.sh (File descriptor based Input/Output):
38195         Add fcntl-safer.
38196
38197 2005-08-24  Bruno Haible  <bruno@clisp.org>
38198
38199         Support for unit test modules.
38200         * modules/README: Mention tests modules.
38201         * modules/TEMPLATE-TESTS: New file.
38202         * gnulib-tool: New options --extract-tests-module, --with-tests and
38203         --tests-base (unused for the moment).
38204         (testsbase, inctests): New variables.
38205         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
38206         (func_verify_module): Exclude TEMPLATE-TESTS.
38207         (func_verify_nontests_module, func_verify_tests_module): New functions.
38208         (func_get_dependencies): Add implicit dependency for tests modules.
38209         (func_get_tests_module): New function.
38210         (func_modules_transitive_closure): When --with-tests was specified,
38211         include the unit tests as well, unless explicitly avoided.
38212         (func_emit_lib_Makefile_am): Ignore the tests modules here.
38213         (func_emit_tests_Makefile_am): New function.
38214         (func_create_testdir): When --with-tests was specified, emit a
38215         tests/ directory.
38216         * MODULES.html.sh (Future developments): Update.
38217
38218 2005-08-24  Bruno Haible  <bruno@clisp.org>
38219
38220         * modules/tls-tests: New file.
38221         * tests/test-tls.c: New file, from GNU gettext.
38222
38223 2005-08-24  Bruno Haible  <bruno@clisp.org>
38224
38225         * modules/lock-tests: New file.
38226         * tests/test-lock.c: New file, from GNU gettext.
38227
38228 2005-08-24  Bruno Haible  <bruno@clisp.org>
38229
38230         * lib/lock.h: Add multiple inclusion guard.
38231         * lib/tls.h: Add multiple inclusion guard.
38232
38233 2005-08-24  Bruno Haible  <bruno@clisp.org>
38234
38235         * gnulib-tool: Add support for the --aux-dir option to
38236         --create-testdir, --create-megatestdir, --test, --megatest.
38237         (func_create_testdir, func_create_megatestdir): Optionally emit a
38238         AC_CONFIG_AUX_DIR directive.
38239         (create-testdir, create-megatestdir, test, megatest): Provide a
38240         default value for $auxdir.
38241
38242 2005-08-24  Bruno Haible  <bruno@clisp.org>
38243
38244         * gnulib-tool (import): Use compound statement instead of subshell
38245         where possible.
38246
38247 2005-08-24  Bruno Haible  <bruno@clisp.org>
38248
38249         * gnulib-tool (import): Change --aux-dir default to "build-aux".
38250
38251 2005-08-24  Bruno Haible  <bruno@clisp.org>
38252
38253         * gnulib-tool (func_version): Update.
38254
38255 2005-08-24  Bruno Haible  <bruno@clisp.org>
38256
38257         * gnulib-tool (func_import, func_create_testdir,
38258         func_create_megatestdir): Quote all autoconf macro arguments.
38259
38260 2005-08-24  Bruno Haible  <bruno@clisp.org>
38261
38262         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
38263         option --force, because --force causes the aclocal.m4 of each
38264         subdirectory to be newer than the corresponding config.h.in.
38265
38266 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38267
38268         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
38269         All contents moved to gl_REGEX.
38270         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
38271         assume that it does.
38272
38273 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38274
38275         * lib/regex.h (REG_NOSYS)
38276         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
38277         Define, since POSIX requires it as of 2001.
38278         (_REG_ENOSYS)
38279         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
38280         New private symbol, used to keep the enum signed in all cases.
38281         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
38282         Youngman in
38283         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
38284
38285         * lib/regex_internal.c (re_string_skip_chars, register_state):
38286         (calc_state_hash):
38287         Remove forward decls; no longer needed now that we use prototypes.
38288         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
38289         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
38290         (clean_state_log_if_needed): Likewise.
38291
38292 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
38293
38294         * config/srclist.txt: Add glibc bugs 1231-1233.
38295
38296 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38297
38298         Fix problems reported by Sam Steingold in
38299         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
38300         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
38301         assumed that reg_errcode_t is a signed type, which is not
38302         necessarily true if _XOPEN_SOURCE is not defined.
38303         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
38304         since some compilers warn about it otherwise.
38305
38306 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38307
38308         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
38309         (init_word_char, create_initial_state, duplicate_node_closure):
38310         (fetch_token, peek_token_bracket, build_range_exp):
38311         (build_collating_symbol): Remove forward decls; no longer needed
38312         now that we use prototypes.
38313
38314         * lib/regcomp.c:
38315         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
38316         (re_compile_fastmap_iter, regcomp, regerror, regfree):
38317         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
38318         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
38319         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
38320         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
38321         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
38322         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
38323         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
38324         (build_range_exp, build_collating_symbol, parse_bracket_exp):
38325         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
38326         (build_charclass, build_charclass_op, fetch_number, create_tree):
38327         (create_token_tree, mark_opt_subexp, duplicate_tree):
38328         Use prototypes rather than old-style definitions.
38329
38330         * lib/regex_internal.c:
38331         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
38332         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
38333         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
38334         (re_string_reconstruct, re_string_peek_byte_case):
38335         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
38336         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
38337         (re_node_set_init_copy, re_node_set_add_intersect):
38338         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
38339         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
38340         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
38341         (re_acquire_state, re_acquire_state_context, register_state):
38342         (create_ci_newstate, create_cd_newstate, free_state):
38343         Likewise.
38344         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
38345         re_search_2):
38346         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
38347         (re_search_internal, prune_impossible_nodes):
38348         (acquire_init_state_context, check_matching, static):
38349         (check_halt_node_context, check_halt_state_context, proceed_next_node):
38350         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
38351         (update_regs, sift_states_backward, build_sifted_states):
38352         (clean_state_log_if_needed, merge_state_array):
38353         (update_cur_sifted_state, add_epsilon_src_nodes):
38354         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
38355         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
38356         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
38357         (find_recover_state, check_subexp_matching_top, transit_state_mb):
38358         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
38359         (check_arrival, check_arrival_add_next_nodes):
38360         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
38361         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
38362         (check_node_accept_bytes, check_node_accept, extend_buffers):
38363         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
38364         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
38365         (sift_ctx_init):
38366         Likewise.
38367
38368         * lib/regex_internal.h:
38369         (re_string_allocate, re_string_construct, re_string_reconstruct):
38370         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
38371         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
38372         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
38373         (re_string_context_at, re_string_peek_byte_case):
38374         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
38375         is defined, since we now use prototypes always.
38376
38377         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
38378         C89 or better.  All uses removed.
38379
38380 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
38381
38382         * config/srclist.txt: Add glibc bugs 1220-1227.
38383
38384 2005-08-20  Jim Meyering  <jim@meyering.net>
38385
38386         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
38387         of unused local, dfa.
38388
38389 2005-08-20  Bruno Haible  <bruno@clisp.org>
38390
38391         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
38392
38393 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38394
38395         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
38396         (re_node_set_insert_last, re_dfa_add_node):
38397         Rename local variables to avoid GCC shadowing warnings.
38398
38399 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38400
38401         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
38402         [defined lint]: Suppress bogus uninitialized-variable warnings.
38403
38404         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
38405         and let the caller return REG_ESPACE if out of space.  This
38406         removes an uninitialied-variable warning with GCC 4.0.1, and also
38407         avoids taking the address of a local variable.  All callers
38408         changed.
38409
38410 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
38411
38412         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
38413         $LIBCSRC/posix/regexec.c.
38414         Add glibc bug 1217 for regcomp.c.
38415
38416 2005-08-19  Jim Meyering  <jim@meyering.net>
38417
38418         * lib/regexec.c (proceed_next_node): Redo local variables to
38419         avoid GCC shadowing warnings.
38420
38421 2005-08-18  Bruno Haible  <bruno@clisp.org>
38422
38423         * lib/strstr.c (strstr): Fix return value in multibyte case.
38424         * lib/strcasestr.c (strcasestr): Likewise.
38425
38426 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
38427
38428         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
38429
38430 2005-08-17  Jim Meyering  <jim@meyering.net>
38431
38432         Make the %s format (seconds since the epoch) work for a negative
38433         number and when used with a zero-padded field width, e.g. %015s.
38434
38435         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
38436         label so that it precedes the code to set `digits'.  Otherwise,
38437         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
38438         print `00-22'.  Now, it prints `-0022', as it should.
38439
38440 2005-08-17  Bruno Haible  <bruno@clisp.org>
38441
38442         * modules/strstr (Files): Add m4/mbrtowc.m4.
38443         (Depends-on): Add mbuiter.
38444
38445 2005-08-17  Bruno Haible  <bruno@clisp.org>
38446
38447         * modules/strcasestr: New file.
38448         * MODULES.html.sh (String handling, based on ANSI C 89): Add
38449         strcasestr.
38450
38451 2005-08-17  Bruno Haible  <bruno@clisp.org>
38452
38453         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
38454
38455 2005-08-17  Bruno Haible  <bruno@clisp.org>
38456
38457         * modules/mbuiter: New file.
38458         * MODULES.html.sh (Extended multibyte and wide character utilities):
38459         Add mbuiter.
38460
38461 2005-08-17  Bruno Haible  <bruno@clisp.org>
38462
38463         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
38464         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
38465
38466 2005-08-17  Bruno Haible  <bruno@clisp.org>
38467
38468         * m4/strcasestr.m4: New file.
38469
38470 2005-08-17  Bruno Haible  <bruno@clisp.org>
38471
38472         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
38473         * lib/strstr.c: Completely rewritten, with multibyte locale support.
38474
38475 2005-08-17  Bruno Haible  <bruno@clisp.org>
38476
38477         * lib/strcasestr.h: New file.
38478         * lib/strcasestr.c: New file.
38479
38480 2005-08-17  Bruno Haible  <bruno@clisp.org>
38481
38482         * lib/strcasecmp.c: Use mbuiter.h.
38483
38484 2005-08-17  Bruno Haible  <bruno@clisp.org>
38485
38486         * lib/mbuiter.h: New file.
38487
38488 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
38489
38490         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
38491         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
38492         and gl_GETOPT are both invoked via different paths (as happens
38493         with GNU tar CVS because it uses both argp and getopt), the former
38494         wins.
38495
38496 2005-08-16  Bruno Haible  <bruno@clisp.org>
38497
38498         * modules/tls: New file.
38499         * MODULES.html.sh (Multithreading): Add tls.
38500
38501 2005-08-16  Bruno Haible  <bruno@clisp.org>
38502
38503         * modules/strnlen1: New file.
38504         * MODULES.html.sh (String handling): Add strnlen1.
38505
38506 2005-08-16  Bruno Haible  <bruno@clisp.org>
38507
38508         * modules/strcase (Files): Add m4/mbrtowc.m4.
38509         (Depends-on): Add strnlen1, mbchar.
38510
38511 2005-08-16  Bruno Haible  <bruno@clisp.org>
38512
38513         * modules/mbiter: New file.
38514         * MODULES.html.sh (Extended multibyte and wide character utilities):
38515         Add mbiter.
38516
38517 2005-08-16  Bruno Haible  <bruno@clisp.org>
38518
38519         * modules/mbfile: New file.
38520         * MODULES.html.sh (Extended multibyte and wide character utilities):
38521         Add mbfile.
38522
38523 2005-08-16  Bruno Haible  <bruno@clisp.org>
38524
38525         * modules/mbchar: New file.
38526         * MODULES.html.sh (Extended multibyte and wide character utilities):
38527         New section.
38528
38529 2005-08-16  Bruno Haible  <bruno@clisp.org>
38530
38531         * m4/tls.m4: New file, from GNU gettext.
38532
38533 2005-08-16  Bruno Haible  <bruno@clisp.org>
38534
38535         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
38536         always.
38537         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
38538
38539 2005-08-16  Bruno Haible  <bruno@clisp.org>
38540
38541         * m4/mbiter.m4: New file.
38542
38543 2005-08-16  Bruno Haible  <bruno@clisp.org>
38544
38545         * m4/mbfile.m4: New file.
38546
38547 2005-08-16  Bruno Haible  <bruno@clisp.org>
38548
38549         * m4/mbchar.m4: New file.
38550
38551 2005-08-16  Bruno Haible  <bruno@clisp.org>
38552
38553         * lib/tls.h: New file, from GNU gettext.
38554         * lib/tls.c: New file, from GNU gettext.
38555
38556 2005-08-16  Bruno Haible  <bruno@clisp.org>
38557
38558         * lib/strnlen1.h: New file.
38559         * lib/strnlen1.c: New file.
38560
38561 2005-08-16  Bruno Haible  <bruno@clisp.org>
38562
38563         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
38564         (mbi_init): Update.
38565         (mbi_avail, mbi_advance): Let the iteration end before the terminating
38566         NUL byte, not after it.
38567
38568 2005-08-16  Bruno Haible  <bruno@clisp.org>
38569
38570         * lib/strcase.h (strcasecmp): Add note in comments.
38571         * lib/strncasecmp.c: Use code from strcasecmp.c.
38572         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
38573         (strcasecmp): Work correctly in multibyte locales.
38574
38575 2005-08-16  Bruno Haible  <bruno@clisp.org>
38576
38577         * lib/mbiter.h: New file.
38578
38579 2005-08-16  Bruno Haible  <bruno@clisp.org>
38580
38581         * lib/mbfile.h: New file.
38582
38583 2005-08-16  Bruno Haible  <bruno@clisp.org>
38584
38585         * lib/mbchar.h: New file.
38586         * lib/mbchar.c: New file.
38587
38588 2005-08-16  Bruno Haible  <bruno@clisp.org>
38589
38590         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
38591         the valid ones. Makes the comparison operations transitive:
38592         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
38593         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
38594
38595 2005-08-15  Simon Josefsson  <jas@extundo.com>
38596
38597         * modules/ssize_t (License): Change to 'unlimited'.
38598
38599         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
38600
38601 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38602
38603         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
38604         Add comments for each pending glibc patch.
38605
38606 2005-08-15  Bruno Haible  <bruno@clisp.org>
38607
38608         * lib/regex.h (__restrict_arr): Don't define to __restrict if
38609         __cplusplus is defined.
38610
38611 2005-08-14  Jim Meyering  <jim@meyering.net>
38612
38613         Sync from coreutils.
38614
38615         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
38616         Use the hash-table-based cycle-detection code not just when
38617         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
38618         Reported by James Youngman in
38619         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
38620         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
38621         FTS_TIGHT_CYCLE_CHECK.
38622         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
38623         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
38624         once again.
38625         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
38626         * lib/fts.c (fd_safer): Remove decl.
38627         Include fcntl--.h rather than unistd-safer.h
38628         (fts_safe_changedir): Don't call fd_safer; no longer needed
38629         now that we include fcntl--.h.
38630
38631 2005-08-12  Simon Josefsson  <jas@extundo.com>
38632
38633         * modules/getndelim2: Use ssize_t module.
38634         * modules/getnline: Likewise.
38635         * modules/safe-read: Likewise.
38636         * modules/xreadlink: Likewise.
38637
38638         * modules/ssize_t: New file.
38639
38640 2005-08-12  Simon Josefsson  <jas@extundo.com>
38641
38642         * m4/readline.m4: Look for termcap, curses or ncurses if required.
38643
38644 2005-08-12  Simon Josefsson  <jas@extundo.com>
38645
38646         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
38647         ssize_t.
38648
38649 2005-08-12  Simon Josefsson  <jas@extundo.com>
38650
38651         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
38652         readline, getdelim and check_version.
38653         (Support for systems lacking ISO C 99: Sizes of integer types):
38654         Add size_max.
38655
38656 2005-08-12  Bruno Haible  <bruno@clisp.org>
38657
38658         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
38659
38660 2005-08-11  Simon Josefsson  <jas@extundo.com>
38661
38662         * modules/readline: New file.
38663
38664         * modules/strnlen (Files): Add strnlen.h.
38665
38666 2005-08-11  Simon Josefsson  <jas@extundo.com>
38667
38668         * m4/readline.m4: New file.
38669
38670 2005-08-11  Simon Josefsson  <jas@extundo.com>
38671
38672         * lib/readline.h, readline.c: New file.
38673
38674 2005-08-11  Simon Josefsson  <jas@extundo.com>
38675
38676         * doc/gnulib.texi (Initial import, Finishing touches): Mention
38677         gl_AVOID.
38678
38679 2005-08-11  Bruno Haible  <bruno@clisp.org>
38680
38681         * lib/strnlen.h (strnlen): Change parameter name to match comment.
38682
38683 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
38684
38685         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
38686
38687 2005-08-10  Simon Josefsson  <jas@extundo.com>
38688
38689         * tests/test-iconvme.c: New file.
38690
38691 2005-08-10  Simon Josefsson  <jas@extundo.com>
38692
38693         * m4/strnlen.m4: New file.
38694
38695         * m4/strndup.m4: Don't check for strnlen declaration, done in
38696         strnlen.m4.
38697
38698 2005-08-10  Simon Josefsson  <jas@extundo.com>
38699
38700         * lib/strndup.c: Use strnlen.h.
38701
38702         * lib/strnlen.h: New file.
38703
38704 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
38705
38706         * README: Typos.
38707
38708 2005-08-02  Simon Josefsson  <jas@extundo.com>
38709
38710         * modules/readline: New file.
38711
38712 2005-08-02  Simon Josefsson  <jas@extundo.com>
38713
38714         * modules/getdelim: New file.
38715
38716         * modules/getline: Rewrite, don't use getndelim2.
38717
38718 2005-08-02  Simon Josefsson  <jas@extundo.com>
38719
38720         * m4/getline.m4: Separate out getdelim stuff into separate module.
38721
38722         * m4/getdelim.m4: New file.
38723
38724 2005-08-02  Simon Josefsson  <jas@extundo.com>
38725
38726         * lib/getline.h, getline.c: Rewrite.
38727
38728         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
38729
38730 2005-07-31  Bruno Haible  <bruno@clisp.org>
38731
38732         * lib/lock.h (gl_lock_initializer): New macro.
38733         (gl_lock_define_initialized): Use it.
38734         (gl_rwlock_initializer): New macro.
38735         (gl_rwlock_define_initialized): Use it.
38736         (gl_recursive_lock_initializer): New macro.
38737         (gl_recursive_lock_define_initialized): Use it.
38738
38739 2005-07-30  Karl Berry  <karl@gnu.org>
38740
38741         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
38742         Report from Ben Pfaff, regarding getopt.
38743
38744 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
38745
38746         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
38747         normal way.
38748         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
38749         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
38750         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
38751         (gl_GETOPT): Use the new macros.  Most of the implementation
38752         is moved to the new macros.  This is for programs like Emacs
38753         that don't want all the functionality of gl_GETOPT.
38754
38755 2005-07-26  Bruno Haible  <bruno@clisp.org>
38756
38757         * m4/lock.m4: Update from GNU gettext.
38758
38759 2005-07-26  Bruno Haible  <bruno@clisp.org>
38760
38761         * lib/lock.h: Update from GNU gettext.
38762         * lib/lock.c: Update from GNU gettext.
38763
38764 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
38765
38766         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
38767         obsolescent AC_TRY_RUN.  Include the default includes files, for
38768         'exit'.
38769
38770 2005-07-24  Bruno Haible  <bruno@clisp.org>
38771
38772         * modules/visibility: New file.
38773         * MODULES.html.sh (Misc): Add visibility.
38774
38775 2005-07-24  Bruno Haible  <bruno@clisp.org>
38776
38777         * m4/visibility.m4: New file.
38778
38779 2005-07-24  Bruno Haible  <bruno@clisp.org>
38780
38781         * doc/visibility.texi: New file.
38782
38783 2005-07-22  Bruno Haible  <bruno@clisp.org>
38784
38785         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
38786         $(ALLOCA_H), redundant through BUILT_SOURCES.
38787         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
38788         redundant through BUILT_SOURCES.
38789         * modules/byteswap (Makefile.am): Remove explicit dependency on
38790         $(BYTESWAP_H), redundant through BUILT_SOURCES.
38791         * modules/fnmatch (Makefile.am): Remove explicit dependency on
38792         $(FNMATCH_H), redundant through BUILT_SOURCES.
38793         * modules/getopt (Makefile.am): Remove explicit dependency on
38794         $(GETOPT_H), redundant through BUILT_SOURCES.
38795         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
38796         redundant through BUILT_SOURCES.
38797         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
38798         redundant through BUILT_SOURCES.
38799         * modules/stdbool (Makefile.am): Remove explicit dependency on
38800         $(STDBOOL_H), redundant through BUILT_SOURCES.
38801         * modules/stdint (Makefile.am): Remove explicit dependency on
38802         $(STDINT_H), redundant through BUILT_SOURCES.
38803         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
38804         Remove explicit dependency on $(SYSEXITS_H).
38805         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
38806
38807 2005-07-18  Simon Josefsson  <jas@extundo.com>
38808
38809         * lib/check-version.c (check_version): Accept identical versions too.
38810
38811 2005-07-18  Bruno Haible  <bruno@clisp.org>
38812
38813         * modules/lock: New file.
38814         * MODULES.html.sh (Multithreading): New section.
38815
38816 2005-07-18  Bruno Haible  <bruno@clisp.org>
38817
38818         * m4/lock.m4: New file, from GNU gettext.
38819
38820 2005-07-18  Bruno Haible  <bruno@clisp.org>
38821
38822         * lib/lock.h: New file, from GNU gettext.
38823         * lib/lock.c: New file, from GNU gettext.
38824
38825 2005-07-18  Bruno Haible  <bruno@clisp.org>
38826
38827         * lib/lock.h (gl_once_t): New type.
38828         (gl_once_define, gl_once): New macros.
38829         * lib/lock.c (fresh_once): New variable.
38830         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
38831         functions.
38832
38833 2005-07-16  Simon Josefsson  <jas@extundo.com>
38834
38835         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
38836         workaround, suggested by Bruno.
38837
38838 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
38839
38840         * modules/xalloc (Depends-on): Add xalloc-die.
38841         * modules/xvasprintf (Depends-on): Add xalloc-die.
38842
38843 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
38844
38845         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
38846         with a minor change.
38847
38848 2005-07-15  Bruno Haible  <bruno@clisp.org>
38849
38850         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
38851         When using lib/poll.c, define poll as rpl_poll.
38852
38853 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
38854
38855         * modules/argp (Depends-on): Remove unlocked-io.
38856
38857 2005-07-14  Derek Price  <derek@ximbiot.com>
38858
38859         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
38860         for glob symlink bug.
38861
38862 2005-07-14  Bruno Haible  <bruno@clisp.org>
38863
38864         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
38865         Instead, test for *_unlocked function declarations directly.
38866
38867 2005-07-11  Simon Josefsson  <jas@extundo.com>
38868
38869         * modules/size_max: New file.
38870
38871         * modules/xsize: Depend on size_max module for size_max.m4.
38872
38873 2005-07-11  Simon Josefsson  <jas@extundo.com>
38874
38875         * lib/size_max.h: New file.
38876
38877 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
38878
38879         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
38880         copyright symbol and the year.
38881         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
38882         (version_etc_va): Use parameterized copyright notice.
38883         Reword to conform to the current GNU coding standards.
38884
38885 2005-07-11  Karl Berry  <karl@gnu.org>
38886
38887         * doc/gnulib.texi (Quoting): new node.
38888         (Initial import): more info, from Patrice.
38889
38890 2005-07-11  Bruno Haible  <bruno@clisp.org>
38891
38892         * gnulib-tool (func_usage): Document option --avoid.
38893         (Command line options): Handle --avoid.
38894         (func_acceptable): New function.
38895         (func_modules_transitive_closure): Use it.
38896
38897 2005-07-11  Bruno Haible  <bruno@clisp.org>
38898
38899         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
38900         Reported by Jim Meyering.
38901
38902 2005-07-10  Bruno Haible  <bruno@clisp.org>
38903
38904         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
38905         Needed when size_t is smaller than 'unsigned int'.
38906         Reported by Paul Eggert.
38907
38908 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
38909
38910         * modules/argp (Depends-on): Add unlocked-io
38911
38912 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
38913
38914         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
38915         block of defines.
38916
38917 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
38918
38919         * config/srclist.txt: Comment out regcomp.c, since we have a porting
38920         fix now.
38921
38922 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
38923         and Paul Eggert  <eggert@cs.ucla.edu>
38924
38925         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
38926         in wint_t, not wchar_t.  Remove now-unnecessary cast.
38927
38928 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
38929
38930         * modules/regex (Files): Add lib/regex_internal.c,
38931         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
38932         (Depends-on): Add extensions.
38933         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
38934
38935 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
38936
38937         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
38938         pathconf.
38939         * m4/same.m4 (gl_SAME): Likewise.
38940         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
38941
38942         * m4/regex.m4: Adjust to new libc regex implementation.
38943         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
38944         all the .c and .h parts of (the new) regex.
38945         Quote the m4 stuff better.
38946         Check for RE_ICASE bug of old gnulib.
38947         Check for REG_STARTEND of recent libc.
38948         Rename local variables from jm_* to gl_*.
38949         Quote operand of "test -f".
38950         Say "recent enough" version of libc, not "version 2".
38951         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
38952         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
38953         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
38954         Remove check for btowc, isascii.
38955         Require AM_LANGINFO_CODESET.
38956
38957 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
38958
38959         * lib/regex.c, regex.h: Sync from libc.
38960         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
38961         * lib/regexec.c:
38962         New files, synced from libc, except that regex_internal.h
38963         currently has a small porting fix.
38964
38965 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
38966
38967         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
38968         regex_internal.c, regexec.c.
38969         Add regex_internal.h too, but as a comment, since the libc version
38970         is currently broken in gnulib mode.
38971
38972 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
38973
38974         Support programs like Emacs that use gnulib but not gettext.
38975         * MODULES.html.sh (Internationalization functions): Add gettext-h.
38976         * modules/gettext-h: New file.
38977         * modules/gettext (Files): Remove lib/gettext.h.
38978         (Depends-on): Add gettext-h.
38979         (Makefile.am): Remove lib_SOURCES.
38980         * modules/argmatch, modules/c-stack, modules/closeout:
38981         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
38982         * modules/execute, modules/file-type, modules/getaddrinfo:
38983         * modules/getopt, modules/human, modules/javacomp:
38984         * modules/javaexec, modules/mkdir-p, modules/obstack:
38985         * modules/openat, modules/pagealign_alloc, modules/pipe:
38986         * modules/quotearg, modules/regex, modules/rpmatch:
38987         * modules/unicodeio, modules/userspec, modules/version-etc:
38988         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
38989         * modules/xsetenv:
38990         Depend on gettext-h, not gettext.
38991
38992 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
38993
38994         * gnulib-tool (func_import): Add support for 'public domain' license.
38995         * modules/alloca, modules/atexit, modules/memmove:
38996         Now public domain, not GPL.
38997         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
38998         * modules/realloc, modules/strerror, modules/strtod:
38999         Now LGPL, not GPL.
39000
39001 2005-07-05  Bruno Haible  <bruno@clisp.org>
39002
39003         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
39004         autoconf CVS. Needed for mingw.
39005
39006 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39007
39008         Remove the dependency of the strftime module on the tzset module.
39009         * modules/strftime (Depends-on): Remove dependency on tzset.
39010
39011 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39012
39013         Remove the dependency of the strftime module on the tzset module.
39014         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
39015         gl_FUNC_TZSET_CLOBBER.
39016
39017 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
39018
39019         Remove the dependency of the strftime module on the tzset module.
39020         * lib/strftime.c (my_strftime)
39021         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
39022         Copy the input structure, to work around some of the bug with
39023         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
39024         Solaris releases, you should also use the tzset module, but we won't
39025         require it as a dependency any more since we don't want LGPLed code
39026         to depend on GPLed code.
39027
39028 2005-07-02  Jim Meyering  <jim@meyering.net>
39029
39030         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
39031         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
39032         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
39033         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
39034
39035 2005-07-02  Jim Meyering  <jim@meyering.net>
39036
39037         * lib/backupfile.c (backup_args): Change a `0' to NULL.
39038
39039 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39040
39041         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
39042         declares only 'struct timespec;' (!).
39043
39044 2005-07-01  Jim Meyering  <jim@meyering.net>
39045
39046         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
39047         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
39048         * lib/save-cwd.c, tempname.c:
39049         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
39050         and don't include <sys/file.h>).
39051
39052 2005-06-29  Jim Meyering  <jim@meyering.net>
39053
39054         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
39055         type name.  Use the variable name instead.
39056         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
39057         Likewise.
39058
39059 2005-06-28  Simon Josefsson  <jas@extundo.com>
39060
39061         * modules/check-version (Files): Add check-version.m4.
39062
39063 2005-06-28  Simon Josefsson  <jas@extundo.com>
39064
39065         * m4/check-version.m4: New file, suggested by Jim Meyering
39066         <jim@meyering.net>.
39067
39068 2005-06-28  Simon Josefsson  <jas@extundo.com>
39069
39070         * lib/check-version.h, lib/check-version.c: New files.
39071
39072 2005-06-28  Simon Josefsson  <jas@extundo.com>
39073
39074         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
39075         collision with global variable.  Better indentation.  Don't
39076         increment buffer pointer beyond buffer end.  Based on comments
39077         from Paul Eggert <eggert@cs.ucla.edu>.
39078
39079         * lib/base64.h: Indent.
39080
39081 2005-06-28  Simon Josefsson  <jas@extundo.com>
39082
39083         * doc/gnulib.texi (Library version handling): New section.
39084
39085 2005-06-28  Jim Meyering  <jim@meyering.net>
39086
39087         * check-module (find_included_lib_files): Hard-code another
39088         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
39089         but modules/fts-lgpl (correctly) does not list those files.
39090
39091         * modules/canonicalize (Files): Add lib/pathmax.h.
39092
39093 2005-06-25  Simon Josefsson  <jas@extundo.com>
39094
39095         * modules/check-version: New file.
39096
39097 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
39098
39099         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
39100         initializer of struct addrinfo, as an indication that we don't
39101         care how many members the structure has.
39102
39103 2005-06-24  Derek Price  <derek@ximbiot.com>
39104         and Bruno Haible  <bruno@clisp.org>
39105
39106         Remove stat module & update lstat.
39107         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
39108         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39109         * m4/stat.m4: Remove this file.
39110
39111 2005-06-24  Derek Price  <derek@ximbiot.com>
39112         and Bruno Haible  <bruno@clisp.org>
39113
39114         Remove stat module & update lstat.
39115         * lib/stat.c: Remove this file...
39116         (slash_aware_lstat): ...moving this content and its support...
39117         * lib/lstat.c (rpl_lstat): ...into here.
39118         * lib/lstat.h: New file.
39119
39120 2005-06-24  Derek Price  <derek@ximbiot.com>
39121         and Bruno Haible  <bruno@clisp.org>
39122
39123         Remove stat module & update lstat.
39124         * config/srclist.txt (libc sources): Remove stat.
39125
39126 2005-06-24  Derek Price  <derek@ximbiot.com>
39127         and Bruno Haible  <bruno@clisp.org>
39128
39129         Remove stat module & update lstat.
39130         * MODULES.html.sh (stat): Remove.
39131         * MODULES.html: Regenerated.
39132         * modules/lstat (Description): Correct function name.
39133         (Files): Add "lstat.h".
39134         (Depends-on): Remove stat, add xalloc, stat-macros.
39135         * modules/stat: Remove this file.
39136         (Include): Add "lstat.h", remove <sys/stat.h>.
39137
39138 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
39139
39140         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
39141         (ranged_convert): Don't save conversion in a temporary struct.
39142         This causes a warning with GCC 4.0.0, and anyway in the typical
39143         case it's not worth the extra 100 bytes or so of code.
39144         (ranged_convert, __mktime_internal): When calling a function via a
39145         pointer P, use P () rather than (*P) (), as we now assume C89 or
39146         better.
39147
39148 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
39149
39150         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
39151         "who -r" failed to give output.  Problem reported by Tim Waugh.
39152
39153         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
39154         (xcalloc): Use it to avoid needless tests.
39155         Problem reported by Jim Meyering.
39156
39157 2005-06-20  Derek Price  <derek@ximbiot.com>
39158
39159         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
39160         unnecessary for Autoconfs > 2.59c.
39161
39162 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39163
39164         * lib/argp.h (__option_is_short): Check upper limit of
39165         __key. Isprint() requires its argument to have the value
39166         of an unsigned char or EOF.
39167
39168 2005-06-16  Jim Meyering  <jim@meyering.net>
39169
39170         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
39171         when either N or S is zero.
39172
39173 2005-06-16  Derek Price  <derek@ximbiot.com>
39174
39175         * m4/bison.m4: Declare YACC & YFLAGS precious.
39176
39177 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
39178
39179         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
39180         multibyte string or pattern, fall back on unibyte matching.
39181         Problem reported by James Youngman.
39182
39183 2005-06-08  Bruno Haible  <bruno@clisp.org>
39184
39185         * modules/csharpcomp: New file.
39186         * MODULES.html.sh (C#): Add csharpcomp.
39187
39188 2005-06-08  Bruno Haible  <bruno@clisp.org>
39189
39190         * m4/csharpcomp.m4: New file, from GNU gettext.
39191
39192 2005-06-08  Bruno Haible  <bruno@clisp.org>
39193
39194         * lib/csharpcomp.h: New file, from GNU gettext.
39195         * lib/csharpcomp.c: New file, from GNU gettext.
39196         * lib/csharpcomp.sh.in: New file, from GNU gettext.
39197
39198 2005-06-08  Bruno Haible  <bruno@clisp.org>
39199
39200         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
39201         warning on mingw.
39202
39203 2005-06-07  Derek Price  <derek@ximbiot.com>
39204
39205         Sync from CVS.
39206         * lib/glob_.h: Indent nested #ifdef.
39207
39208 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39209
39210         Sync from coreutils.
39211         Use "file name" when talking about file names, instead of "filename"
39212         or "path", as per the GNU coding standards.
39213         * lib/mkdir-p.c: Renamed from makepath.c.
39214         (make_dir_parents): Renamed from make_path.  All callers changed.
39215         * lib/mkdir-p.h: Likewise.  All includers changed.
39216         * lib/filenamecat.c: Renamed from path-concat.c.
39217         (file_name_concat): Renamed from path_concat.  All callers changed.
39218         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
39219         * lib/filenamecat.h: Likewise.  All includers changed.
39220         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
39221         in comments or local variable names.
39222         * lib/basename.c: Likewise.
39223         * lib/canonicalize.c, canonicalize.h: Likewise.
39224         * lib/dirname.c, dirname.h: Likewise.
39225         * lib/euidaccess.c: Likewise.
39226         * lib/exclude.c: Likewise
39227         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
39228         * lib/fsusage.c, fsuage.h: Likewise.
39229         * lib/fts.c, fts_.h: Likewise.
39230         * lib/getcwd.c: Likewise.
39231         * lib/getloadavg.c: Likewise.
39232         * lib/mkstemp.c: Likewise.
39233         * lib/mountlist.c, mountlist.h: Likewise.
39234         * lib/openat.c, openat.h: Likewise.
39235         * lib/readlink-stub.c: Likewise.
39236         * lib/readutmp.c, readutmp.h: Likewise.
39237         * lib/rename.c: Likewise.
39238         * lib/rmdir.c: Likewise.
39239         * lib/same.c: Likewise.
39240         * lib/savedir.c: Likewise.
39241         * lib/stripslash.c: Likewise.
39242         * lib/tempname.c: Likewise.
39243         * lib/xreadlink.c: Likewise.
39244         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
39245         All uses changed.
39246         * lib/exclude.h: Likewise.
39247
39248         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
39249         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39250         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
39251         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39252         * lib/pathmax.h: Include <limits.h> unconditionally, since other
39253         files have been getting away with it for years (MORE/BSD 4.3
39254         is extinct now).
39255         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
39256         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
39257
39258         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
39259         Define to 256, not 255, as per modern POSIX.
39260
39261 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39262
39263         Sync from coreutils.
39264         Use "file name" when talking about file names, instead of "filename"
39265         or "path", as per the GNU coding standards.
39266         * MODULES.html.sh: mkdir-p renamed from makepath.
39267         filenamecat renamed from path-concat.
39268         * modules/filenamecat: Renamed from modules/path-concat.
39269         (Files): filenamecat.h and filenamecat.c renamed from
39270         path-concat.h and path-concat.c.
39271         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
39272         (Include): filenamecat.h, not path-concat.h.
39273         * modules/mkdir-p: Renamed from modules/makepath.
39274         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
39275         makepath.c.
39276         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
39277         (Include): mkdir-p.h, not makepath.h.
39278
39279 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
39280
39281         Sync from coreutils.
39282         * m4/mkdir-p.m4: Renamed from makepath.m4.
39283         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
39284         Rename files from makepath.c to mkdir-p.c, and from
39285         makepath.h to mkdir-p.h.
39286         * m4/filenamecat.m4: Renamed from path-concat.m4.
39287         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
39288         Rename files from path-concat.c to filenamecat.c,
39289         and from path-concat.h to filenamecat.h.
39290         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
39291         "file name" in local variables or comments.
39292         * m4/rename.m4: Likewise.
39293
39294 2005-06-01  Bruno Haible  <bruno@clisp.org>
39295
39296         * modules/csharpexec: New file.
39297         * MODULES.html.sh (C#): New section.
39298
39299 2005-06-01  Bruno Haible  <bruno@clisp.org>
39300
39301         * m4/csharp.m4: New file, from GNU gettext.
39302         * m4/csharpexec.m4: New file, from GNU gettext.
39303
39304 2005-06-01  Bruno Haible  <bruno@clisp.org>
39305
39306         * lib/csharpexec.h: New file, from GNU gettext.
39307         * lib/csharpexec.c: New file, from GNU gettext.
39308         * lib/csharpexec.sh.in: New file, from GNU gettext.
39309
39310 2005-05-31  Derek Price  <derek@ximbiot.com>
39311             Paul Eggert  <eggert@cs.ucla.edu>
39312
39313         Sync from cvs.
39314         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
39315
39316 2005-05-31  Derek Price  <derek@ximbiot.com>
39317             Paul Eggert  <eggert@cs.ucla.edu>
39318
39319         Sync from cvs.
39320         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
39321
39322 2005-05-29  Derek Price  <derek@ximbiot.com>
39323
39324         * config/srclist.txt (glob_.h, glob.c): Add these files.
39325
39326 2005-05-29  Derek Price  <derek@ximbiot.com>
39327
39328         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
39329         * modules/glob: New file.
39330         * modules/getlogin_r: Add link to POSIX spec in description.
39331
39332 2005-05-29  Derek Price  <derek@ximbiot.com>
39333             Paul Eggert  <eggert@cs.ucla.edu>
39334
39335         * m4/glob.m4: New file.
39336
39337 2005-05-29  Derek Price  <derek@ximbiot.com>
39338             Paul Eggert  <eggert@cs.ucla.edu>
39339
39340         * lib/glob_.h, lib/glob.c: New files.
39341
39342 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39343
39344         * modules/fts (Files): Remove m4/inttypes-pri.m4.
39345         * modules/fts-lgpl (Depends-on): Remove gettext.
39346
39347 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39348
39349         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
39350         and don't require gt_INTTYPES_PRI.
39351
39352 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
39353
39354         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
39355
39356         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
39357         the configuration hassle isn't worth it.
39358         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
39359         (LONGEST_MODIFIER, PRIuMAX): Remove.
39360
39361 2005-05-27  Bruno Haible  <bruno@clisp.org>
39362
39363         * lib/getlogin_r.h: Remove second include of <stddef.h>.
39364
39365 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
39366
39367         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
39368         _POSIX_PTHREAD_SEMANTICS for Solaris.
39369
39370 2005-05-25  Derek Price  <derek@ximbiot.com>
39371
39372         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
39373
39374 2005-05-25  Derek Price  <derek@ximbiot.com>
39375             Paul Eggert  <eggert@cs.ucla.edu>
39376
39377         * modules/getlogin_r, m4/getlogin_r.m4: New files.
39378         * lib/getlogin_r.c, getlogin_r.h: New files.
39379
39380 2005-05-25  Bruno Haible  <bruno@clisp.org>
39381             Derek Price  <derek@ximbiot.com>
39382
39383         * lib/getlogin_r.h: Simplify API documentation.
39384
39385 2005-05-23  Derek Price  <derek@ximbiot.com>
39386
39387         * modules/minmax (Files): Add m4/minmax.m4.
39388         (configure.ac): Add gl_MINMAX.
39389
39390 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39391
39392         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
39393         so that unistd-safer.h (GPL'ed code) need not be included.
39394
39395 2005-05-22  Bruno Haible  <bruno@clisp.org>
39396
39397         * m4/minmax.m4: New file.
39398         Based on a patch by Derek Price <derek@ximbiot.com>.
39399
39400 2005-05-22  Bruno Haible  <bruno@clisp.org>
39401
39402         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
39403         (INT64_MIN): Fix definition.
39404         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
39405
39406         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
39407         NEED_SIGNED_INT_TYPES.
39408
39409         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
39410         HAVE_SYSTEM_INTTYPES.
39411
39412 2005-05-22  Bruno Haible  <bruno@clisp.org>
39413
39414         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
39415         Also include <sys/param.h> if it defines MIN, MAX.
39416         Based on a patch by Derek Price <derek@ximbiot.com>.
39417
39418 2005-05-21  Jim Meyering  <jim@meyering.net>
39419
39420         * modules/fts (Files): Add m4/inttypes-pri.m4.
39421         (Depends-on): Add lstat and remove gettext.  Alphabetize.
39422
39423 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39424
39425         New fts module.
39426         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
39427         (setup_dir, free_dir): New functions.
39428         (enter_dir, leave_dir): Define trivial
39429         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
39430         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
39431         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
39432         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
39433         Move to fts-cycle.c.
39434         (fts_open): Use setup_dir.
39435         (fts_close): Use free_dir.
39436         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
39437         This adds a label and some gotos, but the alternatives were messier.
39438         Check for memory allocation failure when entering a dir.
39439         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
39440         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
39441         (FTS): New member fts_cycle, that is a union that contains the
39442         old active_dir_ht and cycle_state.  All uses changed to mention
39443         fts_cycle.ht and fts_cycle.state.
39444         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
39445         fts.c, with the following changes:
39446         (setup_dir, free_dir): New functions.
39447         (enter_dir): Now returns bool.  Return true if successful, false
39448         if memory exhausted.  All callers changed.
39449         Do not bother partly cleaning up on
39450         memory allocation failure; that is free_dir's job.
39451         However, free ad if hash_insert fails, to avoid memory leak.
39452         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
39453         fts->fts_options to see which union member to use.
39454
39455 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39456
39457         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
39458         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
39459
39460 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
39461
39462         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
39463
39464 2005-05-20  Jim Meyering  <jim@meyering.net>
39465
39466         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
39467         Now a macro, to pacify GCC.
39468
39469 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
39470
39471         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
39472         of -1.
39473
39474 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
39475
39476         * lib/chown.c (rpl_chown): Return -1 on failure.
39477
39478 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
39479
39480         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
39481         Don't check for stddef.h.
39482         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
39483         don't use its results.
39484         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
39485         since we include them unconditionally.  Don't require
39486         AM_STDBOOL_H, since stdbool is a prerequisite.
39487         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
39488         since we assume C89 or better.
39489         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
39490         as we don't use their results.
39491         Don't check for fchdir, memmove, memset, strrchr, as we use
39492         them unconditionally.
39493         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
39494         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
39495
39496 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
39497
39498         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
39499         Include <stddef.h> unconditionally, since we assume C89 now.
39500         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
39501         * lib/fts.c: Include fts_.h first, to check interface.
39502         Do not include intprops.h; no longer needed.
39503         Include cycle-check.h and hash.h, since fts_.h no longer does.
39504         Remove unnecessary casts of closedir to void.
39505         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
39506         decide whether to decrement nlinks.
39507         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
39508         (FTS): Use struct hash_table * instead of Hash_table, so that
39509         we no longer need to include hash.h here.
39510
39511 2005-05-18  Jim Meyering  <jim@meyering.net>
39512
39513         * modules/dirfd (License): Change to LGPL.  Most of the code
39514         is already in the public domain.
39515
39516 2005-05-18  Jim Meyering  <jim@meyering.net>
39517
39518         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
39519         Reported by Yoann Vandoorselaere.
39520
39521 2005-05-17  Jim Meyering  <jim@meyering.net>
39522
39523         * m4/fts.m4: New file, from coreutils.
39524
39525 2005-05-17  Jim Meyering  <jim@meyering.net>
39526
39527         * lib/fts.c, lib/fts_.h: New files, from coreutils.
39528
39529 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39530
39531         Sync from coreutils.
39532         * m4/unlinkdir.m4: New file.
39533
39534 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39535
39536         Sync from coreutils.
39537         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
39538         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
39539         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
39540         White space changes only.
39541         * lib/makepath.c (make_path): Port to hosts where leading "//" is
39542         special.
39543         * lib/yesno.c: Include getline.h, not ctype.h.
39544         (yesno): Don't remove leading white space; POSIX doesn't allow it.
39545         Use getline to remove arbitrary restriction on response length.
39546
39547 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39548
39549         * config/srclist-update: Spell out "Street" in FSF postal
39550         mail address; this is the style the FSF seems to prefer.
39551
39552         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
39553         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
39554         this updates FSF postal mail address.
39555
39556         Sync from coreutils.
39557         * modules/unlinkdir: New file.
39558         * modules/yesno (Depends-on): Add getline.
39559         * MODULES.html.sh (File system functions): Add unlinkdir.
39560
39561 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
39562
39563         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
39564         lib/strsep.h:
39565         Change the initial comment to refer to GPL, not LGPL.
39566         gnulib-tool will change it to LGPL as needed.
39567
39568         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
39569         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
39570         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
39571         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
39572         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
39573         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
39574         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
39575         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
39576         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
39577         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
39578         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
39579         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
39580         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
39581         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
39582         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
39583         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
39584         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
39585         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
39586         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
39587         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
39588         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
39589         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
39590         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
39591         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
39592         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
39593         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
39594         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
39595         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
39596         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
39597         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
39598         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
39599         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
39600         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
39601         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
39602         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
39603         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
39604         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
39605         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
39606         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
39607         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
39608         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
39609         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
39610         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
39611         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
39612         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
39613         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
39614         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
39615         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
39616         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
39617         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
39618         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
39619         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
39620         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
39621         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
39622         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
39623         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
39624         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
39625         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
39626         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
39627         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
39628         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
39629         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
39630         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
39631         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
39632         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
39633         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
39634         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
39635         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
39636         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
39637         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
39638         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
39639         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
39640         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
39641         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
39642         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
39643         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
39644         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
39645         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
39646         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
39647         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
39648         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
39649         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
39650         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
39651         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
39652         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
39653         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
39654         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
39655         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
39656         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
39657         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
39658         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
39659         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
39660         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
39661         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
39662         lib/yesno.c, lib/yesno.h:
39663         Update FSF postal mail address.
39664
39665 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
39666
39667         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
39668         tests/test-memmem.c, tests/test-stpncpy.c:
39669         Update FSF postal mail address.
39670
39671 2005-05-13  Bruno Haible  <bruno@clisp.org>
39672
39673         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
39674         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
39675         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
39676         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
39677         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
39678         Add support for 64-bit integers in the MSVC compiler.
39679
39680 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
39681
39682         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
39683
39684 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
39685
39686         * gnulib-tool (func_import): Sort and uniquify recommended includes.
39687
39688 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
39689
39690         * doc/getdate.texi (General date syntax): Don't say that date
39691         date --iso-8601=ns generates acceptable dates; it doesn't yet.
39692         Problem reported by Nic Ferrier.
39693
39694 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39695
39696         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
39697         specified in ai_socktype. Fix invalid ai_protocol
39698         check. ai_protocol is usually set to 0 or depending on
39699         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
39700         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
39701         ai_socktype / ai_protocol in the returned addrinfo structure.
39702
39703 2005-05-10  Simon Josefsson  <jas@extundo.com>
39704
39705         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
39706         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
39707
39708 2005-05-10  Karl Berry  <karl@gnu.org>
39709
39710         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
39711         (from http://www.gnu.org/licenses).
39712         * doc/COPYING.LIB: also rename to COPYING.LESSER.
39713         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
39714         fdl.texi suffices.
39715
39716 2005-05-10  Karl Berry  <karl@gnu.org>
39717
39718         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
39719         (COPYING.DOC): remove.
39720
39721         * config/srclist-update: new FSF address.
39722
39723 2005-05-10  Derek Price  <derek@ximbiot.com>
39724
39725         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
39726         possible.
39727
39728 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39729             Bruno Haible  <bruno@clisp.org>
39730
39731         * modules/inet_ntop: New file.
39732         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
39733         inet_ntop.
39734
39735 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39736             Bruno Haible  <bruno@clisp.org>
39737
39738         * m4/inet_ntop.m4: New file.
39739
39740 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39741             Bruno Haible  <bruno@clisp.org>
39742
39743         * lib/inet_ntop.h: New file.
39744         * lib/inet_ntop.c: New file, from glibc with modifications.
39745
39746 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
39747
39748         * modules/time_r (License): Change to LGPL.
39749         * modules/extensions (License): Change to LGPL.  Actually,
39750         the license is more permissive than that, but currently gnulib-tool
39751         doesn't know how to handle more-permissive licenses.
39752
39753         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
39754         Problem reported by Dave Love.
39755
39756 2005-05-08  Jim Meyering  <jim@meyering.net>
39757
39758         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
39759         blank.
39760
39761 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
39762
39763         * modules/argmatch (Depends-on): Add stdbool.
39764         * modules/backupfile (Depends-on): Likewise.
39765         * modules/chdir-long (Depends-on): Likewise.
39766         * modules/closeout (Depends-on): Likewise.
39767         * modules/cycle-check (Depends-on): Likewise.
39768         * modules/dirname (Depends-on): Likewise.
39769         * modules/fnmatch (Depends-on): Likewise.
39770         * modules/fsusage (Depends-on): Likewise.
39771         * modules/fwriteerror (Depends-on): Likewise.
39772         * modules/getcwd (Depends-on): Likewise.
39773         * modules/getloadavg (Depends-on): Likewise.
39774         * modules/hard-locale (Depends-on): Likewise.
39775         * modules/makepath (Depends-on): Likewise.
39776         * modules/mountlist (Depends-on): Likewise.
39777         * modules/nanosleep (Depends-on): Likewise.
39778         * modules/posixtm (Depends-on): Likewise.
39779         * modules/quotearg (Depends-on): Likewise.
39780         * modules/readtokens (Depends-on): Likewise.
39781         * modules/readtokens0 (Depends-on): Likewise.
39782         * modules/readutmp (Depends-on): Likewise.
39783         * modules/save-cwd (Depends-on): Likewise.
39784         * modules/strftime (Depends-on): Likewise.
39785         * modules/userspec (Depends-on): Likewise.
39786         * modules/utimecmp (Depends-on): Likewise.
39787         * modules/xgetcwd (Depends-on): Likewise.
39788         * modules/xnanosleep (Depends-on): Likewise.
39789         * modules/xstrtod (Depends-on): Likewise.
39790         * modules/yesno (Depends-on): Likewise.
39791
39792 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
39793
39794         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
39795         needless checks.
39796
39797 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
39798
39799         Merge from coreutils.  Among other things,
39800         add bulletproofing for cases where stdin, stdout, or stderr are closed.
39801         * lib/fd-safer.c: New file.
39802         * lib/fcntl-safer.h, open-safer.c: Remove.
39803         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
39804         * lib/dup-safer.c: Include unistd-safer.h first.
39805         Don't include errno.h.
39806         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
39807         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
39808         * lib/file-type.c: Rely on file-type.h change.
39809         * lib/getloadavg.c: Include unistd-safer.h.
39810         (getloadavg): Use safer open.
39811         * lib/getusershell.c: Include "stdio-safer.h".
39812         (getusershell): Use safer fopen.
39813         * lib/long-options.c (long_options): Use NULL rather than 0.
39814         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
39815         'free'.
39816         * lib/modechange.c: Likewise.
39817         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
39818         (MODE_DONE): New constant.
39819         (struct mode_change): Remove 'next' member.
39820         (make_node_op_equals): New function; like the old one of the
39821         same name, except it allocates an array.
39822         (mode_compile, mode_create_from_ref): Use it.
39823         (mode_compile): Allocate result as an array, not a linked list.
39824         Parse octal string ourself, so that we catch mistakes like "+0".
39825         (mode_adjust): Arg is an array, not a linked list.
39826         * lib/modechange.c: Include stat-macros.h, xalloc.h.
39827         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
39828         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
39829         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
39830         Remove.  This is now stat-macros.h's job.
39831         (talloc): Remove.  All callers replaced by xalloc, so that
39832         our invokers don't have to worry about reporting memory failures.
39833         (make_node_op_equals): Remove.
39834         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
39835         New constants.
39836         (struct mode_change): Moved here from modechange.h.
39837         (mode_append_entry): Remove.
39838         (mode_compile): Remove MASKED_OPS arg, since it encouraged
39839         apps to have incorrect behavior.  Use simpler algorithm for head
39840         and tail.  Don't futz with umask; that's now the job of mode_adjust.
39841         Detect more invalid usages rather than having somewhat-random behavior.
39842         Don't insert an "a=" action, as that leads to incorrect behavior.
39843         (mode_compile, mode_create_from_ref): Return NULL on error instead
39844         of an enum, since now there's only one way to have an error.  All
39845         callers changed.
39846         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
39847         at the correct time.  Simplify calculation of "+u" and its ilk.
39848         Don't mishandle "+X".
39849         (mode_free): Remove "register" and localize decls.
39850         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
39851         (struct mode_change): Move to modechange.c; callers don't
39852         need to see this stuff.
39853         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
39854         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
39855         (mode_change, mode_adjust): Reflect the new signatures noted above.
39856         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
39857         that might redefine system include files.
39858         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
39859         (my_usleep): Use NULL rather than (void *) 0.
39860         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
39861         Use siginterrupt to specify that system calls should be interrupted.
39862         (rpl_nanosleep): Move initialization of suspended closer to call of
39863         my_usleep.
39864         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
39865         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
39866         (desirable_utmp_entry): New function.
39867         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
39868         using x2nrealloc, to simplify logic.
39869         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
39870         size calculation.  Do not assume utmp file is a regular file.
39871         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
39872         (READ_UTMP_CHECK_PIDS): New constant.
39873         * lib/save-cwd.c: Include unistd-safer.h.
39874         (save_cwd): Use fd_safer.
39875         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
39876         [!_LIBC] Include "stat-macros.h" instead.
39877         * lib/unistd-safer.h (fd_safer): New decl.
39878
39879 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
39880
39881         * modules/getloadavg (Depends-on): Add unistd-safer.
39882         * modules/getusershell (Depends-on): Add stdio-safer.
39883         * modules/lstat (Depends-on): Remove xalloc.
39884         * modules/mkstemp (Depends-on): Add stat-macros.
39885         * modules/modechange (Depends-on): Remove xstrtol.
39886         Add stat-macros, xalloc.
39887         * modules/save-cwd (Depends-on): Add unistd-safer.
39888         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
39889         * modules/unistd-safer (Files): Add lib/fd-safer.c
39890         (Makefile.am): Remove lib_SOURCES.
39891
39892         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
39893         Remove fcntl-safer; unistd-safer supersedes it.
39894
39895 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
39896
39897         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
39898         AC_HEADER_STAT.
39899         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
39900         (gl_PREREQ_CHOWN): Remove.
39901         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
39902         it.  Don't require AC_HEADER_STAT.
39903         (gl_PREREQ_LSTAT): Remove.
39904         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
39905         Don't require AC_HEADER_STAT.
39906         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
39907         (gl_PREREQ_RMDIR): Remove.
39908         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
39909         mention stat-macros.h or AC_HEADER_STAT, since we'll make
39910         the stat-macros module a prerequisite.
39911         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
39912         * m4/filemode.m4 (gl_FILEMODE): Likewise.
39913         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
39914         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
39915         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
39916         variable names.
39917         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
39918         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
39919         variable prefixes.
39920         * m4/fcntl-safer.m4: Remove.
39921         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
39922         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
39923         Invoke gl_PREREQ_FD_SAFER.
39924         (gl_PREREQ_FD_SAFER): New macro.
39925         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
39926         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
39927         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
39928         Remove duplicate call to AC_LIBOBJ(readutmp).
39929         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
39930
39931         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
39932         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
39933
39934 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
39935
39936         * MODULES.html.sh (Misc): Add byteswap.
39937
39938 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
39939
39940         * modules/getcwd (Depends-on): Add extensions.
39941         * modules/openat (Depends-on): Likewise.
39942
39943 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
39944
39945         * modules/byteswap: New file.
39946
39947 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
39948
39949         * m4/byteswap.m4: New file.
39950
39951 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
39952
39953         * lib/byteswap_.h: New file.
39954
39955 2005-04-25  Karl Berry  <karl@gnu.org>
39956
39957         * m4/gettext.m4: Update from GNU gettext 0.14.4.
39958
39959 2005-04-25  Albert Chin  <china@thewrittenword.com>
39960
39961         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
39962         Toolkit C bug.
39963
39964 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
39965
39966         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
39967         (func_ln_if_changed) Remove forcibly for no error message
39968         in case file does not exist.
39969
39970 2005-04-19  Simon Josefsson  <jas@extundo.com>
39971
39972         * gnulib-tool (Options): Make --symlink mean --symbolic.
39973
39974 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
39975
39976         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
39977
39978 2005-04-16  Simon Josefsson  <jas@extundo.com>
39979
39980         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
39981
39982 2005-04-15  Simon Josefsson  <jas@extundo.com>
39983
39984         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
39985
39986 2005-04-15  Simon Josefsson  <jas@extundo.com>
39987
39988         * gnulib-tool: Rename --symlink to --symbolic.
39989
39990 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
39991
39992         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
39993         symbolic links to files instead of copying/moving.  Add --aux-dir,
39994         specifying directory relative --dir where auxiliary build tools
39995         are placed.
39996
39997 2005-04-14  Bruno Haible  <bruno@clisp.org>
39998
39999         * modules/allocsa (License): Change to LGPL.
40000         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
40001
40002 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
40003
40004         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
40005         that "UTC +1 second" continues to work.  Problem reported
40006         by Dmitry V. Levin.
40007         (relunit_snumber): New rule.
40008         (relunit): Use it.
40009
40010 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
40011
40012         * lib/getdate.y (universal_time_zone_table): New constant.
40013         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
40014         universal_time_zone_table.
40015         (lookup_zone): Prefer universal_time_zone_table to
40016         local_time_zone_table, so that "GMT" time stamps are allowed in
40017         London during the summer.  Problem reported by Ian Abbott.
40018
40019 2005-04-12  Jim Meyering  <jim@meyering.net>
40020
40021         * lib/human.c (humblock): Set *options even when returning due to
40022         xstrtoumax conversion failure.  Thanks to a used-uninitialized
40023         warning from gcc-4.
40024
40025 2005-04-09  Jim Meyering  <jim@meyering.net>
40026
40027         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
40028         -Wuninitialized: initialize tm0.tm_year.
40029
40030 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
40031
40032         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
40033         count, since there's no maximum.  All uses changed.
40034         Add member dsts_seen.
40035         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
40036         not being INT_MAX.
40037         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
40038         Use pc_rels_seen to decide whther a date is absolute.
40039
40040         * lib/getdate.y (number): Don't overwrite year.
40041         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
40042         check.
40043
40044 2005-04-02  Simon Josefsson  <jas@extundo.com>
40045
40046         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
40047         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
40048
40049 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
40050
40051         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
40052         where no absolute path name can be longer than PATH_MAX.
40053
40054 2005-03-27  Jim Meyering  <jim@meyering.net>
40055
40056         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
40057
40058 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
40059
40060         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
40061         "one's complement" -> "ones' complement" in comment, as per Knuth.
40062         "value of type" -> "type or expression" in comment.
40063         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
40064
40065 2005-03-26  Jim Meyering  <jim@meyering.net>
40066
40067         Comment nits.
40068         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
40069         Correct typos: s/or/of/.
40070
40071 2005-03-26  Jim Meyering  <jim@meyering.net>
40072
40073         * modules/check-include-files: Move to ../ and rename to...
40074         * check-module: ...this.
40075
40076 2005-03-25  Jim Meyering  <jim@meyering.net>
40077
40078         * modules/xvasprintf (Files): Add xalloc.h.
40079
40080 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
40081
40082         * modules/gettext (Files): config/config.rpath ->
40083         build-aux/config.rpath
40084         * modules/iconv (Files): Likewise.
40085         Problem reported by Oskar Liljeblad.
40086
40087 2005-03-23  Jim Meyering  <jim@meyering.net>
40088
40089         * modules/check-include-files: New script to check for
40090         missing dependencies, multiple includes, etc.
40091
40092         * modules/c-strtold (Depends-on): Add xalloc.
40093         * modules/c-strtod (Depends-on): Add xalloc.
40094         * modules/hash (Depends-on): Add xalloc.
40095         (Files): Remove lib/xalloc.h.
40096
40097         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
40098         * modules/userspec (Files): Add lib/inttostr.h.
40099
40100 2005-03-23  Jim Meyering  <jim@meyering.net>
40101
40102         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
40103
40104 2005-03-22  Jim Meyering  <jim@meyering.net>
40105
40106         * modules/stat-macros: New module.
40107         * modules/canonicalize, modules/euidaccess, modules/file-type,
40108         * modules/filemode, modules/lchown, modules/makepath,
40109         * modules/rmdir, modules/stat: Depend on new stat-macros module
40110         rather than listing lib/stat-macros.h manually.
40111         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
40112
40113 2005-03-22  Jim Meyering  <jim@meyering.net>
40114
40115         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
40116
40117 2005-03-22  Bruno Haible  <bruno@clisp.org>
40118
40119         * config/srclist.txt: Replace target directory 'config' with
40120         'build-aux'.
40121         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
40122         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
40123         ../build-aux/.
40124
40125 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
40126
40127         * modules/chdir-long (Depends-on): Add mempcpy.
40128
40129         * modules/acl, modules/backupfile, modules/c-strtod,
40130         modules/c-strtold, modules/canon-host, modules/canonicalize,
40131         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
40132         modules/exclude, modules/exitfail, modules/file-type,
40133         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
40134         modules/getdate, modules/getline, modules/getpagesize,
40135         modules/getpass, modules/getugroups, modules/group-member,
40136         modules/hard-locale, modules/hash, modules/human, modules/idcache,
40137         modules/inttostr, modules/long-options, modules/makepath,
40138         modules/md5, modules/memcasecmp, modules/memcoll,
40139         modules/modechange, modules/mountlist, modules/path-concat,
40140         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
40141         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
40142         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
40143         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
40144         modules/strftime, modules/strndup, modules/strverscmp,
40145         modules/timespec, modules/unlocked-io, modules/userspec,
40146         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
40147         modules/yesno:
40148         Remove lib_SOURCES line from Makefile.am section, as this is now
40149         done automatically by the corresponding Autoconf macro.
40150
40151 2005-03-21  Jim Meyering  <jim@meyering.net>
40152
40153         Changes imported from coreutils.
40154
40155         * lib/cycle-check.c: Don't include xalloc.h.
40156
40157         * lib/path-concat.c: Don't include assert.h.
40158         (path_concat): Remove assertion that would have triggered
40159         for ABASE starting with more than one slash.
40160         Reported by Andreas Schwab.
40161
40162         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
40163         properly when ABASE is an absolute file name.
40164         Correct the description of this function.
40165         Include <assert.h>.
40166         Add an assertion and a test driver.
40167         This fixes a bug introduced on 2004-07-02.
40168         Andreas Schwab reported the resulting failure of cp --parents:
40169         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
40170
40171 2005-03-21  Jim Meyering  <jim@meyering.net>
40172
40173         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
40174         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
40175
40176 2005-03-21  Jim Meyering  <jim@meyering.net>
40177         and  Paul Eggert  <eggert@cs.ucla.edu>
40178
40179         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
40180         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
40181         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
40182         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
40183         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
40184         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
40185         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
40186         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
40187         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
40188         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
40189         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
40190         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
40191         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
40192         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
40193         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
40194         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
40195         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
40196         for these modules.
40197
40198 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
40199
40200         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
40201         (which shouldn't happen), generate nothing instead of returning 0
40202         immediately, so that nstrftime (NULL, ...) doesn't return 0.
40203
40204 2005-03-16  Bruno Haible  <bruno@clisp.org>
40205
40206         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
40207         HAVE_LONGLONG_64BIT.
40208
40209 2005-03-16  Bruno Haible  <bruno@clisp.org>
40210
40211         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
40212         HAVE_LONGLONG_64BIT.
40213
40214 2005-03-16  Bruno Haible  <bruno@clisp.org>
40215
40216         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
40217         HAVE_LONGLONG_64BIT.
40218
40219 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
40220
40221         * lib/strftime.c (my_strftime): Prepend space to format so that we can
40222         reliably distinguish strftime failure from empty output on POSIX
40223         hosts.
40224
40225 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
40226
40227         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
40228         (iconv_string): Don't guess a size-zero buffer, as that might cause
40229         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
40230         result would be 'too large', where 'too large' is (heuristically)
40231         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
40232         overflow concerns.  This will prevent some unwanted malloc failures
40233         when the inputs are very large.
40234
40235 2005-03-15  Karl Berry  <karl@gnu.org>
40236
40237         * config/srclist.txt (config.rpath): from gettext.
40238         * config/config.rpath: update.
40239
40240 2005-03-15  Bruno Haible  <bruno@clisp.org>
40241
40242         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
40243         to 'negate'.
40244
40245         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
40246         variable.
40247
40248         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
40249         results.
40250
40251 2005-03-14  Simon Josefsson  <jas@extundo.com>
40252
40253         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
40254         <fx@gnu.org>.
40255
40256 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
40257
40258         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
40259         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
40260         intprops.h.
40261         * lib/strtol.c: Likewise.
40262
40263 2005-03-14  Jim Meyering  <jim@meyering.net>
40264
40265         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
40266         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
40267         to be nonzero so that we (and caller) can detect the difference
40268         between a valid zero-length expansion and an error return, even
40269         when the underlying strftime fails before writing anything into
40270         that location.
40271
40272 2005-03-14  Bruno Haible  <bruno@clisp.org>
40273
40274         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
40275         Update from GNU gettext 0.14.3.
40276
40277 2005-03-10  Jim Meyering  <jim@meyering.net>
40278
40279         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
40280
40281 2005-03-10  Jim Meyering  <jim@meyering.net>
40282
40283         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
40284         so that this module works on systems without fchdir.
40285
40286 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
40287
40288         Factor int-properties macros into a single file, except for
40289         glibc-related files.
40290         * lib/intprops.h: New file.
40291         * lib/getloadavg.c: Include it instead of limits.h.
40292         (INT_STRLEN_BOUND): Remove.
40293         * lib/human.c: Include intprops.h.
40294         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
40295         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
40296         302/1000.
40297         * lib/inttostr.h: Include intprops.h instead of limits.h.
40298         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
40299         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
40300         for consistency with intprops.h.
40301         (time_t_is_integer, twos_complement_arithmetic): Use them.
40302         * lib/sig2str.h: Include <signal.h>, intprops.h.
40303         (INT_STRLEN_BOUND): Remove.
40304         * lib/strftime.c (TYPE_SIGNED): Remove.
40305         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
40306         * lib/strtol.c: Adjust comments to match intprops.h.
40307         * lib/userspec.c: Include intprops.h.
40308         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
40309         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
40310         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
40311         instead of rolling our own expressions.
40312         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
40313
40314         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
40315         instead of int.
40316         (my_strftime): Do not mishandle years close to INT_MAX, by doing
40317         the right thing even if adding 1900 would overflow.  Similarly
40318         for tm_mon + 1 and tm_yday + 1.
40319         Make %Y always equivalent to %C%y, and similarly for %G and %g.
40320         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
40321         (DO_SIGNED_NUMBER): New macro.
40322         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
40323
40324 2005-03-07  Bruno Haible  <bruno@clisp.org>
40325
40326         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
40327
40328 2005-03-07  Bruno Haible  <bruno@clisp.org>
40329
40330         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
40331
40332 2005-03-04  Derek R. Price  <derek@ximbiot.com>
40333
40334         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
40335         (func_import): Only replace files via --import when they have actually
40336         changed.
40337
40338 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40339
40340         * m4/mmap-anon.m4: New file.
40341         * m4/pagealign_alloc.m4: New file.
40342
40343 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40344             Bruno Haible  <bruno@clisp.org>
40345
40346         * modules/pagealign_alloc: New file.
40347         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
40348
40349 2005-03-03  Derek R. Price  <derek@ximbiot.com>
40350             Bruno Haible  <bruno@clisp.org>
40351
40352         * lib/pagealign_alloc.h: New file.
40353         * lib/pagealign_alloc.c: New file.
40354
40355 2005-03-03  Bruno Haible  <bruno@clisp.org>
40356
40357         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
40358         Use an all-permissive copyright notice, recommended by RMS.
40359
40360 2005-03-02  Bruno Haible  <bruno@clisp.org>
40361
40362         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
40363         of AIX, the replacement has to be done only after <string.h> is
40364         included, therefore not in config.h. stpncpy.h does the replacement,
40365         and stpncpy.c uses it.
40366
40367 2005-03-02  Bruno Haible  <bruno@clisp.org>
40368
40369         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
40370         stpncpy.c uses it.
40371
40372 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40373
40374         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
40375         The workaround isn't strictly needed for POSIX conformance, and
40376         it's too much of a pain to configure and maintain.  We'll ask
40377         people to fix their kernels instead.
40378         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
40379         (NANOSLEEP_BUG_WORKAROUND): Remove.
40380         (xnanosleep): Remove the workaround.
40381
40382 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40383
40384         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
40385         Reported by Derek Price.
40386         (Include): Add "timespec.h".
40387
40388         * modules/xnanosleep (Depends-on): Remove gethrxtime.
40389
40390 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40391
40392         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
40393         to detect nanosleep bug.
40394
40395 2005-03-01  Bruno Haible  <bruno@clisp.org>
40396
40397         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
40398
40399 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
40400
40401         * modules/gethrxtime: New file.
40402         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
40403         (Depends-on): Add gethrxtime.
40404         (configure.ac): Add gl_XNANOSLEEP.
40405         (Makefile.am): Remove lib_SOURCES line.
40406
40407 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
40408
40409         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
40410         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
40411
40412 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
40413
40414         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
40415         * lib/timespec.h (gettime): Return void, since it always
40416         succeeds now.  All uses changed.
40417         * lib/gettime.c (gettime) Likewise.
40418         [HAVE_NANOTIME]: Prefer nanotime.
40419         Assume gettimeofday succeeds, as POSIX requires.
40420         Assime time () succeeds, since other code already does.
40421         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
40422         (timespec_subtract): Remove.
40423         (NANOSLEEP_BUG_WORKAROUND): New constant.
40424         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
40425         things considerably.  Use it only on GNU/Linux hosts, since the
40426         workaround shouldn't be needed elsewhere.
40427
40428 2005-02-24  Bruno Haible  <bruno@clisp.org>
40429
40430         * modules/gettext (Files): Add m4/glibc2.m4.
40431
40432 2005-02-24  Bruno Haible  <bruno@clisp.org>
40433
40434         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
40435         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
40436         * m4/progtest.m4:
40437         Update from GNU gettext 0.14.2.
40438         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
40439
40440 2005-02-24  Bruno Haible  <bruno@clisp.org>
40441
40442         * lib/localcharset.c: Update from GNU gettext 0.14.2.
40443         * lib/config.charset: Update from GNU gettext 0.14.2.
40444
40445 2005-02-24  Bruno Haible  <bruno@clisp.org>
40446
40447         * lib/gettext.h: Update from GNU gettext 0.14.2.
40448
40449 2005-02-23  Simon Josefsson  <jas@extundo.com>
40450
40451         * m4/iconvme.m4: New file.
40452
40453 2005-02-23  Jim Meyering  <jim@meyering.net>
40454
40455         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
40456         change.
40457         Thanks to Bruno Haible for catching it.
40458
40459 2005-02-22  Simon Josefsson  <jas@extundo.com>
40460
40461         * modules/iconvme: New file.
40462
40463         * MODULES.html.sh: Add iconvme.
40464
40465 2005-02-22  Simon Josefsson  <jas@extundo.com>
40466
40467         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
40468
40469 2005-02-22  Simon Josefsson  <jas@extundo.com>
40470
40471         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
40472
40473 2005-02-22  Jim Meyering  <jim@meyering.net>
40474
40475         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
40476         s/ifndef/ifdef/.
40477
40478 2005-02-20  Neil Conway  <neilc@samurai.com>
40479
40480         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
40481         returned by OSX/Darwin if the specified buffer is not large
40482         enough for the hostname.
40483
40484 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40485
40486         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
40487         pass it to _help, otherwise the latter coredumps trying to
40488         dereference state.root_argp.
40489
40490 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40491
40492         * modules/chdir-long (Depends-on): Add memrchr.
40493         * modules/memrchr (Files): Add lib/memrchr.h.
40494         (Include): "memrchr.h".
40495
40496 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40497
40498         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
40499
40500 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
40501
40502         * lib/memrchr.h: New file.
40503         * lib/chdir-long.c: Include it.
40504         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
40505         Don't bother including stddef.h.
40506
40507 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
40508
40509         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
40510         inclusion.
40511         Include <sys/types.h>, for dev_t.
40512         (ME_DUMMY, ME_REMOTE): Move from here....
40513         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
40514         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
40515         Dmitry V. Levin.
40516         Include mountlist.h first, to test the interface.
40517
40518 2005-01-29  Bruno Haible  <bruno@clisp.org>
40519
40520         * lib/progname.c (program_name): Initialize.
40521         Needed when linking statically on MacOS X.
40522
40523 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40524
40525         Sync from coreutils.
40526         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
40527         (Depends-on): Add c-strtod.
40528         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
40529
40530 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40531
40532         Sync from coreutils.
40533         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
40534
40535         Remove files that are specific to coreutils.
40536         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
40537
40538 2005-01-28  Bruno Haible  <bruno@clisp.org>
40539
40540         * modules/javacomp: New file.
40541         * MODULES.html.sh (Java): Add javacomp.
40542
40543 2005-01-28  Bruno Haible  <bruno@clisp.org>
40544
40545         * m4/javacomp.m4: New file, from GNU gettext.
40546
40547 2005-01-28  Bruno Haible  <bruno@clisp.org>
40548
40549         * lib/javacomp.sh.in: New file, from GNU gettext.
40550         * lib/javacomp.h: New file, from GNU gettext.
40551         * lib/javacomp.c: New file, from GNU gettext.
40552
40553 2005-01-26  Simon Josefsson  <jas@extundo.com>
40554
40555         * lib/gai_strerror.c: Use GPL in header.
40556
40557 2005-01-26  Bruno Haible  <bruno@clisp.org>
40558
40559         * modules/javaexec: New file.
40560         * MODULES.html.sh (Java): Add javaexec.
40561
40562 2005-01-26  Bruno Haible  <bruno@clisp.org>
40563
40564         * m4/javaexec.m4: New file, from GNU gettext.
40565
40566 2005-01-26  Bruno Haible  <bruno@clisp.org>
40567
40568         * lib/javaexec.sh.in: New file, from GNU gettext.
40569         * lib/javaexec.h: New file, from GNU gettext.
40570         * lib/javaexec.c: New file, from GNU gettext.
40571
40572 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40573
40574         * modules/lchown (Depends-on): Remove lchown.h
40575
40576 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40577
40578         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
40579         must be defined if the header file was not found, in order
40580         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
40581
40582 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40583
40584         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
40585         initializers for struct pentry_state.
40586         (__argp_error): Check return value of __asprintf
40587         (__argp_failure): Translate error message
40588
40589         * lib/argp-parse.c: Removed braces around the expansion of N_()
40590
40591 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40592
40593         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
40594         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
40595         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
40596         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
40597         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
40598         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
40599         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
40600         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
40601         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
40602         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
40603         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
40604         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
40605         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
40606         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
40607         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
40608         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
40609         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
40610         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
40611         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
40612         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
40613         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
40614         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
40615         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
40616         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
40617         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
40618         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
40619         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
40620         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
40621         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
40622         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
40623         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
40624         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
40625         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
40626         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
40627         xstrtol.m4, xstrtoumax.m4, yesno.m4:
40628         Use an all-permissive copyright notice, recommended by RMS.
40629
40630 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
40631
40632         * modules/chdir-long (Depends-on): Remove mempcpy.
40633
40634 2005-01-21  Jim Meyering  <jim@meyering.net>
40635
40636         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
40637         same value as for Solaris 9.
40638
40639         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
40640         component length.  This included changing the parameter to be
40641         of type `char *' rather than `char const *'.
40642         * lib/chdir-long.h (chdir_long): Update prototype.
40643
40644         * lib/openat.c (fdopendir, fstatat): New functions.
40645         * lib/openat.h: Include headers required for use of DIR and struct
40646         stat.
40647         [AT_SYMLINK_NOFOLLOW]: Define.
40648         (fdopendir, fstatat): Add prototypes.
40649
40650 2005-01-21  Bruno Haible  <bruno@clisp.org>
40651
40652         * modules/classpath: New file.
40653         * MODULES.html.sh (Java): Add classpath.
40654
40655 2005-01-21  Bruno Haible  <bruno@clisp.org>
40656
40657         * lib/classpath.h: New file, from GNU gettext.
40658         * lib/classpath.c: New file, from GNU gettext.
40659
40660 2005-01-20  Simon Josefsson  <jas@extundo.com>
40661
40662         * modules/version-etc-fsf: New file.
40663
40664 2005-01-20  Simon Josefsson  <jas@extundo.com>
40665
40666         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
40667         * lib/version-etc.c: Remove version_etc_copyright.
40668         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
40669         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
40670
40671 2005-01-20  Simon Josefsson  <jas@extundo.com>
40672
40673         * lib/base64.h (isbase64): Add.
40674
40675         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
40676         using a unsigned prototype, don't inline.
40677         (base64_decode): Use it.
40678
40679 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40680
40681         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
40682         it.
40683
40684 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40685
40686         * lib/save-cwd.c (save_cwd): Remove code to support the case
40687         where fchdir is missing or flaky.
40688
40689 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40690
40691         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
40692
40693 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
40694
40695         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
40696         AC_LIBSOURCES now does this.
40697         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
40698         with new ullong_max module.
40699
40700 2005-01-19  Bruno Haible  <bruno@clisp.org>
40701
40702         * modules/sh-quote: New file.
40703         * MODULES.html.sh (Executing programs): Add sh-quote.
40704
40705 2005-01-19  Bruno Haible  <bruno@clisp.org>
40706
40707         * lib/sh-quote.h: New file, from GNU gettext.
40708         * lib/sh-quote.c: New file, from GNU gettext.
40709
40710 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40711
40712         Merge from coreutils.
40713         * m4/ullong_max.m4: New file.
40714         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
40715         (gl_MACROS): Assume localeconv exists.
40716
40717 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40718
40719         Merge changes from coreutils, as described below in several
40720         changelogs dated today.
40721
40722         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
40723         (O_DIRECTORY): Remove; not needed here, since "." must be
40724         a directory.  All uses removed.
40725         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
40726         universal on Suns, and we also need to test for IRIX.
40727         Revamp code to use 'if' rather than '#if'.
40728         Avoid unnecessary comparison of cwd->desc to 0.
40729
40730         * lib/utimens.c (futimens): Robustify the previous patch, by checking
40731         for known valid error numbers rather than observed invalid ones.
40732
40733 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
40734
40735         * modules/ullong_max: New file.
40736
40737         * modules/chdir-long, modules/openat: New files.
40738         * modules/save-cwd (Depends-on): Depend on chdir-long.
40739         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
40740
40741 2005-01-18  Jim Meyering  <jim@meyering.net>
40742
40743         Merge from coreutils.
40744         * m4/chdir-long.m4, m4/openat.m4: New files.
40745         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
40746         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
40747         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
40748         is sane and DOES follow symlinks.  Besides, testing 20 different
40749         systems found no broken chown implementations.
40750         Prompted by a change in rsync's copy of this macro.
40751         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
40752
40753         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
40754
40755         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
40756         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
40757         NULL-means-set-to-current-time semantics.
40758         Remove temporary file immediately, rather than waiting
40759         for configure's at-exit trap code to do it.
40760
40761 2005-01-18  Jim Meyering  <jim@meyering.net>
40762
40763         * lib/version-etc.c (version_etc_copyright): Update copyright date.
40764
40765         * lib/utimens.c (futimens): Account for the fact that futimes
40766         can also fail with errno == ENOSYS or errno == ENOENT.
40767         Patch from Dmitry V. Levin.
40768
40769         Change the name of the robust chdir function from chdir to chdir_long.
40770         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
40771         (restore_cwd): Use chdir_long, not chdir.
40772         * lib/chdir-long.c: Renamed from chdir.c.
40773         * lib/chdir-long.h: Renamed from chdir.h.
40774         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
40775         Hurd.
40776
40777 2005-01-18  Bruno Haible  <bruno@clisp.org>
40778
40779         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
40780         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
40781         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
40782         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
40783         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
40784         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
40785         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
40786         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
40787         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
40788         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
40789         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
40790         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
40791         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
40792         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
40793         Use an all-permissive copyright notice, recommended by RMS.
40794
40795 2005-01-18  Bob Proulx  <bob@proulx.com>
40796
40797         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
40798         simplify offsetof() macro construct to avoid compile failure with
40799         native HP-UX 11.0 ANSI C compiler.
40800
40801 2005-01-17  Bruno Haible  <bruno@clisp.org>
40802
40803         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
40804         redundant because stpncpy.m4 takes care of it.
40805
40806 2005-01-17  Bruno Haible  <bruno@clisp.org>
40807
40808         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
40809
40810 2005-01-17  Bruno Haible  <bruno@clisp.org>
40811
40812         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
40813         used.
40814
40815 2005-01-17  Bruno Haible  <bruno@clisp.org>
40816
40817         * lib/fwriteerror.h (fwriteerror): Change specification to include
40818         fclose.
40819         * lib/fwriteerror.c: Include <stdbool.h>.
40820         (fwriteerror): At the end, close the file stream. Record whether
40821         stdout was already closed.
40822
40823 2005-01-17  Bruno Haible  <bruno@clisp.org>
40824
40825         * lib/execute.c (environ): Declare if needed.
40826         * lib/pipe.c (environ): Likewise.
40827         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
40828
40829 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40830
40831         * modules/argp: Depend on vsnprintf
40832
40833 2005-01-10  Jim Meyering  <jim@meyering.net>
40834
40835         * modules/closeout (Depends-on): Add atexit.
40836
40837 2005-01-06  Bruno Haible  <bruno@clisp.org>
40838
40839         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
40840
40841 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
40842
40843         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
40844         definitions to be after all include files, to avoid collisions.
40845         Problem reported by Bob Proulx.
40846
40847 2005-01-04  Jim Meyering  <jim@meyering.net>
40848
40849         Changes imported from coreutils.
40850         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
40851         as the mkstemp template, use a temporary directory and an
40852         8.3-friendly template to avoid trouble on systems like DJGPP.
40853         Reported by Juan M. Guerrero via Stepan Kasal.
40854         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
40855         close. Remove the temporary directory right away, rather than waiting
40856         for configure's at-exit trap code to do it.
40857         Suggestion from Stepan Kasal.
40858
40859 2005-01-01  Simon Josefsson  <jas@extundo.com>
40860
40861         * gnulib-tool: Print #include directives when --import'ing.
40862
40863 2004-12-28  Simon Josefsson  <jas@extundo.com>
40864
40865         * tests/test-base64.c: Include required header files.  Remove
40866         unused variables.
40867
40868 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40869
40870         * modules/error (Depends-on): Remove gettext.
40871
40872 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
40873
40874         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
40875         not needed.  This removes a dependency on the gettext module.
40876         [defined _LIBC]: Do not include <libintl.h>; not needed.
40877
40878 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
40879
40880         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
40881         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
40882
40883 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
40884
40885         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
40886         HAVE_DECL_STRTOLD.
40887
40888 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40889
40890         * modules/getdate (Depends-on): Remove alloca-opt.
40891
40892 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40893
40894         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
40895
40896 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
40897
40898         * lib/argp-parse.c: Include <stddef.h>.
40899         (alignof, alignto): New macros.
40900         (parser_init): Don't assume that void * is aligned sufficiently
40901         for struct option.
40902
40903         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
40904         need to extend the stack.
40905         (YYINITDEPTH): New macro, so that the initial stack isn't overly
40906         large.
40907
40908 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
40909
40910         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
40911
40912 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
40913
40914         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
40915         (2004-10-24) change.  Apparently this was a false alarm.
40916
40917         * modules/getdate: Depend on alloca-opt, not alloca.
40918
40919 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
40920
40921         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
40922         Remove now-obsolete comment about AIX.
40923         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
40924         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
40925         (YYMAXDEPTH): New macro.
40926
40927 2004-12-18  Simon Josefsson  <jas@extundo.com>
40928
40929         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
40930
40931 2004-12-18  Bruno Haible  <bruno@clisp.org>
40932
40933         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
40934
40935 2004-12-18  Bruno Haible  <bruno@clisp.org>
40936
40937         * lib/fatal-signal.c (fatal_signals): Make non-const.
40938         (init_fatal_signals): New function.
40939         (uninstall_handlers, install_handlers): Ignore signals that were set to
40940         SIG_IGN.
40941         (at_fatal_signal): Call init_fatal_signals.
40942         (init_fatal_signal_set): Likewise. Ignore signals that were set to
40943         SIG_IGN.
40944         Reported by Paul Eggert.
40945
40946 2004-12-18  Bruno Haible  <bruno@clisp.org>
40947
40948         * doc/alloca.texi: New file.
40949         * doc/alloca-opt.texi: New file.
40950
40951 2004-12-17  Jim Meyering  <jim@meyering.net>
40952
40953         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
40954         Otherwise, install-sh could exit with improper exit status when
40955         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
40956
40957 2004-12-16  Simon Josefsson  <jas@extundo.com>
40958
40959         * tests/test-base64.c: Add license.
40960
40961 2004-12-15  Stepan Kasal  <address@hidden>
40962
40963         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
40964
40965 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
40966
40967         * modules/getcwd (Files): Add m4/d-ino.m4.
40968         Suggested by Mark D. Baushke.
40969
40970 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
40971
40972         * lib/getdate.y (textint): New member "negative".
40973         (time_zone_hhmm): New function.
40974         Expect 14 shift-reduce conflicts, not 13.
40975         (o_colon_minutes): New rule.
40976         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
40977         (yylex): Set the "negative" member of signed numbers.
40978
40979 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
40980
40981         * doc/getdate.texi (Time of day items, Time zone items):
40982         Describe new formats +00:00, UTC+00:00.
40983
40984 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
40985
40986         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
40987         spurious "-l"s.  Problem reported by Stepan Kasal.
40988
40989 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
40990
40991         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
40992         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
40993
40994 2004-12-04  Simon Josefsson  <jas@extundo.com>
40995
40996         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
40997         Vandoorselaere <yoann@prelude-ids.org>.
40998
40999 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41000
41001         Changes imported from coreutils.
41002         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
41003         exist.
41004         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
41005
41006 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41007
41008         Changes imported from coreutils.
41009         * lib/hard-locale.c: Assume <locale.h> exists.
41010         Include "strdup.h".
41011         (GLIBC_VERSION): New macro.
41012         (hard_locale): Assume setlocale exists.
41013         Rewrite to avoid #ifdef.
41014         Use strdup rather than malloc + strcpy.
41015         * lib/human.c: Assume <locale.h> exists.
41016         (human_readable): Assume localeconv exists.
41017
41018 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
41019
41020         * modules/hard-locale (Depends-on): Add strdup.
41021
41022 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
41023
41024         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
41025         convert T2, not T.  (Imported from libc.)
41026
41027 2004-11-30  Simon Josefsson  <jas@extundo.com>
41028
41029         * modules/restrict (License): Change to LGPL.
41030
41031 2004-11-30  Simon Josefsson  <jas@extundo.com>
41032
41033         * m4/restrict.m4: Add copyright and copying conditions.
41034
41035 2004-11-30  Simon Josefsson  <jas@extundo.com>
41036
41037         * m4/base64.m4: New file.
41038
41039 2004-11-30  Simon Josefsson  <jas@extundo.com>
41040
41041         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
41042         base64.
41043
41044         * tests/test-base64.c: New file.
41045
41046         * modules/base64: New file.
41047
41048 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
41049
41050         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
41051         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
41052
41053         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
41054
41055 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
41056
41057         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
41058         (__getcwd.c): Don't restore errno; glibc doesn't.
41059         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
41060         first, falling back to our code only if its results look suspicious.
41061         Ensure that the resulting buffer is only as large as necessary.
41062
41063         * lib/readutmp.c: Include readutmp.h first.
41064         Include <errno.h>, since readutmp.h no longer does that.
41065         * lib/readutmp.h: Don't include <errno.h>,
41066         <sys/param.h>, <time.h>; not needed to establish interface.
41067         (errno): Remove decl.
41068         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
41069         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
41070         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
41071
41072 2004-11-28  Simon Josefsson  <jas@extundo.com>
41073
41074         * lib/base64.h, base64.c: New file.
41075
41076 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
41077
41078         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
41079
41080 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
41081
41082         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
41083         (Depends-on): Remove pathmax, same.  Add mempcpy.
41084         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
41085         (Makefile.am): Append getcwd.h to lib_SOURCES.
41086         (Include): Add getcwd.h.
41087         (Maintainer): Change from Jim Meyering to "all, glibc",
41088         since getdate now uses intended-for-glibc code.
41089         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
41090         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
41091
41092 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
41093
41094         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
41095         HP's ANSI C compiler.
41096         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
41097         Declaring int functions causes warnings on some modern systems and
41098         shouldn't be needed to compile on ancient ones.
41099         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
41100         defined.
41101
41102         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
41103         with the following changes.
41104         (__set_errno): Parenthesize properly.
41105         Include <stdbool.h>.
41106         (MIN, MAX, MATCHING_INO): New macros.
41107         (__getcwd): Define with prototype, not K&R form.
41108         Use heuristics to allocate default buffer on stack if possible.
41109         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
41110         behavior, and to avoid the PATH_MAX limit when computing
41111         ../../../../...
41112         Use MATCHING_INO to compare inode number to file.
41113         Check for arithmetic overflow in size calculations.
41114         Fix bug in reallocation of dot array that caused getcwd to fail
41115         on directories nested deeper than 75.
41116         Be more careful about saving errno on error.
41117         Do not use realloc; use only free+malloc, as this is a bit
41118         more flexible and avoids a needless copy operation.
41119         Do not inspect st_dev and st_ino for symbolic links; POSIX
41120         doesn't specify the latter.
41121         Check for closedir errors.
41122         Avoid needless casts.
41123         Use "#ifdef weak_alias" around weak_alias, to be like other
41124         glibc code.
41125         The following changes to getcwd.c have effect only when used in
41126         gnulib; they have no effect inside glibc proper.
41127         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
41128         as alloca isn't used.
41129         (alloca, __alloca): Likewise.
41130         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
41131         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
41132         unconditionally, as gnulib assumes C89 or better.
41133         Do not include <sys/param.h>.
41134         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
41135         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
41136         better.
41137         (NULL) [!defined NULL]: Remove; we assume C89 or better.
41138         Include <dirent.h> in a way that is compatible with modern Autoconf.
41139         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
41140         New macros, if not already defined.
41141         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
41142         Use "_LIBC", not "defined _LIBC", for consistency.
41143         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
41144         a mempcpy module.
41145         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
41146         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
41147         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
41148         credit only to Jim Meyering and adjust the copyright dates.
41149         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
41150         <stdlib.h>, <unistd.h>, "pathmax.h".
41151         Instead, include "xgetcwd.h" (first) and "getcwd.h".
41152         (INITIAL_BUFFER_SIZE): Remove.
41153         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
41154
41155 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
41156
41157         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
41158         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
41159         Use the _ONCE methods, for efficiency.
41160         Check for fcntl.h.  In test program, include <errno.h>
41161         and <fcntl.h> if available.  Remove old K&R cruft from
41162         test program.  Check for common errors in GNU/Linux,
41163         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
41164         don't do AC_LIBOBJ, as that's getcwd.m4's job.
41165         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
41166         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
41167         name accordingly.
41168         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
41169         accommodate new getcwd.c.
41170         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
41171         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
41172         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
41173         that's all we need now.
41174
41175 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41176
41177         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
41178         argp-parse.c depends on getopt internals, that means we should
41179         always use our getopt, to be on the safe side.
41180         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
41181         order not to spoil the result of an eventual previous invocation
41182         of gl_GETOPT_SUBSTITUTE.
41183
41184 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41185
41186         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
41187         redefinition warnings. To avoid them, include the defines
41188         in `#if !defined __need_getopt ... #endif'. The only place
41189         where __getopt_argv_const is used is in definitions
41190         of getopt_long and getopt_long_only below, which are as well
41191         protected by `#ifndef __need_getopt'.
41192         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
41193         __need_getopt after including <stdio.h> and <unistd.h> These
41194         headers might have defined it.
41195
41196 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
41197
41198         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
41199
41200 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
41201
41202         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
41203         (futimens): New function, which uses futimes if available.
41204         (futimens, utimens): Support timespec==NULL, with same semantics
41205         as utime and utimens.
41206         * lib/utimens.h (futimens): New decl.
41207
41208 2004-11-23  Jim Meyering  <jim@meyering.net>
41209
41210         * lib/getopt_.h: Remove trailing blanks.
41211
41212 2004-11-23  Jim Meyering  <jim@meyering.net>
41213
41214         * lib/__fpending.c: Add comment.
41215
41216 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
41217
41218         * modules/canonicalize (Depends-on): Add xreadlink.
41219         Problem reported by James Youngman.
41220
41221 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
41222
41223         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
41224         New macros.
41225         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
41226         optopt): Use them instead of invoking ## directly; otherwise, the
41227         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
41228
41229 2004-11-19  Bruno Haible  <bruno@clisp.org>
41230
41231         * lib/strtok_r.c: Move comments from here...
41232         * lib/strtok_r.h: ... to here.
41233
41234 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41235
41236         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
41237         implementations that mishandle size_t overflow.
41238
41239 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
41240
41241         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
41242         might fail.  Problem reported by Yoann Vandoorselaere.
41243         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
41244         implementations that mishandle size_t overflow.
41245
41246 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41247
41248         * modules/canon-host (Depends-on): Add strdup.
41249
41250 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41251
41252         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
41253
41254 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41255
41256         * lib/canon-host.c: Include "strdup.h".
41257         (canon_host): Use getaddrinfo if available, so that IPv6 works.
41258         Use strdup instead of malloc/strcpy to duplicate strings.
41259
41260         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
41261         (human_space_before_unit): New constant.
41262         * lib/human.c (human_readable): Support it.
41263
41264         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
41265         (xgetcwd): Set errno correctly when failing.
41266         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
41267         the failure is actually due to a PATH_MAX problem.
41268
41269         Further getopt changes to make it more likely that glibc will
41270         buy the changes back.
41271         * lib/getopt.c (POSIXLY_CORRECT): New constant.
41272         (getopt): Use it, so to preserve glibc semantic
41273         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
41274         when compiling for libc.
41275         * lib/getopt_.h (__getopt_argv_const): Bring it back.
41276         (getopt_long, getopt_long_only): Use it.
41277
41278         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
41279         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
41280         (getopt): Argv is now char * const *, as per standard.
41281         (_getopt_internal_r, _getopt_internal): Argv is now char **,
41282         not char *__getopt_argv_const *.
41283         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
41284         _getopt_long_only_r): Likewise.
41285         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
41286         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
41287         _getopt_long_r, _getopt_long_only_r): Likewise.
41288         * lib/getopt_.h (__getopt_argv_const): Remove.
41289         (getopt): Argv is now char * const *, as per standard.
41290
41291         * lib/getdate.y (tORDINAL): New token.
41292         (day, relunit): Allow it for relative times.
41293         (relative_time_table): Use tORDINAL for ordinals.
41294
41295 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
41296
41297         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
41298         Document that "second" isn't allowed as an ordinal number.
41299
41300 2004-11-16  Jim Meyering  <jim@meyering.net>
41301
41302         * modules/closeout (Depends-on): Add fpending.
41303
41304 2004-11-15  Jim Meyering  <jim@meyering.net>
41305
41306         * lib/closeout.c: Include "__fpending.h" once again.
41307         Include <stdbool.h>.
41308         (close_stdout): Don't fail just because stdout was closed initially,
41309         since some programs don't write to stdout in the normal course of
41310         operation (other than --version and --help), and we don't want this
41311         function to make e.g. `touch file >&-' fail.
41312         But do fail if it was closed and someone has tried to write to it.
41313         E.g., `printf foo >&-' must fail.
41314
41315 2004-11-13  Jim Meyering  <jim@meyering.net>
41316
41317         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
41318
41319 2004-11-12  Simon Josefsson  <jas@extundo.com>
41320
41321         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
41322         small doc fix is still pending.
41323
41324 2004-11-11  Simon Josefsson  <jas@extundo.com>
41325
41326         * modules/strtok_r: New file.
41327
41328         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41329         strtok_r.
41330
41331 2004-11-11  Simon Josefsson  <jas@extundo.com>
41332
41333         * m4/strtok_r.m4: New file.
41334
41335         * m4/getopt.m4: Replace opterr.
41336
41337 2004-11-11  Simon Josefsson  <jas@extundo.com>
41338
41339         * lib/strtok_r.h, strtok_r.c: New file.
41340
41341 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
41342
41343         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
41344         of replacing opterr, getopt, etc.  This should handle the
41345         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
41346
41347 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
41348
41349         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
41350         we can stop lying to compilers about the constness of argv when we
41351         are compiled outside glibc.
41352         (getopt, getopt_long, getopt_long_only): Use it.
41353         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
41354         _getopt_internal, getopt): Likewise.
41355         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
41356         _getopt_long_only_r): Likewise.
41357         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
41358         _getopt_long_r, _getopt_long_only_r): Likewise.
41359
41360         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
41361         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
41362         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
41363         the other external symbols.
41364         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
41365         declaration, since the above renaming now works around collisions.
41366
41367 2004-11-11  Jim Meyering  <jim@meyering.net>
41368
41369         * lib/linebreak.c: Remove trailing blanks.
41370         * lib/alloca_.h: Likewise.
41371         * lib/acosl.c: Likewise.
41372         * lib/euidaccess.c: Likewise.
41373         * lib/allocsa.h: Likewise.
41374
41375 2004-11-10  Simon Josefsson  <jas@extundo.com>
41376
41377         * m4/getaddrinfo.m4: New file.
41378
41379 2004-11-10  Simon Josefsson  <jas@extundo.com>
41380
41381         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
41382
41383 2004-11-10  Simon Josefsson  <jas@extundo.com>
41384
41385         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
41386         getaddrinfo.
41387
41388         * modules/getaddrinfo: New file.
41389
41390 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41391
41392         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
41393
41394 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41395
41396         * lib/mktime.c (SHR): New macro, which is a portable
41397         substitute for >> that should work even on Crays.
41398         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
41399         Problem reported by Mark D. Baushke in
41400         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
41401         * lib/getdate.y (SHR): Likewise.
41402         (tm_diff): Use it.
41403         * lib/strftime.c (SHR): Likewise.
41404         (tm_diff): Use it.
41405         * lib/quotearg.c (struct quoting_options): Use unsigned int for
41406         quote_these_too, so that right shifts are well defined.  All uses
41407         changed.
41408
41409 2004-11-10  Jim Meyering  <jim@meyering.net>
41410
41411         Ensure that no close failure goes unreported.
41412         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
41413         return early when it seems there's nothing to flush.
41414         Don't include __fpending.h.
41415
41416 2004-11-10  Jim Meyering  <jim@meyering.net>
41417
41418         * modules/closeout (Depends-on): Remove fpending.
41419
41420 2004-11-10  Jim Meyering  <jim@meyering.net>
41421
41422         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
41423
41424 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41425
41426         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
41427         gl_FUNC_STRFTIME.
41428         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
41429         and AC_REQUIRE when possible, to avoid duplicate checks.
41430         Check for <wchar.h>.
41431
41432 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
41433
41434         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
41435
41436 2004-11-09  Bruno Haible  <bruno@clisp.org>
41437
41438         * m4/sockpfaf.m4: New file.
41439
41440 2004-11-05  Bruno Haible  <bruno@clisp.org>
41441
41442         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
41443         Reported by Mark D. Baushke <mdb@cvshome.org>.
41444
41445 2004-11-04  Bruno Haible  <bruno@clisp.org>
41446
41447         2004-09-11  Bruno Haible  <bruno@clisp.org>
41448                 * allocsa.valgrind: New file.
41449         2004-02-06  Bruno Haible  <bruno@clisp.org>
41450                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
41451                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
41452                 Reported by Christopher Seip <chris.seip@hp.com>.
41453
41454 2004-11-04  Bruno Haible  <bruno@clisp.org>
41455
41456         * modules/allocsa (Files): Add lib/allocsa.valgrind.
41457         (Makefile.am): Distribute it.
41458
41459 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
41460
41461         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
41462         with errno == ERANGE if the buffer is too small.
41463         Problem reported by Mark D. Baushke.
41464
41465 2004-11-03  Albert Chin  <china@thewrittenword.com>
41466             Paul Eggert  <eggert@cs.ucla.edu>
41467
41468         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
41469         equivalent, substitute $ac_type for equivalent type rather than
41470         blindly using uint32_t *always* which won't work if uint32_t is not
41471         available.  Define _UINT32_T to work around typedef of uint32_t if
41472         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
41473         2.5.1.
41474
41475 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41476
41477         * m4/jm-macros.m4: Sync from coreutils.
41478         (gl_MACROS): Check for mbrlen, for pathchk.
41479         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
41480
41481 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41482
41483         * lib/xreadlink.c (MAXSIZE): New macro.
41484         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
41485         size does not exceed MAXSIZE.  Avoid cast.
41486         As suggested by Mark D. Baushke in
41487         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
41488         if readlink fails with buffer size just under MAXSIZE, try again
41489         with MAXSIZE.
41490
41491 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
41492
41493         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
41494
41495 2004-11-02  Derek R. Price  <derek@ximbiot.com>
41496         and  Paul Eggert  <eggert@cs.ucla.edu>
41497
41498         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
41499         (get_date): Overparenthesize to avoid GCC warning.
41500
41501 2004-11-02  Bruno Haible  <bruno@clisp.org>
41502
41503         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
41504         returns void.
41505
41506 2004-11-02  Bruno Haible  <bruno@clisp.org>
41507
41508         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
41509         function returns void.
41510
41511 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
41512
41513         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
41514         fflush_unlocked, flockfile, funlockfile, funlockfile,
41515         fputs_unlocked, putc_unlocked.
41516
41517 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
41518
41519         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
41520         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
41521         already declared.
41522
41523 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41524
41525         * modules/getdate (Files): Add doc/getdate.texi.
41526         (Depends-on): Add setenv, xalloc.
41527
41528 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41529
41530         * lib/getdate.y: Add support for TZ="foo" within a date string.
41531         Fix some bugs near time_t boundaries.  Reject dates with
41532         out-of-range components, e.g., "Sept 31".
41533         Include <stdlib.h>, "setenv.h", "xalloc.h".
41534         (ISDIGIT_LOCALE): Remove; unused.
41535         Note that the TZ and time functions used here are not reentrant.
41536         (mktime_ok, get_tz): New functions.
41537         (TZBUFSIZE): New constant.
41538         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
41539         This requires that we sometimes generate our own TZ="XXX..." setting.
41540
41541 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41542
41543         * doc/getdate.texi: New file, from coreutils with modifications for
41544         the new TZ parsing.
41545
41546 2004-10-27  Derek R. Price  <derek@ximbiot.com>
41547
41548         * lib/mktime.c (not_equal_tm): Remove redundant check.
41549
41550 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41551
41552         * modules/regex (lib_SOURCES): Add regex.c.
41553         Reported by James Youngman in
41554         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
41555
41556 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
41557
41558         * lib/getdate.y: Use Bison 1.875 features, and some minor
41559         code cleanups.  This change does not affect semantics.
41560         Don't include <stdlib.h>; no longer needed.
41561         Don't include unlocked-io.h; only the "#if TEST" code uses
41562         stdio, and performance isn't crucial there.
41563         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
41564         Bison 1.875 features as described below.
41565         All uses of "PC." replaced by "pc->".
41566         (YYSTYPE): Add a forward declaration.
41567         (yylex, yyerror): Use full prototypes in forward decls.
41568         Use "%pure-parser" rather than obsolescent "%pure_parser".
41569         Use %parse-param and %lex-param instead of obsolescent
41570         YYPARSE_PARAM and YYLEX_PARAM.
41571         (meridian_table, month_and_day_table, time_units_table,
41572         relative_time_table, time_zone_table, military_table,
41573         lookup_zone, lookup_word, get_date):
41574         Use NULL instead of 0 where appropriate.
41575         (to_hour): Avoid abort (), to avoid a dependency on
41576         stdlib.h.
41577         (yyerror, yylex): Now accepts parser_control * arg.
41578         (main) [TEST]: Use '\0' rather than 0 for char.
41579
41580 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
41581
41582         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
41583
41584 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
41585
41586         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
41587         It's now the caller's responsibility to handle the case where
41588         !HAVE_GETPAGESIZE && !defined getpagesize.
41589
41590         * lib/mktime.c (leapyear): Arg is long int, not int.
41591
41592 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
41593
41594         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
41595
41596 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
41597
41598         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
41599         missing.  Problem reported by James Youngman.
41600
41601 2004-10-16  Simon Josefsson  <jas@extundo.com>
41602
41603         * gnulib-tool: Fix comments.  Fix parse problem.
41604         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
41605
41606 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
41607
41608         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
41609         implementation of getopt_long.  Problem reported by Alexander Taler in:
41610         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
41611
41612 2004-10-15  Bruno Haible  <bruno@clisp.org>
41613
41614         * gnulib-tool: Untabify. Initialize supplied_libname.
41615         (func_usage): More homogenous output.
41616         (func_modules_transitive_closure, func_modules_to_filelist,
41617         func_emit_lib_Makefile_am): New functions.
41618         (func_import): New function, extracted from big case statement. Use
41619         func_get_license, func_modules_transitive_closure,
41620         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
41621         opt_lgpl. Don't use test -a, as it's not portable.
41622         (func_create_testdir): Use func_modules_transitive_closure,
41623         func_modules_to_filelist, func_emit_lib_Makefile_am.
41624
41625 2004-10-15  Bruno Haible  <bruno@clisp.org>
41626
41627         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
41628
41629 2004-10-15  Bruno Haible  <bruno@clisp.org>
41630
41631         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
41632         the portions belonging to each module.
41633         Suggested by Derek Robert Price <derek@ximbiot.com>.
41634
41635 2004-10-12  Simon Josefsson  <jas@extundo.com>
41636
41637         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
41638         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
41639         to real functions.
41640
41641 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41642
41643         * modules/vsnprintf: New file.
41644
41645 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41646
41647         * m4/vsnprintf.m4: New file.
41648
41649 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41650
41651         * lib/vsnprintf.h: New file.
41652         * lib/vsnprintf.c: New file.
41653
41654 2004-10-11  Bruno Haible  <bruno@clisp.org>
41655
41656         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
41657         vsnprintf.
41658
41659 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
41660
41661         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
41662
41663 2004-10-07  Bruno Haible  <bruno@clisp.org>
41664
41665         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
41666         fits into the provided buffer.
41667
41668 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
41669
41670         * lib/diacrit.c, diacrit.h: Add GPL notice.
41671
41672         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
41673         notice.
41674         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
41675         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
41676         This avoids a potential constant-folding bug.
41677
41678 2004-10-05  Bruno Haible  <bruno@clisp.org>
41679
41680         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
41681         for the declaration of strsep.
41682
41683 2004-10-05  Bruno Haible  <bruno@clisp.org>
41684
41685         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
41686
41687 2004-10-04  Simon Josefsson  <jas@extundo.com>
41688
41689         * modules/memmem: New file.
41690         * tests/test-memmem.c: New file.
41691         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
41692
41693 2004-10-04  Simon Josefsson  <jas@extundo.com>
41694
41695         * m4/memmem.m4: New file.
41696
41697 2004-10-04  Simon Josefsson  <jas@extundo.com>
41698
41699         * lib/memmem.h: New file.
41700         * lib/memmem.c: New file, taken from glibc.
41701
41702 2004-10-04  Simon Josefsson  <jas@extundo.com>
41703
41704         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
41705         '#ifdef USE_UNLOCKED_IO'.
41706
41707 2004-10-04  Simon Josefsson  <jas@extundo.com>
41708
41709         * config/srclist.txt: Add memmem from glibc.
41710
41711 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41712
41713         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
41714
41715         * modules/argmatch, modules/argp, modules/closeout, modules/error,
41716         modules/exclude, modules/getdate, modules/getline,
41717         modules/getndelim2, modules/getpass, modules/getpass-gnu,
41718         modules/getusershell, modules/linebuffer, modules/md5,
41719         modules/mountlist, modules/posixtm, modules/readtokens,
41720         modules/readutmp, modules/regex, modules/sha1,
41721         modules/version-etc, modules/yesno:
41722         Remove dependency on unlocked-io.
41723
41724 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41725
41726         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
41727
41728         * m4/unlocked-io.m4: Add copyright notice.
41729         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
41730
41731 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41732
41733         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
41734         * lib/xmalloc.c (xmemdup): Likewise.
41735         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
41736         XFREE): Remove these long-obsolescent macros.
41737         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
41738         * lib/xstrdup.c: Remove.
41739
41740         * lib/regex.c (re_comp): Cast gettext return value to char *,
41741         Problem reported by Martin Neitzel via Mark D. Baushke.
41742
41743 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
41744
41745         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
41746         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
41747         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
41748         regex.c, sha1.c, version-etc.c, yesno.c:
41749         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
41750         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
41751         the includer's responsibility.
41752
41753         Sync from coreutils.
41754
41755         * lib/modechange.c (mode_compile): Don't decrement a pointer that
41756         points to the start of a string, as the C Standard says the
41757         resulting behavior is undefined.
41758
41759         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
41760         simple -> simple_backups, numbered_existing ->
41761         numbered_existing_backups, numbered -> numbered_backups
41762         to avoid shadowing problems.  All uses changed.
41763         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
41764         * lib/backupfile.c (check_extension, numbered_backup):
41765         Rename locals to avoid shadowing 'basename'.
41766         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
41767         once.
41768
41769         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
41770         * lib/.cvsignore: Add getopt.h.
41771
41772 2004-10-04  Bruno Haible  <bruno@clisp.org>
41773
41774         * modules/README: New file.
41775         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
41776         not a module.
41777
41778 2004-10-02  Jim Meyering  <jim@meyering.net>
41779
41780         * lib/dirfd.h, getpagesize.h: Add copyright notice.
41781
41782 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41783
41784         * modules/strsep: New file.
41785
41786 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41787
41788         * m4/strsep.m4: New file.
41789
41790 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
41791
41792         * lib/strsep.h: New file.
41793         * lib/strsep.c: New file.
41794
41795 2004-10-01  Simon Josefsson  <jas@extundo.com>
41796
41797         * lib/snprintf.c (snprintf): Handle size==0.
41798
41799 2004-10-01  Simon Josefsson  <jas@extundo.com>
41800             Bruno Haible  <bruno@clisp.org>
41801
41802         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
41803         (snprintf): Declare 'args'.
41804
41805 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
41806
41807         * lib/snprintf.c: Remove comments as to why each header is needed.
41808
41809 2004-10-01  Bruno Haible  <bruno@clisp.org>
41810
41811         * MODULES.html.sh: Add strsep.
41812
41813 2004-09-30  Simon Josefsson  <jas@extundo.com>
41814
41815         * modules/snprintf: New file.
41816
41817 2004-09-30  Simon Josefsson  <jas@extundo.com>
41818
41819         * m4/snprintf.m4: New file.
41820
41821 2004-09-30  Simon Josefsson  <jas@extundo.com>
41822
41823         * lib/snprintf.h, lib/snprintf.c: New files.
41824
41825 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
41826
41827         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
41828         (hol_entry_help): Never translate an empty string.
41829         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
41830         * lib/argp.h (OPTION_NO_TRANS): New option.
41831
41832 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
41833
41834         * modules/argp (Maintainer): Replace Simon Josefsson
41835         by Sergey Poznyakoff.
41836
41837 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
41838
41839         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
41840         changes merged back into glibc.
41841
41842 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
41843
41844         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
41845
41846 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
41847
41848         * lib/xvasprintf.c: Include xalloc.h.
41849         (xvasprintf): Use xalloc_die, not xmalloc_die.
41850
41851 2004-09-29  Bruno Haible  <bruno@clisp.org>
41852
41853         * modules/alloca-opt: New file, derived from modules/alloca.
41854         * modules/allocsa: Depend on alloca-opt instead of alloca.
41855         * modules/setenv: Likewise.
41856         * modules/vasnprintf: Likewise.
41857         * MODULES.html.sh: Add alloca-opt.
41858
41859 2004-09-28  Simon Josefsson  <jas@extundo.com>
41860
41861         * gnulib-tool: New parameter --lgpl, to asseert that modules are
41862         LGPL, and to replace license template from GPL to LGPL.
41863
41864 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
41865
41866         * modules/dummy: Change license to LGPL.
41867
41868 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
41869
41870         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
41871
41872 2004-09-24  Simon Josefsson  <jas@extundo.com>
41873
41874         * modules/minmax (License): Change from GPL to LGPL.
41875
41876 2004-09-23  Simon Josefsson  <jas@extundo.com>
41877
41878         * gnulib-tool (--import): Typo.
41879
41880 2004-09-23  Simon Josefsson  <jas@extundo.com>
41881
41882         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
41883
41884 2004-09-22  Bruno Haible  <bruno@clisp.org>
41885
41886         * modules/*: Add 'License' field.
41887         * gnulib-tool: Accept --extract-license option.
41888         (func_get_license): New function.
41889
41890 2004-09-21  Bruno Haible  <bruno@clisp.org>
41891
41892         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
41893         Reported by Simon Josefsson.
41894
41895 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
41896
41897         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
41898         gl_AC_TYPE_LONG_LONG.
41899
41900 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
41901
41902         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
41903
41904 2004-09-18  Simon Josefsson  <jas@extundo.com>
41905         and  Paul Eggert  <eggert@cs.ucla.edu>
41906
41907         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
41908         calls with autoreconf.  Define GL_LIB.
41909
41910 2004-09-14  Karl Berry  <karl@gnu.org>
41911
41912         * config/srclist.txt: unsync setenv.c, sigh.
41913
41914 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
41915
41916         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
41917         Problem reported by Bruno Haible in:
41918         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
41919
41920 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
41921
41922         * config/srclist.txt: Comment out argp-pvh.c.
41923
41924 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
41925
41926         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
41927         in case some system header has #define'd it.  Problem reported by
41928         Soeren D. Schulze in
41929         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
41930
41931 2004-09-09  Karl Berry  <karl@gnu.org>
41932
41933         * regex.[ch]: delete from the root.  These were supposed to be
41934                 synced with emacs cvs, but this has not happened for about
41935                 a year, and anyway nothing else uses emacs regex.[ch].
41936                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
41937                 lib/regex[.ch] is untouched.
41938
41939 2004-09-09  Bruno Haible  <bruno@clisp.org>
41940
41941         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
41942
41943 2004-09-09  Bruno Haible  <bruno@clisp.org>
41944
41945         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
41946         modifications.
41947         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
41948
41949 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
41950
41951         * modules/xvasprintf: New file.
41952         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
41953
41954 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
41955
41956         * lib/xvasprintf.h: New file.
41957         * lib/xvasprintf.c: New file.
41958         * lib/xasprintf.c: New file.
41959
41960 2004-09-08  Bruno Haible  <bruno@clisp.org>
41961
41962         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
41963
41964 2004-09-08  Bruno Haible  <bruno@clisp.org>
41965
41966         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
41967         length is > INT_MAX.
41968         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
41969         more.
41970
41971 2004-09-08  Bruno Haible  <bruno@clisp.org>
41972
41973         * lib/stdint_.h: New file, taken from GNU clisp.
41974
41975 2004-09-08  Bruno Haible  <bruno@clisp.org>
41976             Oskar Liljeblad  <oskar@osk.mine.nu>
41977
41978         * modules/stdint: New file.
41979         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
41980
41981 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
41982
41983         Import from coreutils.
41984         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
41985         strings on unbounded length.  alloca's performance benefits aren't
41986         that important here.
41987         (V_STRDUP): Remove.
41988         (parse_with_separator): New function, with most of the internals
41989         of the old parse_user_spec.  Allow user to omit both user and group,
41990         for compatibility with FreeBSD.
41991         Clone only the user name, not the entire spec.
41992         Do not set *uid, *gid unless entirely successful.
41993         Avoid memory leak in some failing cases.
41994         Fix regression for USER.GROUP reported by Dmitry V. Levin in
41995         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
41996         (parse_user_spec): Rewrite to use parse_with_separator.
41997
41998 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
41999
42000         * modules/userspec: Don't depend on alloca.
42001
42002 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
42003
42004         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
42005
42006 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
42007
42008         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
42009         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
42010         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
42011
42012 2004-08-16  Simon Josefsson  <jas@extundo.com>
42013
42014         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
42015         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
42016         Add --dry-run for --import.
42017         Let user provided command line parameters override configure.ac
42018         settings.
42019
42020 2004-08-12  Simon Josefsson  <jas@extundo.com>
42021
42022         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
42023         as discussed with Paul Eggert in threads rooted at
42024         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
42025         and
42026         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
42027         Before, the test was empty, and relied on ELIDE_CODE in source
42028         code.)
42029         (gl_PREREQ_GETOPT): New macro.
42030         (gl_GETOPT): Use them.
42031
42032 2004-08-12  Simon Josefsson  <jas@extundo.com>
42033
42034         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
42035         * lib/getopt_.h: Renamed from getopt.h.
42036
42037 2004-08-12  Simon Josefsson  <jas@extundo.com>
42038
42039         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
42040         Change default library name from libfoo to libgnu.
42041         Now, if you have a configure.ac that says:
42042                 gl_SOURCE_BASE(gl)
42043                 gl_M4_BASE(gl/m4)
42044                 gl_MODULES(error getopt etcetera)
42045                 gl_INIT
42046         you can import all you need by running:
42047                 ../gnulib/gnulib-tool --import
42048
42049         * modules/getopt (Files): Rename getopt.h to getopt_.h.
42050         (Makefile.am): Rewrite, use logic from argz.
42051         (Include): Use <getopt.h> instead of "getopt.h".
42052
42053 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42054
42055         * modules/argp (Files): Add m4/unlocked-io.m4.
42056         (Depends-on): Add extensions.
42057
42058 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42059
42060         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
42061         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
42062         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
42063         Check for program_invocation_name, program_invocation_short_name,
42064         flockfile, funlockfile, features.h, _getopt_long_only_r.
42065
42066 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42067
42068         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
42069         its complicated substitute.
42070         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
42071         and program_invocation_name.
42072         (__argp_basename) [!_LIBC]: Remove; the only use was
42073         replaced by its body.
42074         (__argp_short_program_name): Change condition from
42075         !defined __argp_short_program_name to
42076         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
42077         to match argp-namefrob.h.
42078         (__argp_failure): Don't assume strerror_r returns char *.
42079         * lib/argp-parse.c (N_): Define unconditionally.
42080         (argp_default_options): Fill out initializers with 0 to avoid
42081         gcc warnings.
42082
42083 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
42084
42085         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
42086         getopt1.c.
42087
42088 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42089
42090         Merge from coreutils.
42091
42092         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
42093
42094         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
42095         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
42096
42097 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42098
42099         Merge from coreutils.
42100
42101         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
42102         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
42103         for Reliant Unix 5.43.
42104
42105         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
42106         (union fooround): Use uintmax_t, not long int.
42107         The rest is a merge from libc:
42108         [defined _LIBC]: Include <shlib-compat.h>.
42109         (_obstack) [defined _LIBC]: Remove after 2.3.4.
42110
42111         * lib/settime.c (settime): Recode to avoid warning with
42112         Sun Forte C 6U2.
42113
42114         * lib/strverscmp.c: Convert to UTF-8.
42115
42116 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
42117
42118         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
42119         m4/uintmax_t.m4.
42120
42121 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42122
42123         * modules/xalloc-die: New file.
42124         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
42125
42126         * modules/md5 (Files): Add m4/uint32_t.m4.
42127         * modules/sha1: Renamed from modules/sha.
42128         (Files):
42129         Rename lib/sha.h to lib/sha1.h.
42130         Rename lib/sha.c to lib/sha1.c.
42131         Rename m4/sha.m4 to m4/sha1.m4.
42132         (lib_SOURCES): Likewise.
42133         (configure.ac): Rename gl_SHA to gl_SHA1.
42134         (Include): sha.h -> sha1.h.
42135
42136 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42137
42138         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
42139         * m4/sha1.m4: Renamed from sha.m4.
42140         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
42141
42142 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
42143
42144         * lib/obstack.h (obstack_empty_p):
42145         Don't assume that chunk->contents is suitably aligned.
42146         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
42147         Likewise. Problem reported by Benno in
42148         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
42149
42150         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
42151         readable.  This could be improved further but it'd take some work.
42152
42153 2004-08-08  Simon Josefsson  <jas@extundo.com>
42154
42155         * modules/xgethostname (Depends-on): Remove exit and error (not
42156         used).
42157
42158         * modules/getpass-gnu: Add getpass.h.
42159         (Depends-on): Add stdbool.
42160         * modules/getpass: Add getpass.h.
42161
42162 2004-08-08  Simon Josefsson  <jas@extundo.com>
42163
42164         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
42165         Check getpass declaration.
42166
42167 2004-08-08  Simon Josefsson  <jas@extundo.com>
42168
42169         * lib/xgethostname.c: Don't include error.h (not used).
42170
42171         * lib/getpass.h: Add.
42172         * lib/getpass.c: Include getpass.h first.
42173
42174 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
42175
42176         * lib/xalloc-die.c: New file.
42177         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
42178         All uses removed.
42179         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
42180         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
42181         xalloc-die.c.
42182         (_, N_, xalloc_die): Move to xalloc-die.c.
42183         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
42184         so that we needn't mess with xalloc_msg_memory_exhausted.
42185
42186         * lib/sha1.h: Renamed from sha.h.
42187         (SHA1_H): Renamed from _SHA_H.
42188         (sha1_ctx): Renamed from sha_ctx.
42189         (sha1_init_ctx): Renamed from sha_init_ctx.
42190         (sha1_process_block): Renamed from sha_process_block.
42191         (sha1_process_bytes): Renamed from sha_process_bytes.
42192         (sha1_finish_ctx): Renamed from sha_finish_ctx.
42193         (sha1_read_ctx): Renamed from sha_read_ctx.
42194         (sha1_stream): Renamed from sha_stream.
42195         (sha1_buffer): Renamed from sha_buffer.
42196         * lib/sha1.c: Likewise; renamed from sha.c.
42197         Do not include <sys/types.h>.
42198         Include <stddef.h> rather than <stdlib.h>.
42199
42200 2004-08-08  Bruno Haible  <bruno@clisp.org>
42201
42202         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
42203         FILESYSTEM_PREFIX_LEN.
42204         * lib/progreloc.c: Likewise.
42205         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
42206
42207 2004-08-06  Simon Josefsson  <jas@extundo.com>
42208
42209         * modules/progname (Depends-on): Don't depend on stdbool.
42210
42211 2004-08-06  Simon Josefsson  <jas@extundo.com>
42212
42213         * modules/getsubopt: New file.
42214         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
42215         getsubopt.
42216
42217 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42218
42219         More merge from coreutils.
42220
42221         * m4/utimens.m4, m4/utimecmp.m4: New files.
42222         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
42223         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
42224         prereq.m4, sha.m4: Import changes from coreutils.
42225
42226 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42227
42228         More merge from coreutils.
42229         * modules/raise, modules/readtokens0, modules/utimens:
42230         * modules/utimecmp, module/xnanosleep: New files.
42231         * modules/strftime: Add lib/strftime.h.
42232         Change include from <time.h> to "strftime.h".
42233         * modules/yesno: Add lib/yesno.h.
42234         * modules/backupfile: Remove lib/addext.c.
42235         * modules/euidaccess: Add stat-macros.h.
42236         * modules/canonicalize, modules/euidaccess,
42237         modules/filemode, modules/lchown, modules/makepath,
42238         modules/rmdir, modules/stat: Likewise.
42239
42240 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
42241
42242         Merge from tar.
42243         * lib/argp-help.c (make_hol, hol_append): Don't assume that
42244         SIZE_MAX is a valid preprocessor constant.
42245         (__argp_basename): Change from "#ifndef _LIBC"
42246         to "#ifndef __argp_short_program_name", so that
42247         we don't compile these functions for tar.
42248
42249         More merges from coreutils.
42250         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
42251         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
42252         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
42253         * lib/addext.c: Remove; no longer needed.
42254         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
42255         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
42256         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
42257         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
42258         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
42259         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
42260         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
42261         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
42262         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
42263         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
42264         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
42265         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
42266         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
42267         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
42268         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
42269         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
42270         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
42271         Import changes from coreutils.
42272
42273 2004-08-05  Simon Josefsson  <jas@extundo.com>
42274
42275         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
42276
42277 2004-08-05  Simon Josefsson  <jas@extundo.com>
42278
42279         * m4/getsubopt.m4: New file.
42280
42281 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42282
42283         Merge from coreutils.
42284
42285         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
42286         * m4/getcwd-path-max.m4: New files.
42287
42288         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
42289         FILESYSTEM_PREFIX_LEN ->
42290         FILE_SYSTEM_PREFIX_LEN.
42291         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
42292         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
42293         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
42294         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
42295
42296         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
42297         prerequisite modules now handle the DOS stuff.
42298         Don't check for unistd.h.
42299
42300 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42301
42302         Merge from coreutils.
42303
42304         * lib/.gdb-history: Remove; this doesn't belong here.
42305
42306         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
42307         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
42308         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
42309         * lib/getcwd.c: New files.
42310
42311         * lib/dirname.h: Include <stdbool.h>.
42312         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
42313         for consistency with POSIX terminology.  All uses changed.
42314         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
42315         (strip_trailing_slashes): Use bool for booleans.
42316         * lib/stripslash.c (strip_trailing_slashes): Likewise.
42317
42318         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
42319         sometimes returns a positive errno value even when it succeeds.
42320         (print_errno_message) [!LIBC]: Fall back on strerror if
42321         __strerror_r fails.
42322
42323         * lib/path-concat.c (mempcpy): Don't define if a system header defines
42324         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
42325         (longest_relative_suffix): New function.
42326         (path_concat): Use it.  Assume first argument is not NULL.
42327         Port to DOS.  Omit redundant separators.
42328         Report an error instead of returning NULL.
42329         Use mempcpy instead of memcpy.
42330         (xpath_concat): Remove: not declared or used.
42331
42332         * lib/same.h: Include <stdbool.h>
42333         (same_name): Return bool, not int.
42334         * lib/same.c (same_name): Likewise.
42335         (errno): Don't declare; we assume C89 or better now.
42336
42337         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
42338         if not already defined.
42339
42340         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
42341         * lib/dup-safer.c (errno): Likewise.
42342
42343 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
42344
42345         Merge from coreutils.
42346         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
42347         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
42348         * modules/path-concat: Don't depend on strdup.
42349
42350 2004-08-03  Simon Josefsson  <jas@extundo.com>
42351
42352         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
42353         * lib/progname.h: Don't include stdbool.h.
42354
42355 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42356
42357         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
42358         * MODULES.html.sh (func_all_modules): Remove fatal.
42359
42360 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42361
42362         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
42363
42364 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
42365
42366         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
42367         working.
42368
42369 2004-08-02  Simon Josefsson  <jas@extundo.com>
42370
42371         * lib/getsubopt.h: New file, with comments from Bruno Haible.
42372         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
42373         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
42374
42375 2004-08-01  Simon Josefsson  <jas@extundo.com>
42376
42377         * lib/xgetdomainname.c: Include stdlib.h, for free().
42378
42379 2004-07-19  Bruno Haible  <bruno@clisp.org>
42380
42381         * MODULES.html.sh (func_all_modules): Add dummy.
42382
42383 2004-07-16  Simon Josefsson  <jas@extundo.com>
42384
42385         * modules/dummy: New file.
42386
42387 2004-07-16  Simon Josefsson  <jas@extundo.com>
42388
42389         * lib/dummy.c: New file.
42390
42391 2004-07-16  Bruno Haible  <bruno@clisp.org>
42392
42393         * lib/backupfile.h: Add extern "C" for C++.
42394         * lib/closeout.h: Likewise.
42395         * lib/copy-file.h: Likewise.
42396         * lib/findprog.h: Likewise.
42397         * lib/full-write.h: Likewise.
42398         * lib/pathname.h: Likewise.
42399         * lib/progname.h: Likewise.
42400         * lib/stpcpy.h: Likewise.
42401         * lib/stpncpy.h: Likewise.
42402         * lib/strcase.h: Likewise.
42403         * lib/strstr.h: Likewise.
42404         * lib/xalloc.h: Likewise.
42405
42406         * lib/mbswidth.h: Add extern "C" for C++.
42407         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
42408
42409 2004-07-13  Robert Millan  <robertmh@gnu.org>
42410
42411         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
42412
42413 2004-07-09  Simon Josefsson  <jas@extundo.com>
42414
42415         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
42416         failed without this.)
42417
42418 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
42419
42420         * modules/chown (Files): Add lib/fchown-stub.c, since
42421         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
42422
42423 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
42424
42425         * lib/fchown-stub.c: New file.
42426
42427 2004-06-24  Jim Meyering  <jim@meyering.net>
42428
42429         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
42430
42431 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42432
42433         * modules/argz: Omit "#include".
42434
42435         * MODULES.html.sh (func_all_modules): Add calloc, to match
42436         2004-06-01 addition of calloc module.
42437
42438 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42439
42440         * m4/argz.m4: New file, which is autoupdated from libtool.
42441
42442 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42443
42444         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
42445         libtool.
42446
42447 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
42448
42449         * config/srclist-update: Don't insist on "USA." before the
42450         close-comment, as libtool omits the period and puts the */ on a
42451         separate line.
42452         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
42453         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
42454
42455 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
42456
42457         * modules/argz: New file.
42458         * MODULES.html.sh (func_all_modules): Add argz.
42459
42460 2004-06-12  Jim Meyering  <jim@meyering.net>
42461         and  Paul Eggert  <eggert@cs.ucla.edu>
42462
42463         * modules/hash (Files): Add lib/xalloc.h.
42464         * modules/pipe (Depends-on): Add wait-process.
42465         * modules/stat (Depends-on): Add xalloc.
42466         * modules/userspec (Files): Add lib/userspec.h.
42467         * modules/xstrto
42468
42469         Upgrade from gettext-0.13.
42470         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
42471         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
42472         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
42473
42474 2004-06-10  Jim Meyering  <jim@meyering.net>
42475
42476         * lib/calloc.c: New file.
42477
42478 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
42479
42480         * lib/getdate.y (yylex): Allow space between sign and number.
42481         Problem reported by Dan Jacobson.
42482
42483 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
42484
42485         Merge from coreutils CVS.
42486
42487         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
42488         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
42489         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
42490         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
42491         xstrtol.m4: Fix copyright date and/or serial number.
42492
42493         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
42494         See if we need an fchown replacement.
42495         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
42496         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
42497         and use the replacement function if we detect either defect.
42498
42499         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
42500         gl_UTIMECMP.
42501
42502 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
42503         and  Jim Meyering  <jim@meyering.net>
42504
42505         Merge from coreutils CVS.
42506
42507         * lib/stat-macros.h: New file, with contents from file-type.h
42508         and coreutils' system.h.
42509         * lib/file-type.c: Include "stat-macros.h".
42510         * lib/file-type.h (file_type): Move all macro definitions to new file,
42511         stat-macros.h.
42512
42513         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
42514         Wrap old code with this conditional.
42515         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
42516         function that does not dereference symlinks.
42517         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
42518
42519         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
42520         dependency problems.
42521         (xreadlink): Accept new arg SIZE, for efficiency.
42522         All decls and uses changed.
42523         * lib/xreadlink.h: Include <stddef.h>, for size_t.
42524
42525         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
42526         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
42527
42528         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
42529         sysexits.h.
42530
42531 2004-06-01  Jim Meyering  <jim@meyering.net>
42532
42533         * m4/calloc.m4: New file.
42534
42535 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
42536
42537         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
42538         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
42539         Also, fix a typo in a diagnostic.
42540
42541 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
42542
42543         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
42544         or AC_FUNC_REALLOC.
42545
42546 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
42547
42548         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
42549         macros to be defined.
42550         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
42551         the allocator returns NULL because the requested size is zero.
42552
42553 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
42554
42555         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
42556         var.  Add comment explaining why libc still defines it.  This
42557         merges the following patch from glibc:
42558         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
42559
42560 2004-05-20  Andreas Schwab  <schwab@suse.de>
42561
42562         * m4/free.m4: Replace free if it not known to work, not the other
42563         way round.
42564
42565 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
42566
42567         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
42568         present in glibc since revision 1.1 of this file.
42569         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
42570         obstack_alignment_mask, obstack_alloc, obstack_base,
42571         obstack_blank, obstack_blank_fast, obstack_chunk_size,
42572         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
42573         obstack_grow0, obstack_init, obstack_int_grow,
42574         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
42575         obstack_next_free, obstack_object_size, obstack_ptr_grow,
42576         obstack_ptr_grow_fast, obstack_room): Remove declarations of
42577         nonexistent functions.
42578
42579 2004-05-18  Karl Berry  <karl@gnu.org>
42580
42581         * config/srclist.txt: break link for vasnprintf.c.
42582
42583 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
42584
42585         Port obstack to the AS/400, where pointers are 16 bytes wide and
42586         you cannot cast an integer to a valid pointer.  This patch is
42587         currently waiting to be integrated into glibc; see
42588         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
42589
42590         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
42591         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
42592         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
42593         (struct obstack): temp member is now a union of a pointer and
42594         an integer, instead of an integer.  All integer uses changed.
42595         This does not affect the physical layout of struct obstack,
42596         except on hosts (like the AS/400) where the size or alignment of
42597         void * is greater than that of ptrdiff_t.
42598         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
42599         __STDC__)]: Store temporary in pointer member of union, not
42600         integer member.
42601         * lib/obstack.c: Include <stddef.h>, for offsetof.
42602         (struct fooalign): Remove; it doesn't need a name.
42603         (union fooround): Change double to long double, and add void *.
42604         (DEFAULT_ALIGNMENT): Use offsetof to compute.
42605         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
42606         not a macro.  Hence the values are always int; so remove all
42607         casts-to-int in uses.
42608
42609 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
42610
42611         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
42612         we can get this patch merged into glibc.
42613
42614 2004-05-17  Derek R. Price  <derek@ximbiot.com>
42615             Paul Eggert  <eggert@cs.ucla.edu>
42616
42617         * m4/argp: Depend on alloca.
42618
42619 2004-05-17  Derek R. Price  <derek@ximbiot.com>
42620             Paul Eggert  <eggert@cs.ucla.edu>
42621
42622         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
42623         freecoding.
42624
42625 2004-05-17  Bruno Haible  <bruno@clisp.org>
42626
42627         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
42628         precision that consists of a '.' followed by an empty digit string.
42629         Patch by Tor Lillqvist <tml@iki.fi>.
42630
42631 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
42632
42633         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
42634         for backward compatibility with older code.  We need our own
42635         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
42636         it under some other name, and our alloca.h will define it.
42637
42638 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
42639             Derek Price  <derek@ximbiot.com>
42640
42641         * lib/alloca.c: Include <alloca.h>, to get our interface.
42642         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
42643         include <alloca.h> first.  Use C89 prototype for alloca; this
42644         requires including <stddef.h> for size_t.  Use extern "C" if C++.
42645         Use #elif for simplicity, since we can assume C89 now.
42646         Don't try to source the system alloca.h since it will not be found
42647         and to prevent recursively including its replacement.
42648         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
42649         * lib/regex.c: Likewise.
42650
42651 2004-05-16  Derek Price  <derek@ximbiot.com>
42652             Paul Eggert  <eggert@cs.ucla.edu>
42653
42654         getline cleanup.  This changes the getndelim2 API: both order of
42655         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
42656         no delimiter).
42657
42658         * lib/getline.c: Don't include stddef.h or stdio.h, since our
42659         interface does that.
42660         (getline): Always use getdelim, so that we don't have two
42661         copies of this code.
42662         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
42663         if available.
42664         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
42665         (GETNDELIM2_MAXIMUM): New macro.
42666         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
42667         instead of the old practice of delim2==0.  All callers changed.
42668         Return -1 on overflow, instead of returning junk.
42669         Do not set *linesize unless allocation succeeds.
42670         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
42671         that we include sys/types.h.
42672         * lib/getnline.h: Likewise.
42673         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
42674         (getndelim2): Reorder arguments.
42675         * lib/getnline.c (getnline, getndelim):
42676         Don't discard the NMAX argument.
42677         (getnline): Invoke getndelim, to avoid code duplication.
42678         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
42679         of (size_t) -1 by callers of the getnline family.
42680
42681 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
42682
42683         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
42684         Check for gettimeofday.
42685         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
42686         Check for settimeofday, stime.
42687
42688 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
42689
42690         * lib/nanosleep.c (suspended): Change its type from int to
42691         sig_atomic_t volatile.
42692         (first_call): Make it private to rpl_nanosleep, and have it
42693         be zero initially as that's a bit faster.
42694         (my_usleep): Round up fractional times instead of truncating them,
42695         as this is the usual meaning for 'sleep'.
42696
42697         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
42698         doesn't work.
42699         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
42700         (ENOSYS): Define if not defined.
42701         (settime): Fall back on stime if it exists and settimeofday fails.
42702         But don't bother with fallbacks if a method fails with errno == EPERM.
42703
42704 2004-05-11  Jim Meyering  <jim@meyering.net>
42705
42706         Prior to this change, the save_cwd caller required read access to the
42707         current directory on most systems (ones with the fchdir function).
42708
42709         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
42710         fails, try write-only, and finally, resort to using xgetcwd.
42711
42712 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
42713
42714         * lib/obstack.c, obstack.h: Import changes from libc.
42715
42716 2004-04-28  Bruno Haible  <bruno@clisp.org>
42717
42718         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
42719         also implicitly appends .exe to executables.
42720         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
42721         accepts Windows pathnames.
42722         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
42723         Treat Cygwin like Windows, since it now accepts Windows pathnames.
42724         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
42725         Treat Cygwin like Windows, since it now accepts Windows pathnames.
42726         Reported by Derek Robert Price <derek@ximbiot.com>.
42727
42728 2004-04-21  Karl Berry  <karl@gnu.org>
42729
42730         * config/srclist.txt (localcharset.c): break sync.
42731
42732 2004-04-20  Paul Eggert  <eggert@twinsun.com>
42733
42734         * m4/host-os.m4: Add a copyright notice.
42735
42736 2004-04-20  Jim Meyering  <jim@meyering.net>
42737
42738         Change UTILS_ to gl_ in AC_DEFINE'd names.
42739         Change utils_- and jm_-prefixed variables, too.
42740         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
42741         UTILS_FUNC_MKDIR_TRAILING_SLASH.
42742         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
42743
42744         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
42745         Don't emit trailing blanks.
42746         Also rename jm_-prefixed variables to have gl_ prefix.
42747
42748         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
42749         Also rename jm_-prefixed variables to have gl_ prefix.
42750
42751         * m4/jm-macros.m4: Reflect the renamings.
42752         * m4/prereq.m4: Likewise.
42753
42754 2004-04-20  Jim Meyering  <jim@meyering.net>
42755
42756         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
42757         memory.
42758
42759 2004-04-20  Jim Meyering  <jim@meyering.net>
42760             Bruno Haible  <bruno@clisp.org>
42761
42762         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
42763         memory when realloc fails.
42764
42765 2004-04-19  Jim Meyering  <jim@meyering.net>
42766
42767         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
42768         now that readutmp.c may call `free (0)'.
42769
42770 2004-04-19  Bruno Haible  <bruno@clisp.org>
42771
42772         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
42773         * m4/inttypes_h.m4: Likewise.
42774         * m4/stdint_h.m4: Likewise.
42775         * m4/intmax_t.m4: Likewise.
42776         * m4/uintmax_t.m4: Likewise.
42777
42778 2004-04-18  Jim Meyering  <jim@meyering.net>
42779
42780         * m4/prereq.m4: Don't forbid jm_ prefix.
42781
42782         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
42783         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
42784         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
42785         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
42786         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
42787         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
42788         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
42789         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
42790         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
42791         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
42792         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
42793         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
42794         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
42795         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
42796         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
42797         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
42798         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
42799         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
42800         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
42801
42802 2004-04-18  Jim Meyering  <jim@meyering.net>
42803
42804         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
42805         failure, don't leak memory and do call END_UTMP_ENT.
42806
42807 2004-04-16  Jim Meyering  <jim@meyering.net>
42808
42809         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
42810         coreutils' stat program.
42811         (gl_PREREQ): Don't require jm_PREREQ_STAT.
42812
42813 2004-04-11  Paul Eggert  <eggert@twinsun.com>
42814
42815         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
42816         C89.
42817         (CHAR_BIT): Remove, since we assume C89.
42818         Include <stdint.h> if available, as per current Autoconf CVS advice.
42819
42820 2004-03-31  Jim Meyering  <jim@meyering.net>
42821
42822         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
42823         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
42824         * m4/xalloc.m4: Likewise.
42825
42826 2004-03-30  Paul Eggert  <eggert@twinsun.com>
42827
42828         Merge from coreutils.
42829
42830         * m4/inttostr.m4: New file.
42831         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
42832         Require AM_STDBOOL_H and gl_TIMESPEC instead.
42833         Require gl_CLOCK_TIME.
42834         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
42835
42836 2004-03-30  Paul Eggert  <eggert@twinsun.com>
42837
42838         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
42839         not bool, to be more consistent with Unix conventions.
42840         Suggested by Bruno Haible.
42841
42842         Merge from coreutils.
42843
42844         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
42845         * lib/umaxtostr.c: New files.
42846
42847         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
42848         the usual <time.h> dance.
42849         (get_date): Change signature to support fractional time stamps.
42850         All callers changed.
42851         * lib/getdate.y: Include "getdate.h" first, as we can now
42852         assume C89 and don't need to worry about 'const'.
42853         Similarly, include "unlocked-io.h" near start, not in middle.
42854         Include <limits.h>.
42855         (textint.value): Use long int rather than int.
42856         (textint.digits): Use size_t rather than int.
42857         (BILLION, LOG10_BILLION): New constants.
42858         (parser_control): New member rel_ns.  Members day_ordinal,
42859         time_zone, month, day, hour, minutes, rel_year, rel_month,
42860         rel_day, rel_hour, rel_minutes, rel_seconds
42861         are now long int, not int.  Member seconds is now struct timespec,
42862         not int.  New member timespec_seen.  Members dates_seen, days_seen,
42863         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
42864         not int.
42865         (%union.intval): Now long int, not int.
42866         New member timespec.
42867         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
42868         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
42869         (spec): Now is a timespec or an item list.
42870         (timespec, items): New nonterminals.
42871         (time, rel, relunit, number, get_date):
42872         Add support for fractional seconds.
42873         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
42874         (gmtime, localtime, mktime): Remove decls; not needed with C89.
42875         (to_hour): First arg is now long int, not int.
42876         (to_year): Returns long int, not int.
42877         Don't treat year -70 like 70.
42878         (tm_diff): Returns long int, not int.
42879         (lookup_word): Use bool instead of int when appropriate.
42880         (yylex): Use size_t for count, not int.
42881         Detect overflow when parsing large integer constants.
42882         Add support for fractions.
42883         (get_date): Make pointers 'const' if possible.
42884         Use more-portable code to detect integer overflow.
42885         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
42886         Don't use ctime; it's not reliable if the year has >4 digits.
42887
42888         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
42889         This is for compatibility with BSD.
42890
42891         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
42892         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
42893         From coreutils' system.h.
42894
42895         * lib/userspec.c: Don't include "posixver.h".
42896         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
42897         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
42898         compatible extension.  Simplify code by removing a boolean int
42899         that was always nonzero if a string was nonnull.
42900
42901 2004-03-30  Jim Meyering  <jim@meyering.net>
42902
42903         Merge from coreutils.
42904
42905         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
42906         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
42907         on some systems one must include <grp.h> before it.
42908         Reported by Christian Krackowizer.
42909
42910 2004-03-30  Jim Meyering  <jim@meyering.net>
42911
42912         Merge from coreutils.
42913
42914         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
42915
42916         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
42917         an empty input stream.
42918
42919         * lib/readtokens.c: Include <stdbool.h>.
42920         (readtoken): Use `size_t' rather than int/long.
42921         All callers adjusted.
42922         Use `bool' rather than `int' where appropriate.
42923         Use memset rather than an explicit loop.
42924         Use x2nrealloc rather than xrealloc.
42925         Allow the use of `\0' as a delimiter.
42926         (readtokens): Likewise.
42927         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
42928
42929 2004-03-30  Jim Meyering  <jim@meyering.net>
42930
42931         * m4/realloc.m4: Remove file, since now it does no more than
42932         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
42933         the `configure.ac' section of module/realloc.
42934         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
42935
42936 2004-03-30  Bruno Haible  <bruno@clisp.org>
42937
42938         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
42939         nonnull.
42940
42941 2004-03-29  Paul Eggert  <eggert@twinsun.com>
42942
42943         Merge changes to getloadavg.c from coreutils and Emacs.
42944
42945         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
42946         Define to an expression, not to the empty string.
42947         Include cloexec.h and xalloc.h.
42948         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
42949         Use set_cloexec_flag rather than rolling our own.
42950         * lib/cloexec.c, lib/cloexec.h: New files.
42951
42952 2004-03-29  Paul Eggert  <eggert@twinsun.com>
42953
42954         * m4/cloexec.m4: New file.
42955
42956 2004-03-18  Paul Eggert  <eggert@twinsun.com>
42957
42958         * lib/getopt.h: Sync with libc CVS.
42959
42960 2004-03-18  Paul Eggert  <eggert@twinsun.com>
42961             Bruno Haible  <bruno@clisp.org>
42962
42963         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
42964         mbswidth.
42965
42966 2004-03-18  Paul Eggert  <eggert@twinsun.com>
42967             Bruno Haible  <bruno@clisp.org>
42968
42969         * lib/mbswidth.h: Include <wchar.h> only if
42970         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
42971         <wchar.h>.
42972         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
42973
42974 2004-03-09  Paul Eggert  <eggert@twinsun.com>
42975
42976         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
42977         Sync with libc CVS.
42978         * lib/getopt_int.h: New file, also synced from libc.
42979
42980 2004-03-09  Paul Eggert  <eggert@twinsun.com>
42981
42982         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
42983         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
42984         Bring back getopt.c, getopt.h, getopt1.c.
42985
42986 2004-03-07  Paul Eggert  <eggert@twinsun.com>
42987
42988         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
42989         All uses changed.  Check for sa_sigaction member; this fixes
42990         a bug first reported by Jason Andrade in
42991         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
42992
42993 2004-03-07  Paul Eggert  <eggert@twinsun.com>
42994
42995         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
42996         '#if' expressions.  Unlike the code it replaces, it does not
42997         depend on (defined _SC_PAGESIZE).  However, it does depend on
42998         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
42999         first reported by Jason Andrade in
43000         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
43001
43002 2004-02-25  Simon Josefsson  <jas@extundo.com>
43003
43004         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
43005
43006 2004-02-25  Simon Josefsson  <jas@extundo.com>
43007
43008         * lib/strdup.h: New file.
43009         * lib/strdup.c: Include it.
43010         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
43011         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
43012
43013 2004-02-23  Karl Berry  <karl@gnu.org>
43014
43015         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
43016         (from fencepost.gnu.org:/gd/gnuorg).
43017
43018 2004-02-23  Karl Berry  <karl@gnu.org>
43019
43020         * config/srclistvars.sh (GNUORG) [karl]: redefine.
43021         * config/srclist.txt: add maintain/standards documents.
43022
43023 2004-02-18  Bruno Haible  <bruno@clisp.org>
43024
43025         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
43026         Reported by Derek Robert Price <derek@ximbiot.com>.
43027
43028 2004-02-16  Karl Berry  <karl@gnu.org>
43029
43030         * config/mkinstalldirs, install-sh: update from automake.
43031
43032 2004-02-06  Karl Berry  <karl@gnu.org>
43033
43034         * m4/po.m4: update from gettext 0.14.1.
43035
43036 2004-02-06  Karl Berry  <karl@gnu.org>
43037
43038         * lib/config.charset: update from gettext 0.14.1.
43039
43040 2004-02-05  Paul Eggert  <eggert@twinsun.com>
43041
43042         Add comments and code, prompted by suggestions from Bruno Haible
43043         for sh-quote.
43044         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
43045         describing the enum quoting_style values.
43046         * lib/quotearg.c (quotearg_alloc): New function.
43047         (quotearg_buffer_restyled): Treat lone { and } as special.
43048         Treat = as special.  Work around bug with older shells
43049         that "see" a '\' that is really the 2nd byte of a multibyte char.
43050         Quote empty string with shell_quoting_style.
43051
43052 2004-02-03  Bruno Haible  <bruno@clisp.org>
43053
43054         * m4/pipe.m4: New file, from GNU gettext.
43055
43056 2004-02-03  Bruno Haible  <bruno@clisp.org>
43057
43058         * lib/pipe.h: New file, from GNU gettext.
43059         * lib/pipe.c: New file, from GNU gettext.
43060
43061 2004-01-27  Bruno Haible  <bruno@clisp.org>
43062
43063         * m4/execute.m4: New file, from GNU gettext.
43064
43065 2004-01-27  Bruno Haible  <bruno@clisp.org>
43066
43067         * lib/execute.h: New file, from GNU gettext.
43068         * lib/execute.c: New file, from GNU gettext.
43069         * lib/w32spawn.h: New file, from GNU gettext.
43070
43071 2004-01-24  Paul Eggert  <eggert@twinsun.com>
43072
43073         Merge from diffutils.
43074
43075         * lib/file-type.c (file_type): Add typed memory objects.
43076         * lib/file-type.h (S_TYPEISTMO): New macro.
43077
43078         * lib/c-stack.h (c_stack_action): Remove argv argument.
43079         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
43080         (die): Don't calculate message unless segv_action returns.
43081         (get_stack_location, min_address_from_argv, max_address_from_argv,
43082         volatile stack_base, volatile_stack_size): Remove.
43083         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
43084         that every segmentation violation is a stack overflow.  (Ouch!)
43085         See Debian bug 136249 (still outstanding) for more info about why
43086         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
43087
43088 2004-01-24  Paul Eggert  <eggert@twinsun.com>
43089
43090         Exit-status fix from coreutils.
43091
43092         Use exit_failure consistently in place of EXIT_FAILURE,
43093         so that program exit statuses are consistent on failure.
43094
43095         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
43096         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
43097         * lib/argmatch.h: Comment fix to match the above.
43098         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
43099         Now a macro referring to exit_failure, instead of a separate
43100         variable.  Include "exitfail.h" to get it.
43101         * lib/xstrtol.h: Include "exitfail.h".
43102         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
43103
43104         * lib/long-options.c (parse_long_options): Use prototype
43105         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
43106         for clarity.
43107
43108 2004-01-21  Jim Meyering  <jim@meyering.net>
43109
43110         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
43111         so as not to conflict with a different-sized __mktime_internal
43112         function in GNU libc.
43113         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
43114         Problem building statically-linked `ls' reported by Michael Brunnbauer.
43115
43116 2004-01-20  Karl Berry  <karl@gnu.org>
43117
43118         * config/config.guess: update from config.
43119
43120         * config/srclistvars.sh: GNUWWWLICENSES for karl.
43121
43122 2004-01-20  Bruno Haible  <bruno@clisp.org>
43123
43124         Safer stack allocation.
43125         * lib/setenv.c: Include allocsa.h.
43126         (alloca): Remove fallback definition.
43127         (freea): Remove macro.
43128         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
43129         instead of freea.
43130
43131 2004-01-20  Bruno Haible  <bruno@clisp.org>
43132
43133         * m4/eealloc.m4: New file, from GNU gettext.
43134
43135 2004-01-20  Bruno Haible  <bruno@clisp.org>
43136
43137         * m4/allocsa.m4: New file, from GNU gettext.
43138
43139 2004-01-20  Bruno Haible  <bruno@clisp.org>
43140
43141         * lib/xallocsa.h: New file, from GNU gettext.
43142         * lib/xallocsa.c: New file, from GNU gettext.
43143
43144 2004-01-20  Bruno Haible  <bruno@clisp.org>
43145
43146         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
43147
43148 2004-01-20  Bruno Haible  <bruno@clisp.org>
43149
43150         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
43151         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
43152         specially.
43153
43154 2004-01-20  Bruno Haible  <bruno@clisp.org>
43155
43156         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
43157         patch.
43158
43159 2004-01-20  Bruno Haible  <bruno@clisp.org>
43160
43161         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
43162
43163 2004-01-20  Bruno Haible  <bruno@clisp.org>
43164
43165         * lib/eealloc.h: New file.
43166
43167 2004-01-20  Bruno Haible  <bruno@clisp.org>
43168
43169         * lib/binary-io.h: Avoid warnings on Cygwin.
43170
43171 2004-01-20  Bruno Haible  <bruno@clisp.org>
43172
43173         * lib/allocsa.h: New file, from GNU gettext.
43174         * lib/allocsa.c: New file, from GNU gettext.
43175
43176 2004-01-18  Karl Berry  <karl@gnu.org>
43177
43178         * doc/gpl.texi, doc/lgpl.texi: new files.
43179
43180 2004-01-18  Karl Berry  <karl@gnu.org>
43181
43182         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
43183         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
43184
43185 2004-01-15  Paul Eggert  <eggert@twinsun.com>
43186
43187         Merge from coreutils.
43188
43189         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
43190         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
43191         (gl_DEFAULT_POSIX2_VERSION): Move
43192         the documentation from 'configure' into 'config.hin',
43193         so that 'configure --help' isn't burdened by it and
43194         we don't have to worry about its formatting there.
43195         Reword the documentation so that it's more succinct
43196         and can be run together into a single paragraph.
43197         * m4/same.m4 (gl_SAME): Check for pathconf.
43198
43199 2004-01-15  Paul Eggert  <eggert@twinsun.com>
43200
43201         Merge from coreutils.
43202
43203         * lib/posixver.c: Include posixver.h.
43204
43205         * lib/same.c: Include <stdbool.h>, <limits.h>.
43206         (_POSIX_NAME_MAX): Define if not defined.
43207         (MIN): New macro.
43208         (same_name): If file names are silently truncated, report
43209         that the file names are the same if they are the same after
43210         the silent truncation.
43211
43212         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
43213         conversion function.
43214         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
43215         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
43216         longer needed.
43217
43218 2004-01-15  Jim Meyering  <jim@meyering.net>
43219
43220         Merge from coreutils.
43221
43222         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
43223         if no library is required.
43224         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
43225         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
43226         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
43227         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
43228         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
43229         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
43230         value, $ac_cv_search_crypt, if it's "none required".
43231         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
43232         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
43233         not gl_FUNC_GETLOADAVG.
43234         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
43235         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
43236
43237 2004-01-15  Jim Meyering  <jim@meyering.net>
43238
43239         Merge from coreutils.
43240
43241         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
43242         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
43243         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
43244
43245         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
43246         optional configure-time default.
43247
43248         * lib/version-etc.c (version_etc_copyright): Update copyright date.
43249
43250         * lib/xreadlink.c (xreadlink): Correct outdated comment.
43251
43252 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
43253
43254         Merge from coreutils.
43255
43256         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
43257         value, $ac_cv_search_nanosleep, if it's "none required".
43258
43259 2004-01-14  Paul Eggert  <eggert@twinsun.com>
43260
43261         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
43262         with like-named macro in fnmatch.c.
43263         (EXT): Use an internal constant instead.
43264
43265         Merge fnmatch patches from glibc.
43266         * lib/fnmatch.c (mbsinit): Remove define.
43267         Add libc_hidden_ver (__fnmatch, fnmatch).
43268         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
43269         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
43270
43271 2004-01-14  Karl Berry  <karl@gnu.org>
43272
43273         * config/install-sh: update from automake.
43274
43275 2004-01-13  Karl Berry  <karl@gnu.org>
43276
43277         * config/install-sh: update from automake.
43278
43279 2004-01-09  Karl Berry  <karl@gnu.org>
43280
43281         * config/install-sh: update from automake.
43282
43283 2004-01-05  Karl Berry  <karl@gnu.org>
43284
43285         * config/config.{sub,guess}: update from config.
43286
43287 2003-12-31  Karl Berry  <karl@gnu.org>
43288
43289         * config/depcomp: update from automake.
43290
43291 2003-12-14  Karl Berry  <karl@gnu.org>
43292
43293         * lib/config.charset: update from gettext-runtime.
43294
43295 2003-12-03  Paul Eggert  <eggert@twinsun.com>
43296
43297         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
43298         Bug reported by Alfred M. Szmidt.
43299
43300 2003-12-03  Bruno Haible  <bruno@clisp.org>
43301
43302         * m4/gettext.m4: Upgrade from gettext-0.13.
43303         * m4/po.m4: Upgrade from gettext-0.13.
43304         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
43305         * m4/intmax.m4: New file, from gettext-0.13.
43306         * m4/printf-posix.m4: New file, from gettext-0.13.
43307
43308 2003-11-29  Karl Berry  <karl@gnu.org>
43309
43310         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
43311
43312 2003-11-25  Paul Eggert  <eggert@twinsun.com>
43313             Bruno Haible  <bruno@clisp.org>
43314
43315         * lib/printf-parse.h: Don't include sys/types.h.
43316         (ARG_NONE): New macro.
43317         (char_directive): Change type of *arg_index fields to size_t.
43318         * lib/printf-parse.c: Don't include sys/types.h.
43319         (SSIZE_MAX): Remove macro.
43320         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
43321         Remove unnecessary overflow check.
43322         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
43323         fields.
43324
43325 2003-11-25  Bruno Haible  <bruno@clisp.org>
43326
43327         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
43328
43329 2003-11-25  Bruno Haible  <bruno@clisp.org>
43330
43331         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
43332         gt_TYPE_SSIZE_T.
43333
43334 2003-11-24  Paul Eggert  <eggert@twinsun.com>
43335
43336         * modules/alloca: Remove dependency on xalloc.
43337
43338 2003-11-24  Paul Eggert  <eggert@twinsun.com>
43339
43340         * lib/alloca.c: Remove dependency on xalloc module.
43341         (xalloc_die): Remove.
43342         (memory_full) [!defined emacs]: New macro.
43343         [!defined emacs]: Don't include xalloc.h.
43344         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
43345         address arithmetic overflows.  Change datatypes a bit to avoid
43346         unnecessary casts.
43347
43348 2003-11-22  Jim Meyering  <jim@meyering.net>
43349
43350         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
43351         s/size/size_t/.
43352
43353 2003-11-21  Karl Berry  <karl@gnu.org>
43354
43355         * config/config.{sub,guess}: update from config.
43356
43357 2003-11-18  Karl Berry  <karl@gnu.org>
43358
43359         * config/config.{sub,guess}: update from config.
43360
43361         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
43362
43363 2003-11-17  Paul Eggert  <eggert@twinsun.com>
43364
43365         * README: Mention that S+T cannot overflow if S is the size of
43366         an existing object and T is sufficiently small.
43367
43368 2003-11-17  Jim Meyering  <jim@meyering.net>
43369
43370         On systems without utime and without a utimes function capable of
43371         dealing with a NULL struct utimbuf* argument, this utime replacement
43372         could -- in unusual circumstances -- leak a file descriptor.
43373         * lib/utime.c: Include <unistd.h> and <errno.h>.
43374         (utime_null): Be sure to close `fd' and to preserve errno.
43375         Reported by Geoff Collyer via Arnold Robbins.
43376
43377 2003-11-17  Bruno Haible  <bruno@clisp.org>
43378
43379         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
43380         (Depends-on): Add xsize.
43381
43382 2003-11-17  Bruno Haible  <bruno@clisp.org>
43383
43384         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
43385
43386 2003-11-17  Bruno Haible  <bruno@clisp.org>
43387
43388         * lib/vasnprintf.c (alloca): Remove fallback definition.
43389         (freea): Remove definition.
43390         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
43391         Reported by Paul Eggert.
43392
43393 2003-11-16  Paul Eggert  <eggert@twinsun.com>
43394             Bruno Haible  <bruno@clisp.org>
43395
43396         Protect against address arithmetic overflow.
43397         * lib/printf-args.h: Include stddef.h.
43398         (arguments): Change type of field 'count' to size_t.
43399         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
43400         'unsigned int' where appropriate.
43401         * lib/printf-parse.h: Include sys/types.h.
43402         (char_directive): Change type of *arg_index fields to ssize_t.
43403         (char_directives): Change type of fields 'count', max_*_length to
43404         size_t.
43405         * lib/printf-parse.c: Include sys/types.h and xsize.h.
43406         (SSIZE_MAX): Define fallback value.
43407         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
43408         instead of 'int' where appropriate. Check a_allocated, d_allocated
43409         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
43410         * lib/vasnprintf.c: Include xsize.h.
43411         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
43412         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
43413         overflow. Avoid wraparound when converting a width or precision from
43414         decimal to binary.
43415
43416 2003-11-16  Bruno Haible  <bruno@clisp.org>
43417
43418         Update from GNU gettext.
43419         * lib/printf-parse.c: Generalize to it can be compiled for wide
43420         strings.
43421         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
43422         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
43423         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
43424         SNPRINTF): New macros.
43425         Don't include <alloca.h> if the file is used inside libintl.
43426         (local_wcslen): New function, for Solaris 2.5.1.
43427         (VASNPRINTF): Use it instead of wcslen.
43428
43429 2003-11-16  Bruno Haible  <bruno@clisp.org>
43430
43431         * lib/xsize.h (xmax): New function.
43432         (xsum, xsum3, xsum4): Declare as "pure" functions.
43433
43434 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43435
43436         * modules/xalloc (Files): Undo latest change, since xalloc.h
43437         no longer needs SIZE_MAX or PTRDIFF_MAX.
43438
43439 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43440
43441         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
43442         gl_PTRDIFF_MAX.
43443
43444 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43445
43446         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
43447         "return", to pacify some unknown compiler.  Problem reported
43448         by Joerg Schilling.
43449
43450 2003-11-12  Paul Eggert  <eggert@twinsun.com>
43451
43452         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
43453         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
43454         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
43455         heuristic is just as accurate as far as we know, and it removes a
43456         dependency on size_max.m4 and ptrdiff_max.m4.
43457
43458 2003-11-11  Bruno Haible  <bruno@clisp.org>
43459
43460         * modules/xsize (Files): Add m4/size_max.m4.
43461         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
43462
43463 2003-11-11  Bruno Haible  <bruno@clisp.org>
43464
43465         * m4/size_max.m4: New file.
43466         * m4/ptrdiff_max.m4: New file.
43467         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
43468         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
43469         (gl_XALLOC): Invoke it.
43470
43471 2003-11-11  Bruno Haible  <bruno@clisp.org>
43472
43473         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
43474         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
43475         defined.
43476
43477 2003-11-10  Paul Eggert  <eggert@twinsun.com>
43478
43479         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
43480         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
43481         rejected some allocations of exactly SIZE_MAX - 2 bytes.
43482         From Bruno Haible.
43483         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
43484         not (size_t) -1, since it's defined here.
43485
43486 2003-11-09  Karl Berry  <karl@gnu.org>
43487
43488         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
43489
43490 2003-11-06  Paul Eggert  <eggert@twinsun.com>
43491
43492         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
43493         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
43494         Reject sizes of exactly SIZE_MAX bytes.
43495         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
43496         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
43497
43498 2003-11-05  Bruno Haible  <bruno@clisp.org>
43499
43500         * lib/xsize.h: Include limits.h, to avoid a possible collision with
43501         SIZE_MAX defined in <limits.h> on Solaris.
43502
43503 2003-11-04  Jim Meyering  <jim@meyering.net>
43504
43505         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
43506         variable names, rather than @VAR@.
43507         * modules/poll: Likewise.
43508
43509 2003-11-04  Bruno Haible  <bruno@clisp.org>
43510
43511         * modules/xsize: New file.
43512         * modules/linebreak: Depend on xsize.
43513         * MODULES.html.sh (func_all_modules): Add xsize.
43514
43515 2003-11-04  Bruno Haible  <bruno@clisp.org>
43516
43517         * m4/xsize.m4: New file.
43518
43519 2003-11-04  Bruno Haible  <bruno@clisp.org>
43520
43521         * lib/xsize.h: New file.
43522         * lib/linebreak.c: Include xsize.h.
43523         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
43524         argument for overflow.
43525         Suggested by Paul Eggert.
43526
43527 2003-11-03  Karl Berry  <karl@gnu.org>
43528
43529         * config/config.{guess,sub}: update from config.
43530
43531 2003-11-03  Jim Meyering  <jim@meyering.net>
43532
43533         * modules/userspec (lib_SOURCES): Add userspec.h.
43534         (Include): Add "userspec.h".
43535         Improve description.
43536
43537 2003-11-03  Jim Meyering  <jim@meyering.net>
43538
43539         * lib/userspec.c: Include "userspec.h".
43540         * lib/userspec.h: New file.
43541
43542 2003-11-03  Bruno Haible  <bruno@clisp.org>
43543
43544         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
43545
43546 2003-11-03  Bruno Haible  <bruno@clisp.org>
43547
43548         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
43549         available, to avoid (extremely rare) race condition.
43550         Suggested by Paul Eggert.
43551
43552 2003-11-02  Karl Berry  <karl@gnu.org>
43553
43554         * config/srclist.txt (vasprintf.c): sync broken, sigh.
43555
43556 2003-10-31  Paul Eggert  <eggert@twinsun.com>
43557
43558         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
43559         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
43560         (read_filesystem_list): Set and use me_type_malloced.
43561         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
43562         whatever the type happens to be), for brevity and consistency.
43563         Check for size calculation overflow on Alphas running OSF/1.
43564
43565 2003-10-31  Jim Meyering  <jim@meyering.net>
43566
43567         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
43568
43569         * lib/linebuffer.c: Include <string.h> for declaration of memset.
43570
43571 2003-10-30  Paul Eggert  <eggert@twinsun.com>
43572             Bruno Haible  <bruno@clisp.org>
43573
43574         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
43575         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
43576
43577 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
43578
43579         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
43580         netbsd*-gnu*.  Suggested by Robert Millan.
43581
43582 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43583
43584         * modules/group-member: Depend on stdbool.
43585
43586 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43587
43588         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
43589
43590 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43591
43592         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
43593         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
43594         after the 'gnu' in these cases.  This fixes some bugs in the
43595         previous change, and is based on suggestions by Robert Millan.
43596
43597 2003-10-29  Paul Eggert  <eggert@twinsun.com>
43598
43599         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
43600         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
43601         no longer needed.
43602         * lib/quotearg.c (quotearg_n_options): Use it.
43603         * lib/group-member.c: Include <stdbool.h>.
43604         (free_group_info): Arg is now const *; don't free arg.
43605         (get_group_info): Now returns bool and accepts struct group_info *,
43606         rather than returning a malloc'ed struct group_info *.
43607         All uses changed.  Check for overflow in internal size calculation.
43608
43609         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
43610         rather than xmalloc/xrealloc.
43611         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
43612         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
43613         conformance bug: the old code used a pointer after freeing the
43614         storage that it addressed.
43615         * lib/hash.c (hash_initialize): Simplify the code by using
43616         xalloc_oversized rather than doing it by hand.
43617         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
43618         the buffer preserved.  Use free and xmalloc instead.
43619         * lib/quotearg.c (quotearg_n_options): Likewise.
43620         Use a simpler test for size overflow.  Don't use xalloc_oversized
43621         because unsigned int might be wider than size_t (!); this suggests
43622         that we should switch from unsigned int to size_t for slot numbers.
43623
43624 2003-10-28  Paul Eggert  <eggert@twinsun.com>
43625
43626         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
43627         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
43628         NetBSD kernels.  Requested by Richard Stallman.
43629
43630 2003-10-27  Paul Eggert  <eggert@twinsun.com>
43631
43632         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
43633         to allocate the returned structure.  Do not allocate a subarray,
43634         as x2nrealloc will do that.
43635         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
43636         instead of xnrealloc.
43637         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
43638
43639 2003-10-27  Bruno Haible  <bruno@clisp.org>
43640
43641         * lib/stdbool_.h: Better support for BeOS.
43642
43643 2003-10-26  Paul Eggert  <eggert@twinsun.com>
43644
43645         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
43646         now uses inline.
43647
43648 2003-10-26  Paul Eggert  <eggert@twinsun.com>
43649
43650         * lib/xalloc.h (xalloc_oversized): New static inline function, for
43651         callers that want to do their own size-overflow checking.  Include
43652         <stdbool.h>, since xalloc_oversized returns bool.
43653         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
43654         to use xalloc_oversized.
43655
43656         Add two functions x2realloc, x2nrealloc, for programs that grow
43657         arrays dynamically by doubling their sizes.
43658         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
43659         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
43660         New functions.
43661
43662         Port to C99 semantics for 'inline' of external functions.
43663         Bug reported by Bruno Haible.
43664         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
43665         with the old contents of xnmalloc.
43666         (xnmalloc, xmalloc): Use it.
43667         (xnrealloc_inline): New static inline function,
43668         with the old contents of xnrealloc.
43669         (xnrealloc, xrealloc): Use it.
43670
43671         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
43672         that.
43673
43674 2003-10-26  Karl Berry  <karl@gnu.org>
43675
43676         * config/srclist.txt (COPYING.DOC): no longer available from
43677         /gd/gnuorg; don't know where the ultimate source is.
43678
43679 2003-10-25  Paul Eggert  <eggert@twinsun.com>
43680
43681         Fix several address-calculation bugs in the hash modules,
43682         plus some minor code cleanup.
43683
43684         * lib/hash.h: Include <stdbool.h>, for bool.
43685         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
43686         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
43687         hash_get_n_entries, hash_get_max_bucket_length,
43688         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
43689         hash_rehash): Use size_t rather than unsigned.
43690         * lib/hash.c (struct hash_table, hash_get_n_buckets,
43691         hash_get_n_buckets_used, hash_get_n_entries,
43692         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
43693         hash_get_entries, hash_do_for_each, hash_string, is_prime,
43694         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
43695         Likewise.
43696         (SIZE_MAX): Define if not defined.
43697         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
43698         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
43699         hash_print):
43700         Use const * when possible.
43701         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
43702         (check_tuning): Fix bug: if tuning parameters were very close to
43703         0 or 1, rounding errors could have caused subscript violations.
43704         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
43705         (hash_initialize): Add 'fail:' label
43706         to free table and return NULL, and use it to simplify code.
43707         Use calloc rather than clearing the storage ourself.
43708         (hash_initialize, hash_rehash): Check for arithmetic overflow in
43709         buffer size calculations.
43710         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
43711         Include <stddef.h>, for size_t.
43712         * lib/hash-pjw.c (hash_pjw): Likewise.
43713         Switch to method described by Bruno Haible.
43714         Include <limits.h>, for CHAR_BIT.
43715         (SIZE_BITS): New macro.
43716
43717 2003-10-23  Paul Eggert  <eggert@twinsun.com>
43718
43719         * m4/getline.m4 (AM_FUNC_GETLINE):
43720         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
43721         hosts.  Problem reported by Derek Robert Price in
43722         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
43723         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
43724         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
43725
43726 2003-10-21  Paul Eggert  <eggert@twinsun.com>
43727
43728         * lib/getndelim2.c (getndelim2): When size calculation overflows,
43729         ceiling the allocation at NMAX bytes rather than silently
43730         discarding input bytes before NMAX is reached.  This makes
43731         a difference only if NMAX exceeds SIZE_MAX / 2.
43732
43733         * lib/obstack.c: Merge from glibc.
43734         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
43735         Add libc_hidden_def (_obstack_newchunk).
43736         (_obstack_free) [! defined _LIBC]: Remove.
43737         [defined _LIBC]: Make a strong alias from obstack_free, rather than
43738         a clone of the function body.
43739         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
43740         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
43741
43742         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
43743         glibc.
43744         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
43745         arg to memcpy.
43746
43747         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
43748         (obstack_ptr_grow_fast, obstack_int_grow_fast):
43749         Don't use lvalue casts, as GCC plans to remove support for them
43750         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
43751         was also present in the non-GCC version, indicating that this
43752         code had always been buggy and had never been widely used.
43753         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
43754         Use the fast variant of each macro, rather than copying the
43755         definiens of the fast variant; that way, we'll be more likely to
43756         catch future bugs in the fast variants.
43757
43758 2003-10-20  Bruno Haible  <bruno@clisp.org>
43759
43760         * modules/wait-process: New file.
43761         * MODULES.html.sh (func_all_modules): Add wait-process.
43762
43763 2003-10-20  Bruno Haible  <bruno@clisp.org>
43764
43765         * m4/wait-process.m4: New file.
43766
43767 2003-10-20  Bruno Haible  <bruno@clisp.org>
43768
43769         * lib/wait-process.h: New file, from GNU gettext.
43770         * lib/wait-process.c: New file, from GNU gettext.
43771
43772 2003-10-19  Jim Meyering  <jim@meyering.net>
43773
43774         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
43775         HPUX 10.20.
43776
43777 2003-10-18  Karl Berry  <karl@gnu.org>
43778
43779         * config/config.guess: update from config.
43780
43781 2003-10-16  Paul Eggert  <eggert@twinsun.com>
43782
43783         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
43784         (getgroups): First arg is int, not size_t.
43785         Don't let 'free' mangle errno.
43786
43787 2003-10-16  Paul Eggert  <eggert@twinsun.com>
43788
43789         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
43790
43791 2003-10-16  Karl Berry  <karl@gnu.org>
43792
43793         * config/config.{guess,sub}: update from config.
43794
43795 2003-10-16  Jim Meyering  <jim@meyering.net>
43796
43797         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
43798         memcpy.
43799
43800 2003-10-15  Paul Eggert  <eggert@twinsun.com>
43801
43802         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
43803         (SIZE_MAX): Remove.
43804         (new_exclude, add_exclude_file): Initial size no longer needs to
43805         be a power of 2.
43806         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
43807         our own address arithmetic overflow checking.
43808
43809         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
43810         (fnmatch): Do not alloca more than 2000 wide characters;
43811         instead, use malloc for large buffers.
43812         Check for address arithmetic overflow, and return -1
43813         with errno set to ENOMEM in that case.
43814         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
43815         (NEW_PATTERN): Do not alloca more than 8000 bytes;
43816         instead, return -1.  Check for address arithmetic overflow.
43817
43818 2003-10-14  Paul Eggert  <eggert@twinsun.com>
43819
43820         Handle invalid suffixes and overflow independently, so that
43821         callers can treat them independently as needed.  Fix some bugs in
43822         suffix handling, e.g., "100k@" was not diagnosed as an invalid
43823         suffix for a human-readable blocksize.  The major caller-visible
43824         change is the addition of a new
43825         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
43826         that both overflow and suffix chars were found.
43827
43828         * lib/human.c (humblock): Don't check separately for invalid suffix
43829         char; that is xstrtoumax's job (now that its bug is fixed).
43830         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
43831         INTMAX_MAX]: New macros.
43832         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
43833         TYPE_MAXIMUM): New macros.
43834         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
43835         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
43836         if overflow occurs, as it's what __strtol does and it's more useful
43837         in practice.
43838         (__xstrtol): If __strtol reports some error other than ERANGE,
43839         reflect it to the caller as LONGINT_INVALID.  If it reports
43840         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
43841         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
43842         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
43843         value.
43844         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
43845         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
43846         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
43847         [defined UINTMAX_MAX]: New macros.
43848
43849 2003-10-14  Bruno Haible  <bruno@clisp.org>
43850
43851         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
43852
43853 2003-10-14  Bruno Haible  <bruno@clisp.org>
43854
43855         * m4/sig_atomic_t: New file, from GNU gettext.
43856         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
43857
43858 2003-10-14  Bruno Haible  <bruno@clisp.org>
43859
43860         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
43861         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
43862         Also use volatile where needed.
43863
43864 2003-10-12  Paul Eggert  <eggert@twinsun.com>
43865
43866         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
43867         Change maintainer from Bruno Haible to 'all'.
43868
43869 2003-10-12  Paul Eggert  <eggert@twinsun.com>
43870
43871         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
43872
43873 2003-10-12  Paul Eggert  <eggert@twinsun.com>
43874
43875         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
43876         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
43877         and define in terms of the other primitives.
43878         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
43879         (SIZE_MAX): Define if not already defined.
43880         (array_size_overflow): New function.
43881         (xalloc_die): Abort instead of exiting if 'error' returns.
43882         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
43883         (xmalloc, xrealloc): Use them.
43884         (xcalloc): Check for address arithmetic overflow.
43885         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
43886         a bit faster than strcpy.
43887
43888 2003-10-10  Simon Josefsson  <jas@extundo.com>
43889
43890         * modules/argp (Depends-on): Add restrict and strcase.
43891
43892 2003-10-10  Simon Josefsson  <jas@extundo.com>
43893
43894         * m4/argp.m4: Add AC_C_INLINE.
43895
43896 2003-10-08  Paul Eggert  <eggert@twinsun.com>
43897
43898         Merge getpass from libc, plus a few fixes.
43899
43900         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
43901         Include <stdbool.h>.
43902         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
43903         __fsetlocking to empty.
43904         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
43905         do include <bits/libc-lock.h>.
43906         Do not include <fcntl.h>; not needed.
43907         [_LIBC]: Include <wchar.h>.
43908         (NOTCANCEL_MODE): New macro.
43909         (flockfile, funlockfile) [_LIBC]: New macros.
43910         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
43911         [!_LIBC]: New macros.
43912         (call_fclose): New function.
43913         (getpass): Use it.  Save tty stream separately; this simplifies the
43914         code and makes it more reliable if stdin happens to equal stdout.
43915         Invoke __fsetlocking on tty.
43916         Handle thread cancellation if needed.
43917         Namespace cleanup (use __tcgetattr, __getline).
43918         Use bool for Booleans.
43919         [USE_IN_LIBIO]: Handle wide streams.
43920         [!_LIBC]: Unconditionally do the fseek, since we don't know what
43921         stream might go where.
43922
43923         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
43924         doesn't have to include <stdio.h> before us.
43925         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
43926         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
43927         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
43928         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
43929         if not declared, so that we can use getpass.c code from libc without
43930         rewriting it.
43931         (flockfile, ftrylockfile, funlockfile): New macros.
43932
43933 2003-10-08  Paul Eggert  <eggert@twinsun.com>
43934
43935         * modules/getpass: Depend on stdbool.
43936
43937 2003-10-08  Paul Eggert  <eggert@twinsun.com>
43938
43939         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
43940
43941 2003-10-07  Karl Berry  <karl@gnu.org>
43942
43943         * config/config.{guess,sub}: update from config.
43944
43945 2003-10-06  Jim Meyering  <jim@meyering.net>
43946             Bruno Haible  <bruno@clisp.org>
43947
43948         This lets translators provide better translations for the
43949         "Written by ..." part of --version output.
43950         * lib/version-etc.h: Include stdarg.h.
43951         (version_etc_copyright): Declare as readonly.
43952         (version_etc): Make this function variadic with a NULL-terminated list
43953         of author name strings.
43954         (version_etc_va): New declaration.
43955         * lib/version-etc.c: Include stdarg.h, stdlib.h.
43956         (version_etc_copyright): Declare as readonly.
43957         (version_etc_va): New function. Provide a different translatable string
43958         for each possible number of authors < 10. Abbreviate when there are 10
43959         authors or more.
43960         (version_etc): Make this function variadic. Call version_etc_va.
43961         Suggestion from Gary V. Vaughan.
43962
43963         * lib/long-options.h (parse_long_options): Change prototype: the
43964         authors string is moved to the end and becomes variadic.
43965         * lib/long-options.c: Include stdarg.h.
43966         (parse_long_options): Make this function variadic, too.
43967         Call version_etc_va, not version_etc.
43968
43969 2003-10-06  Bruno Haible  <bruno@clisp.org>
43970
43971         * modules/version-etc-2: Remove file.
43972         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
43973
43974 2003-10-06  Bruno Haible  <bruno@clisp.org>
43975
43976         * modules/fatal-signal: New file.
43977         * MODULES.html.sh (func_all_modules): Add fatal-signal.
43978
43979 2003-10-06  Bruno Haible  <bruno@clisp.org>
43980
43981         * m4/fatal-signal.m4: New file.
43982         * m4/signalblocking.m4: New file, from GNU gettext.
43983
43984 2003-10-06  Bruno Haible  <bruno@clisp.org>
43985
43986         * lib/version-etc-2.h: Remove file.
43987         * lib/version-etc-2.c: Remove file.
43988
43989 2003-10-06  Bruno Haible  <bruno@clisp.org>
43990
43991         * lib/fatal-signal.h: New file, from GNU gettext.
43992         * lib/fatal-signal.c: New file, from GNU gettext.
43993
43994 2003-10-05  Paul Eggert  <eggert@twinsun.com>
43995
43996         * README: Rework advice for preventing empty .o files.
43997         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
43998         not <sys/types.h>.
43999
44000 2003-10-04  Karl Berry  <karl@gnu.org>
44001
44002         * lib/argp*: update from libc.
44003
44004 2003-10-04  Karl Berry  <karl@gnu.org>
44005
44006         * config/config.{guess,sub}: update from config.
44007
44008 2003-10-02  Bruno Haible  <bruno@clisp.org>
44009
44010         * modules/lchown (Include): Add lchown.h.
44011         * modules/time_r (Include): Use "..." syntax.
44012         * modules/xgetdomainname (Include): Add xgetdomainname.h.
44013
44014 2003-10-01  Simon Josefsson  <jas@extundo.com>
44015
44016         * MODULES.html.sh (func_all_modules): Move gethostname from section
44017         'based on' to section 'lacking' POSIX:2001.
44018
44019 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
44020
44021         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
44022         to output mode on the same stream.
44023
44024 2003-09-29  Paul Eggert  <eggert@twinsun.com>
44025
44026         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
44027         Fix arg typo in previous patch.
44028
44029 2003-09-28  Jim Meyering  <jim@meyering.net>
44030
44031         * lib/error.c: Correct cpp indentation.
44032
44033 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44034
44035         * modules/free: New file.
44036
44037 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44038
44039         * m4/free.m4: New file.
44040
44041 2003-09-27  Paul Eggert  <eggert@twinsun.com>
44042
44043         * lib/minmax.h (MIN, MAX)
44044         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
44045         Omit the special code that used __typeof__, since we worry that
44046         it could be more trouble than it's worth.  See:
44047         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
44048         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
44049
44050         * lib/free.c: New file.
44051
44052 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
44053
44054         Trivial fixes to Makefile.am parts of module listings.
44055         * modules/strstr: Append strstr.h to lib_SOURCES.
44056         * modules/strcase: Likewise, for strcase.h.
44057
44058 2003-09-27  Karl Berry  <karl@gnu.org>
44059
44060         * config/mkinstalldirs: update from automake.
44061
44062 2003-09-26  Paul Eggert  <eggert@twinsun.com>
44063
44064         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
44065         (error_tail): Do not loop, reallocating temporary buffer, since
44066         the output cannot contain more wide characters than the input
44067         contains bytes, the size must be big enough already.  This avoids
44068         one potential size overflow calculation.  Check for size overflow
44069         when calculating temporary buffer size.  Free temporary buffer
44070         when done, if it was allocated with malloc; this plugs a memory
44071         leak.  Remove casts from void * to pointers, that are no longer
44072         needed now that we're assuming C89 or better.
44073
44074         Merge error changes from glibc.
44075
44076         * lib/error.c, error.h: Update copyright notice header to match glibc.
44077         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
44078         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
44079         Disable cancellation while printing error.
44080         * lib/error.h: Prepend __ to parameter names.
44081
44082 2003-09-26  Jim Meyering  <jim@meyering.net>
44083
44084         * lib/error.c (error_tail): Move some declarations
44085         into inner scope where the local variables are used.
44086
44087 2003-09-26  Bruno Haible  <bruno@clisp.org>
44088
44089         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
44090         stpncpy().
44091         Don't define stpncpy through config.h; it's now done through stpncpy.h.
44092
44093 2003-09-26  Bruno Haible  <bruno@clisp.org>
44094
44095         * lib/stpncpy.h (gnu_stpncpy): New declaration.
44096         (stpncpy): Define as alias for gnu_stpncpy.
44097         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
44098
44099 2003-09-25  Simon Josefsson  <jas@extundo.com>
44100
44101         * lib/xgetdomainname.h: New file.
44102         * lib/xgetdomainname.c: New file.
44103
44104 2003-09-25  Simon Josefsson  <jas@extundo.com>
44105             Bruno Haible  <bruno@clisp.org>
44106
44107         * modules/getdomainname: New file.
44108         * modules/xgetdomainname: New file.
44109         * MODULES.html.sh (func_all_modules): Add getdomainname,
44110         xgetdomainname.
44111
44112 2003-09-25  Simon Josefsson  <jas@extundo.com>
44113             Bruno Haible  <bruno@clisp.org>
44114
44115         * m4/getdomainname.m4: New file.
44116
44117 2003-09-25  Simon Josefsson  <jas@extundo.com>
44118             Bruno Haible  <bruno@clisp.org>
44119
44120         * lib/getdomainname.h: New file.
44121         * lib/getdomainname.c: New file.
44122
44123 2003-09-25  Karl Berry  <karl@gnu.org>
44124
44125         * lib/argp-fmtstream.c, argp-help.c: update from libc.
44126
44127 2003-09-25  Karl Berry  <karl@gnu.org>
44128
44129         * config/install-sh: update from automake.
44130
44131 2003-09-25  Bruno Haible  <bruno@clisp.org>
44132
44133         * modules/version-etc-2: New file, from modules/version-etc with
44134         modifications.
44135         * MODULES.html.sh (func_all_modules): Add version-etc-2.
44136
44137 2003-09-25  Bruno Haible  <bruno@clisp.org>
44138
44139         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
44140         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
44141
44142 2003-09-24  Simon Josefsson  <jas@extundo.com>
44143
44144         * modules/xgethostname: Add xgethostname.h.
44145
44146 2003-09-24  Paul Eggert  <eggert@twinsun.com>
44147
44148         * lib/linebuffer.c (freebuffer): Don't free the argument, just
44149         the buffer associated with the argument.  Bug reported by
44150         Simon Josefsson.
44151
44152 2003-09-24  Paul Eggert  <eggert@twinsun.com>
44153
44154         * README: Document assumptions that 'int' is at least 32 bits
44155         wide, that integer arithmetic is 2's complement without overflow,
44156         that there are no holes in integer values, that adding sizes of
44157         two nonoverlapping objects can't overflow, and that all-bits-zero
44158         yields scalar zero.  Fix spelling and capitalization typos.
44159
44160 2003-09-19  Karl Berry  <karl@gnu.org>
44161
44162         * lib/argp.h: update from libc.
44163
44164 2003-09-17  Paul Eggert  <eggert@twinsun.com>
44165
44166         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
44167         to avoid spurious warnings like "AC_RUN_IFELSE was called before
44168         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
44169
44170 2003-09-17  Paul Eggert  <eggert@twinsun.com>
44171
44172         * gnulib-tool: Use "test -h", not "test -L", for portability
44173         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
44174         (tags_regexp): Remove, since \| doesn't conform to POSIX.
44175         (sed_extract_prog): Issue s commands one-by-one, rather than
44176         using \| in one s command.
44177
44178 2003-09-16  Paul Eggert  <eggert@twinsun.com>
44179
44180         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
44181         input error, instead of returning NULL the next time we are called
44182         (and therefore losing track of errno).
44183
44184 2003-09-16  Bruno Haible  <bruno@clisp.org>
44185
44186         * gnulib-tool (func_create_testdir): Warn about duplicated
44187         dependencies.
44188
44189 2003-09-15  Paul Eggert  <eggert@twinsun.com>
44190
44191         * modules/argmatch, modules/fatal, modules/obstack,
44192         modules/xalloc, modules/xgethostname: Sort dependencies by
44193         importance, not alphabetically.
44194
44195 2003-09-15  Paul Eggert  <eggert@twinsun.com>
44196
44197         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
44198         fails, so that the caller gets the proper errno.
44199
44200         * lib/readutmp.c (read_utmp): Likewise.
44201         Check for fstat error.  Close stream and free storage
44202         when failing.
44203
44204 2003-09-14  Karl Berry  <karl@gnu.org>
44205
44206         * config/srclist.txt (strdup.c): disable for c89 changes.
44207
44208 2003-09-14  Jim Meyering  <jim@meyering.net>
44209
44210         * lib/getloadavg.c: Correct cpp indentation.
44211         * lib/strdup.c: Likewise.
44212         * lib/vasnprintf.c: Likewise.
44213
44214 2003-09-14  Bruno Haible  <bruno@clisp.org>
44215
44216         * modules/fwriteerror: New file.
44217         * MODULES.html.sh (func_all_modules): Add fwriteerror.
44218
44219 2003-09-14  Bruno Haible  <bruno@clisp.org>
44220
44221         * lib/fwriteerror.h: New file.
44222         * lib/fwriteerror.c: New file.
44223
44224 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44225
44226         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
44227         modules/xgethostname, modules/xalloc: Depend on exit.
44228
44229 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44230
44231         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
44232
44233         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
44234         and AC_MINIX, too, so that their extensions are available.
44235
44236         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
44237         This macro has been superseded by gl_BACKUPFILE.
44238
44239         More patches to assume C89 or better.
44240
44241         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
44242
44243         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
44244         unconditionally.
44245         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
44246         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
44247         Include <string.h>, <stdlib.h> unconditionally.
44248         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
44249         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
44250         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
44251         headers or for string.h.
44252         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
44253         or strtoul.
44254
44255         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
44256         headers.
44257         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
44258         * m4/userspec.m4 (gl_USERSPEC): Likewise.
44259         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
44260         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
44261         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
44262         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
44263         memcpy, memset.
44264         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
44265         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
44266         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
44267         strtol.
44268         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
44269         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
44270         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
44271         strtoul.
44272
44273 2003-09-12  Paul Eggert  <eggert@twinsun.com>
44274
44275         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
44276         * lib/obstack.c [!defined _LIBC]: Likewise.
44277         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
44278         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
44279         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
44280
44281         More changes to assume C89 or better.
44282
44283         * lib/error.c (error_tail): Assume vprintf.
44284
44285         * lib/argmatch.c (getenv): Remove decl.
44286         * lib/progreloc.c (get_full_program_name): Define via prototype.
44287         * lib/setenv.c (clearenv): Likewise.
44288         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
44289         needed.
44290         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
44291         (malloc, memcpy): Remove decls.
44292         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
44293         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
44294         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
44295         (memcpy): Remove macro.
44296         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
44297         (__P): Remove.  All uses removed.
44298         (PTR): Remove.  All uses changed to void *.
44299         (CHAR_BIT, NULL): Remove.
44300         (spaces, zeros, memset_space, memset_zero)
44301         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
44302         Remove.
44303         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
44304         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
44305         Define with prototype.
44306         Remove now-unnecessary prototype decl.
44307         (extra_args_spec): Assume ANSI C.  All uses changed.
44308         (extra_args_spec_iso): Remove.
44309         (my_strftime, emacs_strftimeu): Define via prototype.
44310         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
44311         unconditionally.
44312         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
44313         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
44314         (strtoul, strtol): Remove decls.
44315         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
44316         LONG_MAX): Remove.
44317         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
44318         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
44319         (LOCALE_PARAM_PROTO): New macro.
44320         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
44321         (INTERNAL (strtol), strtol): Define with a prototype.
44322         (PARAMS): Remove.  All uses removed.
44323         * lib/tempname.c: Include <string.h> unconditionally.
44324         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
44325         * lib/xgethostname.c (main): Define with a prototype.
44326         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
44327         Include <stdlib.h> unconditionally.
44328         (calloc, malloc, realloc, free): Remove decls.
44329         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
44330         Include <stdlib.h> unconditionally.  Sort include file names.
44331         (strtod): Remove.
44332         (xstrtod): Define with a prototype.
44333         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
44334         (strtol, strtoul): Remove decls.
44335
44336 2003-09-11  Paul Eggert  <eggert@twinsun.com>
44337
44338         More patches to assume C89 or better.
44339         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
44340         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
44341         string.h, memchr, STDC_HEADERS.
44342
44343 2003-09-11  Paul Eggert  <eggert@twinsun.com>
44344
44345         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
44346         Include <stdlib.h>, <string.h> unconditionally.
44347         Remove now-unnecessary cast to char *.
44348         * lib/strnlen.c: Include <string.h> unconditionally.
44349         * lib/yesno.c (yesno): Define with a prototype.
44350
44351 2003-09-11  Bruno Haible  <bruno@clisp.org>
44352
44353         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
44354
44355 2003-09-10  Jim Meyering  <jim@meyering.net>
44356
44357         * lib/error.c: Correct indentation of cpp directives.
44358
44359 2003-09-10  Bruno Haible  <bruno@clisp.org>
44360
44361         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
44362         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
44363         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
44364         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
44365         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
44366         <stdlib.h> and <string.h> checks.
44367         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
44368         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
44369
44370 2003-09-10  Bruno Haible  <bruno@clisp.org>
44371
44372         * lib/strcspn.c: Include <string.h> unconditionally.
44373         * lib/strpbrk.c: Include <string.h> unconditionally.
44374         * lib/strstr.c: Include <string.h> unconditionally.
44375         * lib/unicodeio.c: Include <string.h> unconditionally.
44376         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
44377         * lib/unsetenv.c: Likewise.
44378         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
44379         * lib/yesno.c: Include <stdlib.h> unconditionally.
44380         (rpmatch): Add prototype.
44381
44382 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44383
44384         More patches to assume C89 or better.
44385         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
44386         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
44387         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
44388         or for string.h.
44389         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
44390         stdlib.h.
44391         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
44392         C headers.
44393         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
44394         string.h.
44395         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
44396         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
44397         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
44398         or for string.h.
44399         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
44400         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
44401         C headers.
44402         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
44403         memcpy.
44404         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
44405         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
44406         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
44407         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
44408         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
44409         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
44410         string.h, free.
44411         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
44412         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
44413         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
44414         C headers, or for string.h.
44415         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
44416         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
44417         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
44418         headers, memory.h, stdlib.h, string.h, strings.h.
44419         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
44420         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
44421         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
44422         strchr.
44423         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
44424         headers, memory.h, string.h.
44425         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
44426         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
44427         free.
44428         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
44429         headers.
44430         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
44431         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
44432         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
44433         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
44434         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
44435
44436 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44437
44438         More K&R removal.
44439
44440         * lib/acosl.c (main): Use a prototype.
44441         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
44442         tanl.c: Likewise.
44443
44444         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
44445
44446         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
44447         (getopt, etopt_long, getopt_long_only, _getopt_internal)
44448         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
44449         with a prototype.
44450         * lib/getopt.c (const): Remove macro.
44451         Include <string.h> unconditionally.
44452         (my_index): Remove; all uses changed to strchr.
44453         (strlen): Remove decl.
44454         (exchange): Remove forward decl; no longer needed.
44455         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
44456         Define with prototype.
44457         * lib/getopt1.c (const): Remove macro.
44458         (getopt_long, getopt_long_only, main): Define with prototype.
44459
44460         * lib/getugroups.c: Include <string.h> unconditionally.
44461
44462         * lib/getusershell.c: Include <stdlib.h> unconditionally.
44463         (getusershell, setusershell, endusershell, readname, main):
44464         Define with prototypes.
44465
44466         * lib/group-member.c: Include group-member.h first.
44467         Include <stdlib.h> unconditionally.
44468
44469         * lib/hard-locale.c: Include hard-locale.h first.
44470         Include <stdlib.h>, <string.h> unconditionally.
44471
44472         * lib/hash.c (free, malloc): Remove decls.
44473         Include <stdlib.h> unconditionally.
44474
44475         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
44476         (getenv): Do not declare.
44477
44478         * lib/idcache.c: Include <string.h> unconditionally.
44479
44480         * lib/long-options.c: Include long-options.h first, to test interface.
44481         Include <stdlib.h> unconditionally.
44482
44483         * lib/makepath.c: Include makepath.h first, to test interface.
44484         Include <stdlib.h> and <string.h> unconditionally.
44485
44486         * lib/linebuffer.c: Include <stdlib.h>.
44487         (free): Remove decl.
44488
44489         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
44490         stddef.h. rpl_malloc returns void *, not char *.
44491         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
44492         prototype.
44493
44494         * lib/md5.h: Include <limits.h> unconditionally.
44495         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
44496         (__P): Remove; all uses removed.
44497         * lib/md5.c: Include "md5.h" first.
44498         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
44499         md5_buffer, md5_process_bytes, md5_process_block):
44500         Define with prototypes.
44501         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
44502         * lib/sha.c: Include "sha.h" first.
44503         Include <stdlib.h>, <string.h> unconditionally.
44504
44505         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
44506         * lib/memcmp.c (__ptr_t): Likewise.
44507         * lib/memrchr.c (__ptr_t): Likewise.
44508         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
44509         Include <string.h> unconditionally.
44510         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
44511         * lib/memchr.c: Include <stdlib.h> unconditionally.
44512         * lib/memchr.c (LONG_MAX): Remove.
44513         * lib/memrchr.c (LONG_MAX): Likewise.
44514         * lib/memchr.c (__memchr): Define via a prototype.
44515         * lib/memrchr.c (__memrchr): Likewise.
44516         * lib/memcmp.c (__P): Remove, and remove all uses.
44517         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
44518         Remove forward decls; no longer needed.
44519         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
44520         Use types required by C89 in prototype.
44521
44522         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
44523         * lib/savedir.c: Likewise.
44524         * lib/mkdir.c (free): Remove decl.
44525         * lib/rmdir.c (rmdir): Define with a prototype.
44526         * lib/savedir.c: Include savedir.h first, to test interface.
44527
44528         * lib/mktime.c (STDC_HEADERS): Remove.
44529         Include <stdlib.h>, <string.h> unconditionally.
44530
44531         * lib/modechange.c: Include <stdlib.h> unconditionally.
44532         (malloc): Remove decl.
44533
44534         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
44535         (free): Remove decl.
44536
44537         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
44538         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
44539         (This type really should be intptr_t, but that's a C99ism.)
44540         (_obstack_memcpy): Remove: all uses changed to memcpy.
44541         Include <string.h> unconditionally.
44542         (struct obstack): Assume __STDC__ for types of members
44543         chunkfun, freefun, extra_arg.
44544         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
44545         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
44546         obstack_begin, obstack_specify_allocation,
44547         obstack_specify_allocation_with_arg, obstack_chunkfun,
44548         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
44549         Remove unprototyped decls and the macros that use them.
44550         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
44551         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
44552         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
44553         (defined __STDC__ && __STDC__)]:
44554         Remove nonprototyped code.
44555         Include <stdlib.h> unconditionally.
44556         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
44557         _obstack_allocated_p, _obstack_free, obstack_free,
44558         _obstack_memory_used, print_and_abort):
44559         Define using prototypes.
44560         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
44561         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
44562         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
44563         obstack_next_free, obstack_object_size, obstack_room) [0]:
44564         Remove unused, unprototyped code.
44565
44566         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
44567
44568         * lib/physmem.c (physmem_total, physmem_available, main): Define
44569         with prototypes.
44570
44571         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
44572         (main): Define with a prototype.
44573
44574         * lib/posixver.c (getenv): Remove decl.
44575
44576         * lib/putenv.c (malloc): Returns void *, not char *.
44577         Include <string.h> unconditionally.
44578         (strchr, memcpy, NULL): Do not define.
44579
44580         * lib/readtokens.c: Include readtokens.h first, to test interface.
44581         Include <stdlib.h>, <string.h> unconditionally.
44582         (init_tokenbuffer): Define with a prototype.
44583
44584         * lib/regex.c (PARAMS): Remove.  All uses removed.
44585         All uses of _RE_ARGS removed, too.
44586         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
44587         unconditionally.
44588         (bzero): Assume memset exists.
44589         (memcmp, memcpy, NULL): Remove.
44590         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
44591         char, or assignments to local vars of type signed char.
44592         (init_syntax_once, PREFIX(extract_number_and_incr),
44593         PREFIX(print_partial_compiled_pattern),
44594         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
44595         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
44596         PREFIX(regex_grow_registers), PREFIX(regex_compile),
44597         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
44598         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
44599         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
44600         wcs_compile_range, byte_compile_range, truncate_wchar,
44601         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
44602         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
44603         count_mbs_length, wcs_re_match_2_internal,
44604         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
44605         PREFIX(alt_match_null_string_p),
44606         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
44607         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
44608         regfree, PREFIX(extract_number)): Define with prototype.  Remove
44609         now-unnecessary declaration, if any.
44610         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
44611         regcomp, regexec):
44612         Remove now-unnecessary casts among pointer types.
44613         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
44614
44615         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
44616         (free): Remove decl.
44617
44618         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
44619
44620         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
44621         (free): Remove decl.
44622
44623         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
44624         * lib/xgetcwd.c: Likewise.
44625
44626         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
44627         (free): Remove decl.
44628
44629         * lib/strchrnul.c (strchrnul): Define with a prototype.
44630         Fix bug: c_in was not converted to char before searching.
44631
44632         The following changes are not K&R related:
44633
44634         * lib/group-member.h: Include <sys/types.h>, so that this file is
44635         self-contained.
44636         * lib/makepath.h: Likewise.
44637
44638         * lib/getusershell.c (readname, default_index, line_size, readname):
44639         Use size_t, not int, for sizes.
44640         (readname): If the size overflows, report an error instead of
44641         looping forever.
44642
44643 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44644
44645         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
44646         libc.
44647
44648 2003-09-09  Paul Eggert  <eggert@twinsun.com>
44649
44650         * README: New section: portability guidelines.
44651
44652 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
44653
44654         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
44655         C89 spec.
44656
44657 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
44658
44659         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
44660
44661 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44662
44663         Assume C89 or better; remove K&R cruft.
44664         A few of these changes were first proposed by Derek Robert Price
44665         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
44666
44667         * lib/addext.c: Include <string.h> unconditionally.
44668         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
44669         Don't declare getenv or malloc.
44670
44671         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
44672         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
44673         (NULL): Remove.
44674         (find_stack_direction, alloca): Use prototypes.
44675
44676         * lib/atexit.c (atexit): Define using a prototype.
44677
44678         * lib/basename.c, dirname.c, stripslash.c:
44679         Include <string.h> unconditionally.
44680
44681         * lib/bcopy.c: Include <stddef.h>.
44682         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
44683
44684         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
44685
44686         * lib/error.h (error, error_at_line, error_print_progname)
44687         [! (defined (__STDC__) && __STDC__)]: Remove decls.
44688         * lib/error.c: Include error.h first, to check interface.
44689         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
44690         (VA_START): Remove; all uses changeed to va_start.
44691         (exit, strerror): Remove decls.
44692         (error_print_progname): Prototype uncondionally.
44693         Don't include <errno.h>; no longer needed.
44694         (private_strerror): Remove.
44695         (error_tail): Always define.
44696         (error, error_at_line): Assume C89 or better; always use prototypes.
44697         * lib/fatal.c: Include "fatal.h" first, to test interface.
44698         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
44699         (VA_START): Remove; all uses changed to va_start.
44700         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
44701         this case.
44702         (exit): Remove decl.
44703         (fatal): Prototype unconditionally.  Assume va_start works.
44704         Abort at end, to pacify gcc.
44705
44706         * lib/euidaccess.c (main): Define with a prototype.
44707
44708         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
44709
44710         * lib/exitfail.c: Include <stdlib.h> unconditionally.
44711
44712         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
44713         prototypes.
44714         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
44715         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
44716         (getenv): Remove decl.
44717         (fnmatch): Define using a prototype.
44718         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
44719         (FCT): Define using a prototype.
44720
44721         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
44722
44723         * lib/gethostname.c: Include <stddef.h>.
44724         (gethostname): Define with prototype.  Length is size_t, not int.
44725
44726 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44727
44728         Assume C89 or better; remove K&R cruft.
44729         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
44730         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
44731         string.h, getenv, malloc.
44732         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
44733         headers.
44734         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
44735         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
44736         do not check for strerror.
44737         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
44738         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
44739         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
44740         do not check for doprnt or vprintf.
44741         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
44742         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
44743
44744 2003-09-08  Paul Eggert  <eggert@twinsun.com>
44745
44746         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
44747         getversion.c should have been removed then, but was accidentally
44748         preserved.
44749
44750         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
44751         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
44752
44753 2003-09-08  Karl Berry  <karl@gnu.org>
44754
44755         * config/config.sub, config.guess, srclistvars.sh: update from savannah
44756                 config, forget about prep.
44757
44758         * config/depcomp, missing: update from automake.
44759
44760 2003-09-07  Paul Eggert  <eggert@twinsun.com>
44761
44762         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
44763         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
44764
44765 2003-09-07  Paul Eggert  <eggert@twinsun.com>
44766
44767         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
44768         copy_tm_result.  Bug reported by Simon Josefsson in
44769         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
44770
44771 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44772
44773         * m4/time_r.m4: New file.
44774         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
44775         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
44776         is. Check for timegm declaration.
44777         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
44778         Do not check for gmtime_r.
44779         Replace mktime if __mktime_internal does not exist and if mktime
44780         hasn't been replaced already.
44781
44782 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44783
44784         * lib/time_r.c, lib/time_r.h: New files.
44785
44786         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
44787         __localtime_r.
44788         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
44789         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
44790
44791         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
44792         __gmtime_r.
44793         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
44794         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
44795         Include <time_r.h>.
44796
44797         * lib/timegm.c: Switch to glibc implementation, with the following
44798         changes:
44799         [defined HAVE_CONFIG_H]: Include <config.h>.
44800         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
44801         (__mktime_internal) [!defined _LIBC]: New decl.
44802         (__gmtime_r) [!defined _LIBC]: New macro and function.
44803         (timegm): Use a prototype, since gnulib assumes C89.
44804         Do not bother declaring tmp to be const, as it's not really usefu.
44805         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
44806         (timegm): Declare only if HAVE_DECL_TIMEGM.
44807
44808 2003-09-06  Paul Eggert  <eggert@twinsun.com>
44809
44810         * MODULES.html.sh (func_all_modules): Add time_r.
44811         * modules/time_r: New file.
44812         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
44813         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
44814
44815 2003-09-03  Paul Eggert  <eggert@twinsun.com>
44816
44817         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
44818         Bug reported by Lute Kamstra in
44819         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
44820
44821         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
44822         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
44823         course with correspondingly smaller numbers for tomorrow and
44824         yesterday.  From Tadayoshi Funaba.  Originally installed into
44825         sh-utils on 1999-08-07, but the patch got lost (I guess during the
44826         coreutils merge?).
44827
44828 2003-08-31  Simon Josefsson  <jas@extundo.com>
44829
44830         * modules/timegm: New file.
44831         * MODULES.html.sh (func_all_modules): Add timegm.
44832
44833 2003-08-31  Simon Josefsson  <jas@extundo.com>
44834
44835         * m4/timegm.m4: New file.
44836
44837 2003-08-31  Simon Josefsson  <jas@extundo.com>
44838
44839         * lib/timegm.h: New file.
44840         * lib/timegm.c: New file.  Based on
44841         wget-1.8.2/src/http.c:mktime_from_utc.
44842
44843 2003-08-31  Karl Berry  <karl@gnu.org>
44844
44845         * lib/argp.h: update from libc.
44846
44847 2003-08-28  Bruno Haible  <bruno@clisp.org>
44848
44849         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
44850         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
44851         followed by '#define fnmatch fnmatch_posix' gives an error.
44852
44853 2003-08-28  Bruno Haible  <bruno@clisp.org>
44854
44855         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
44856         warning on QNX, which defines O_BINARY to 000000.
44857
44858 2003-08-27  Jim Meyering  <jim@meyering.net>
44859
44860         * m4/mkstemp.m4: Require that the system mkstemp be able to create
44861         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
44862         would fail after 32.  Reported by Danny Levinson.  Details here:
44863         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
44864
44865 2003-08-24  Bruno Haible  <bruno@clisp.org>
44866
44867         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
44868         MSVC7 <stdio.h> is included later.
44869
44870 2003-08-22  Simon Josefsson  <jas@extundo.com>
44871
44872         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
44873
44874 2003-08-20  Karl Berry  <karl@gnu.org>
44875
44876         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
44877
44878 2003-08-20  Bruno Haible  <bruno@clisp.org>
44879
44880         * modules/progname: New file.
44881         * MODULES.html.sh (func_all_modules): Add progname.
44882
44883 2003-08-20  Bruno Haible  <bruno@clisp.org>
44884
44885         * lib/progname.h: New file, from GNU gettext.
44886         * lib/progname.c: New file, from GNU gettext.
44887         * lib/progreloc.c: New file, from GNU gettext.
44888
44889 2003-08-19  Jim Meyering  <jim@meyering.net>
44890
44891         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
44892         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
44893
44894 2003-08-19  Bruno Haible  <bruno@clisp.org>
44895
44896         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
44897         more.
44898
44899 2003-08-19  Bruno Haible  <bruno@clisp.org>
44900
44901         * lib/xstrdup.c: Assume <string.h> exists.
44902
44903 2003-08-18  Paul Eggert  <eggert@twinsun.com>
44904
44905         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
44906         in makefile rules.
44907
44908 2003-08-18  Jim Meyering  <jim@meyering.net>
44909
44910         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
44911         * m4/lib-ld.m4: Likewise.
44912
44913 2003-08-18  Jim Meyering  <jim@meyering.net>
44914
44915         * lib/setenv.h: Indent nested cpp directive.
44916         * lib/vasnprintf.c: Remove trailing blanks.
44917
44918 2003-08-17  Simon Josefsson  <jas@extundo.com>
44919
44920         * modules/xstrndup: New file.
44921         * MODULES.html.sh (func_all_modules): Add xstrndup.
44922
44923 2003-08-17  Simon Josefsson  <jas@extundo.com>
44924
44925         * modules/argp: Fix autoconf macro name. Add more dependencies.
44926
44927 2003-08-17  Simon Josefsson  <jas@extundo.com>
44928
44929         * m4/xstrndup.m4: New file.
44930
44931 2003-08-17  Simon Josefsson  <jas@extundo.com>
44932
44933         * m4/argp.m4: New file.
44934
44935 2003-08-17  Simon Josefsson  <jas@extundo.com>
44936             Bruno Haible  <bruno@clisp.org>
44937
44938         * lib/xstrndup.h: New file.
44939         * lib/xstrndup.c: New file.
44940
44941 2003-08-17  Bruno Haible  <bruno@clisp.org>
44942
44943         * modules/strndup (Files, Include): Add lib/strndup.h.
44944
44945 2003-08-17  Bruno Haible  <bruno@clisp.org>
44946
44947         * modules/euidaccess (Files): Add lib/euidaccess.h.
44948
44949 2003-08-17  Bruno Haible  <bruno@clisp.org>
44950
44951         * lib/strndup.h: New file.
44952
44953 2003-08-17  Bruno Haible  <bruno@clisp.org>
44954
44955         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
44956         like AC_GNU_SOURCE.
44957         * modules/extensions (configure.ac): Comment out the invocation of
44958         gl_USE_SYSTEM_EXTENSIONS.
44959
44960 2003-08-16  Paul Eggert  <eggert@twinsun.com>
44961
44962         Merges from coreutils, etc.
44963         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
44964         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
44965         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
44966         fixing a typo.
44967         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
44968         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
44969
44970 2003-08-16  Paul Eggert  <eggert@twinsun.com>
44971
44972         Document merge from coreutils.
44973         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
44974         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
44975         * modules/utime: Add m4/utimes-null.m4.
44976
44977 2003-08-16  Paul Eggert  <eggert@twinsun.com>
44978
44979         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
44980         space, undoing this 2003-08-12 change:
44981         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
44982
44983 2003-08-16  Paul Eggert  <eggert@twinsun.com>
44984
44985         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
44986         strtoul.c from libc, undoing this 2003-08-12 change:
44987         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
44988
44989 2003-08-16  Jim Meyering  <jim@meyering.net>
44990
44991         Merges from coreutils.
44992         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
44993         prefix.  Adjust cache variables similarly.  Create 500 rather than
44994         just 300 files, to exercise bug on Darwin6.5, too.
44995         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
44996         $missing_dir.
44997         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
44998         AM_SYS_POSIX_TERMIOS.
44999         Reported by mkc@mathdogs.com.
45000         Also change use of $am_cv_sys_posix_termios
45001         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
45002         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
45003         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
45004         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
45005         in /proc/mounts until it finds one with matching device number.  This
45006         is unnecessary when the FILE argument *is* a mount point.  No stat call
45007         is necessary in that case.  So, disable the statvfs-testing code on
45008         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
45009         as RedHat bug# 84846.
45010         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
45011         to 1MB, so as not to render systems with no stack size limit (e.g.,
45012         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
45013         Include <unistd.h>.  On some systems,
45014         it is required for the definition of _SC_PAGESIZE.
45015
45016 2003-08-16  Jim Meyering  <jim@meyering.net>
45017
45018         Merge from coreutils.
45019         * lib/xstrtoimax.c: #else #if -> #elif.
45020         * lib/xstrtoumax.c: Likewise.
45021
45022 2003-08-16  Jim Meyering  <jim@meyering.net>
45023
45024         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
45025         * m4/utimes.m4: Removed.
45026         * m4/utimes-null.m4: Renamed from utimes.m4.
45027
45028         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
45029         to 1MB, so as not to render systems with no stack size limit (e.g.,
45030         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
45031         Include <unistd.h>.  On some systems,
45032         it is required for the definition of _SC_PAGESIZE.
45033
45034 2003-08-16  Jim Meyering  <jim@meyering.net>
45035         and Paul Eggert  <eggert@cs.ucla.edu>
45036
45037         Merges from coreutils, etc.
45038
45039         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
45040         using the latest version from cvs.  This avoids problems with #line
45041         directives using a vendor (Sun) compiler.
45042         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
45043         Don't set GETGROUPS_LIB here; now it's
45044         done via getgroups.m4's wrapper function.
45045         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
45046         rather than just in sh-util/configure.in, so that the
45047         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
45048         same.
45049         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
45050         AC_FUNC_GETLOADAVG where to find getloadavg.c.
45051         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
45052         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
45053         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
45054         Remove code that is now done by the newly-required macros.
45055         Append $(EXEEXT) to DF_PROG.
45056         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
45057         Do not invoke or require the following here,
45058         since prereq.m4 or some gnulib .m4 now does this for us:
45059         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
45060         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
45061         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
45062         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
45063         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
45064         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
45065         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
45066         AC_FUNC_OBSTACK.
45067         Do not replace the following functions, as this is now the job
45068         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
45069         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
45070         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
45071         atexit getpass, strdup, getpagesize.
45072         Replace 'raise'.
45073         Do not check for the following functions, as this is now the job
45074         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
45075         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
45076         setregid.
45077         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
45078         Check for sys/sysctl.h.
45079         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
45080         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
45081         of checking for ssize_t ourselves.
45082
45083         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
45084         Require every macro that gnulib/modules/* suggests for us.
45085         (jm_PREREQ_ADDEXT): New macro.
45086         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
45087         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
45088
45089         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
45090         (gl_PHYSMEM): Use it.
45091         Also check for `table' function.
45092         Check for new headers and functions.
45093         Add check for sys/sysmp.h.
45094         With suggestions from Kaveh Ghazi.
45095         Ignore headers that are present but cannot be compiled.  This
45096         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
45097         C 5.4.
45098
45099 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45100
45101         Document merge from coreutils.
45102         * modules/userspec: Depend on posixver.
45103         * modules/strftime: Depend on tzset.
45104
45105 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45106
45107         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
45108         rather than tab, after '#' in shell-script copyright notices.
45109         Suggested by Bruno Haible.
45110
45111 2003-08-15  Paul Eggert  <eggert@twinsun.com>
45112
45113         * config/srclist-update: Use three spaces, rather than tab, after '#'
45114         in shell-script copyright notices.  Suggested by Bruno Haible.
45115         Remove unnecessary parenthesization in regular expression.
45116
45117 2003-08-15  Jim Meyering  <jim@meyering.net>
45118
45119         Merge from coreutils.
45120         * lib/xgethostname.c: Include <stdlib.h>.
45121         (xghostname): Don't exit for anything other than memory-related
45122         failure; just return NULL.
45123         * lib/userspec.c: Include "posixver.h".
45124         (parse_user_spec): Accept `.' as a separator only
45125         in pre-POSIX-200112 mode.
45126         * lib/strtoimax.c: Use #elif rather than #else #if.
45127         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
45128         Remove function, now that we can rely on a working tzset function.
45129         [!_LIBC]: Ensure that the required autoconf test has been run.
45130         [!defined _NL_CURRENT && HAVE_STRFTIME]:
45131         Use underlying_strftime for %r.
45132         * lib/sha.c: Merge in some clean-up and optimization changes from
45133         glibc.
45134         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
45135         Ensure that it is a multiple of 64.
45136         Rearrange loop exit tests so as to avoid performing an
45137         additional fread after encountering an error or EOF.
45138         * lib/realloc.c: Update copyright date.
45139
45140 2003-08-15  Jim Meyering  <jim@meyering.net>
45141         and Paul Eggert  <eggert@twinsun.com>
45142
45143         Merge from coreutils.
45144         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
45145         member but strut utmpx does not.  Needed for AIX 4.3.3.
45146         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
45147
45148 2003-08-15  Jim Meyering  <jim@meyering.net>
45149         and Paul Eggert  <eggert@cs.ucla.edu>
45150
45151         Merges from coreutils, etc.
45152         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
45153         Require gl_FUNC_TZSET_CLOBBER.
45154         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
45155         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
45156         members.
45157
45158 2003-08-14  Paul Eggert  <eggert@twinsun.com>
45159
45160         Help the merge from coreutils.
45161         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
45162         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
45163         * m4/tzset.m4: Use it too.
45164
45165 2003-08-14  Paul Eggert  <eggert@twinsun.com>
45166
45167         * modules/tzset: New file.
45168
45169 2003-08-14  Jim Meyering  <jim@meyering.net>
45170
45171         Merges from coreutils.
45172         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
45173         variable names, rather than @FNMATCH_H@.
45174         * modules/alloca: Likewise for $(ALLOCA_H).
45175
45176         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
45177         the three copies of the literal target, `fnmatch.h'.
45178         * modules/alloca (alloca.h): Likewise.
45179
45180 2003-08-14  Jim Meyering  <jim@meyering.net>
45181
45182         Merge from coreutils.
45183         * m4/tzset.m4: New file.
45184         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
45185         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
45186         otherwise, AIX 5.1 systems would end up using the latter.
45187         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
45188         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
45189         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
45190         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
45191
45192 2003-08-14  Jim Meyering  <jim@meyering.net>
45193
45194         Merge from coreutils.
45195         * lib/obstack.h: Whitespace changes.
45196         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
45197         and xcalloc return values.
45198         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
45199         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
45200         hang on OSF/1 5.1 for DIR on both local and remote file systems.
45201         Reported by (and fix confirmed by) Nelson H. F. Beebe.
45202         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
45203         error from mntctl.
45204         Use mntctl's return value to drive the entry-processing loop, since
45205         we can't rely on the value of the vmt_length member in the last
45206         entry.  On some systems doing so could result in exhausting
45207         virtual memory.  Based in part on a patch from Mike Jetzer.
45208
45209 2003-08-14  Jim Meyering  <jim@meyering.net>
45210         and Paul Eggert  <eggert@twinsun.com>
45211
45212         Merges from coreutils, plus other fixes.
45213         * lib/physmem.c: Merge in portability changes from gcc/libiberty
45214         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
45215         for credits and details.  Thanks to Kaveh Ghazi for helping
45216         to keep these files in sync.
45217         (ARRAY_SIZE): Define it.
45218         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
45219         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
45220         (memcasecmp): Don't assume size_t fits in unsigned int.
45221         Remove casts and duplicate code.
45222         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
45223         (memcpy): Remove definition.
45224         Merge in some clean-up and optimization changes from glibc.
45225         [BLOCKSIZE]: Move definition to top of file.
45226         Ensure that it is a multiple of 64.
45227         Rearrange loop exit tests so as to avoid performing an
45228         additional fread after encountering an error or EOF.
45229         * lib/md5.h (md5_uintptr): Define.
45230         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
45231         return to the initial working directory.  Preserve errno
45232         for caller.
45233         * lib/idcache.c: Include "xalloc.h".
45234         (xmalloc, xrealloc): Remove decls.
45235         (getuser): Remove casts no longer required in C89.
45236         * lib/human.c: Include stdio.h, for sprintf.
45237         * lib/group-member.c: Include "xalloc.h".
45238         (xmalloc, xrealloc): Remove decls.
45239         (get_group_info): Remove casts no longer required in C89.
45240         * lib/getusershell.c (readname): Remove casts no longer required in
45241         C89.
45242         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
45243         * lib/getline.c: Whitespace fix, from coreutils.
45244
45245 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45246
45247         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
45248         Check for isascii.
45249
45250         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
45251         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
45252         Undo previous (whitespace-only) change.
45253
45254 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45255
45256         * lib/exclude.c: Include <ctype.h>
45257         (IN_CTYPE_DOMAIN): New macro.
45258         (is_space): New fn.
45259         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
45260         and empty lines.
45261
45262         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
45263         Undo previous (whitespace-only) change.
45264
45265 2003-08-13  Paul Eggert  <eggert@twinsun.com>
45266
45267         * config/srclist-update: Change update back to the old behavior,
45268         leaving whitespace alone.  Use one 'sed' command rather than a
45269         pipeline.
45270         (fixlicense): Now a variable, not a function.
45271         (remove_trailing_blanks): Remove.
45272         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
45273         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
45274         Undo previous (whitespace-only) change.
45275
45276 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45277
45278         Merge from coreutils.
45279         * modules/euidaccess: Add lib_SOURCES, include for new
45280         file euidaccess.h
45281
45282 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45283
45284         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
45285         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
45286         Normalize leading white space and remove trailing white space.
45287
45288         Merge from coreutils
45289         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
45290
45291         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
45292         0.12.1.  These files are now being upgraded automatically by
45293         ../config/srclist-update.
45294
45295 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45296
45297         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
45298         Normalize leading white space and remove trailing white space.
45299         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
45300         notice, as per ../config/srclist-update.
45301
45302         Merge from coreutils.
45303         * lib/euidaccess.h: New file.
45304         * lib/euidaccess.c: Include it.
45305         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
45306         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
45307         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
45308
45309 2003-08-12  Paul Eggert  <eggert@twinsun.com>
45310
45311         * config/srclist-update: Add copyright notice.
45312         (remove_id_lines, remove_trailing_blanks): New constants.
45313         (fixfile): Use them to normalize spacing a bit in copied files.
45314         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
45315         Normalize leading white space and remove trailing white space.
45316
45317         * config/texinfo.tex: Sync with texinfo.
45318
45319         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
45320         strtoul.c from libc, to merge coreutils whitespace changes.
45321
45322         * config/srclist.txt: Get the following m4 files from gettext:
45323         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
45324         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
45325         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
45326         wint_t.m4.
45327
45328 2003-08-12  Karl Berry  <karl@gnu.org>
45329
45330         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
45331         been made.
45332
45333 2003-08-11  Paul Eggert  <eggert@twinsun.com>
45334
45335         * modules/gnu-source, m4/gnu-source.m4:
45336         Remove; we're assuming Autoconf 2.54 or later now.
45337         Suggested by Bruno Haible.
45338         * MODULES.html.sh (func_all_modules): Remove gnu-source.
45339
45340 2003-08-11  Bruno Haible  <bruno@clisp.org>
45341
45342         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
45343
45344 2003-08-11  Bruno Haible  <bruno@clisp.org>
45345
45346         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
45347         (vasnprintf): Use it instead of wcslen.
45348
45349 2003-08-11  Bruno Haible  <bruno@clisp.org>
45350
45351         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
45352         value to ensure that _Bool promotes to int. Use #define for _Bool when
45353         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
45354
45355 2003-08-10  Karl Berry  <karl@gnu.org>
45356
45357         * lib/regex.h: update from libc (whitespace fix).
45358
45359 2003-08-09  Paul Eggert  <eggert@twinsun.com>
45360
45361         Merge some files from coreutils.  These changes were
45362         originally made by Jim Meyering.
45363         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
45364         many older Unixes require this.
45365         * lib/alloca.c (alloca): Remove cast to argument of free;
45366         no longer needed in C89.
45367         * lib/alloca_.h, regex.h: Fix white space to match
45368         what GNU indent does.
45369
45370 2003-08-09  Paul Eggert  <eggert@twinsun.com>
45371
45372         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
45373         apparently Emacs's Unicode mode got confused before my 2003-08-05
45374         checkin.
45375
45376 2003-08-08  Paul Eggert  <eggert@twinsun.com>
45377
45378         * m4/extensions.m4: New file.
45379         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
45380         Require gl_USE_SYSTEM_EXTENSIONS.
45381         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
45382         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
45383
45384 2003-08-08  Paul Eggert  <eggert@twinsun.com>
45385
45386         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
45387         * modules/extensions, modules/gnu-source: New files.
45388         * modules/timespec, modules/unlocked-io: Depend on extensions.
45389
45390 2003-08-07  Paul Eggert  <eggert@twinsun.com>
45391
45392         * modules/restrict: New file.
45393         * MODULES.html.sh (func_all_modules): Add restrict.
45394         * modules/regex: Depend on restrict.
45395
45396 2003-08-07  Paul Eggert  <eggert@twinsun.com>
45397
45398         * m4/restrict.m4: New file.
45399         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
45400
45401 2003-08-07  Bruno Haible  <bruno@clisp.org>
45402
45403         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
45404         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
45405
45406 2003-08-07  Bruno Haible  <bruno@clisp.org>
45407
45408         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
45409         makes the module 'getndelim2' compatible with the module 'getline'.
45410
45411 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45412
45413         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
45414         byte with "\201" to avoid glitches when editing that source file
45415         with multi-gnome-terminal.
45416
45417 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45418
45419         * lib/bumpalloc.h: Remove.
45420
45421 2003-08-05  Paul Eggert  <eggert@twinsun.com>
45422
45423         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
45424         * modules/bumpalloc: Remove.
45425
45426 2003-08-04  Paul Eggert  <eggert@twinsun.com>
45427
45428         * lib/getloadavg.c: Change copyright notice and spacing to conform to
45429         GNU coding style.
45430
45431         Merge from coreutils.
45432         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
45433         1. From glibc.
45434         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
45435         from Karl Berry, implemented by Jim Meyering.
45436         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
45437         from Dmitry V. Levin.
45438         Remove anachronistic cast of xrealloc.
45439         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
45440         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
45441         type. Otherwise, it wouldn't compile with at least /bin/cc on
45442         ymp-cray-unicos9.0.2.X.
45443         Combine two mostly-identical uses of alloca into one.
45444         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
45445
45446 2003-08-04  Dave Love  <d.love@dl.ac.uk>
45447
45448         [From Emacs.]
45449
45450         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
45451         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
45452         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
45453         obsolete NLIST_NAME_UNION.
45454         [__GNU__]: Undef BSD and FSCALE.
45455         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
45456
45457 2003-08-03  Paul Eggert  <eggert@twinsun.com>
45458
45459         * lib/stdbool_.h (_Bool): Make it signed char, instead of
45460         an enum type, so that it's guaranteed to promote to int.  See:
45461         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
45462
45463 2003-08-03  Karl Berry  <karl@gnu.org>
45464
45465         * config/depcomp: update from automake.
45466
45467 2003-07-31  Paul Eggert  <eggert@twinsun.com>
45468
45469         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
45470         (strerror): Don't assume that a printable int fits in 14 bytes.
45471
45472 2003-07-31  Bruno Haible  <bruno@clisp.org>
45473
45474         * modules/getpass-gnu: New file.
45475         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
45476
45477 2003-07-31  Bruno Haible  <bruno@clisp.org>
45478
45479         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
45480
45481 2003-07-24  Karl Berry  <karl@gnu.org>
45482
45483         * config/missing: update from automake.
45484
45485 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
45486             Bruno Haible  <bruno@clisp.org>
45487
45488         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
45489         * lib/getline.c (getline, getdelim): Likewise.
45490         Remove _GNU_SOURCE define; now it's defined in config.h through
45491         m4/getline.m4.
45492
45493 2003-07-23  Karl Berry  <karl@gnu.org>
45494
45495         * config/config.sub: update from prep.
45496
45497 2003-07-22  Paul Eggert  <eggert@twinsun.com>
45498
45499         * modules/xalloc (Depends-on): Add exitfail.
45500         * modules/xmemcoll: Likewise.
45501
45502 2003-07-22  Paul Eggert  <eggert@twinsun.com>
45503
45504         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
45505         over-parenthesization in macros.
45506
45507         Sync with coreutils.
45508
45509         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
45510         required by C99.
45511
45512         Use `exit_failure' for xalloc and xmemcoll instead of their own
45513         private exit-failure variables.
45514         * lib/xalloc.h (xalloc_exit_failure): Remove.
45515         * lib/xmalloc.c: Likewise.  Include exitfail.h.
45516         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
45517         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
45518         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
45519         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
45520
45521 2003-07-20  Jim Meyering  <jim@meyering.net>
45522
45523         * modules/closeout (Depends-on): Add exitfail.
45524         Suggestion from Bruno Haible.
45525
45526 2003-07-19  Karl Berry  <karl@gnu.org>
45527
45528         * config/config.sub: update from prep.
45529
45530 2003-07-18  Paul Eggert  <eggert@twinsun.com>
45531
45532         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
45533         Remove.
45534         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
45535         to test that it can stand by itself.  Include "exitfail.h".
45536         Clients should set exit_failure instead.
45537         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
45538
45539 2003-07-18  Bruno Haible  <bruno@clisp.org>
45540
45541         * modules/getndelim2: New file.
45542         * modules/getline: Share files with module getndelim2.
45543         * modules/getnline: Depend on getndelim2 instead of sharing files with
45544         it. Add getnline.c to lib_SOURCES.
45545         * MODULES.html.sh (func_all_modules): Add getndelim2.
45546
45547 2003-07-18  Bruno Haible  <bruno@clisp.org>
45548
45549         * m4/getndelim2.m4: New file.
45550         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
45551         invoke gl_PREREQ_GETNDELIM2.
45552         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
45553         gl_PREREQ_GETNDELIM2.
45554         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
45555         gl_GETNDELIM2.
45556
45557 2003-07-18  Bruno Haible  <bruno@clisp.org>
45558
45559         * lib/getndelim2.h: New file.
45560         * lib/getndelim2.c: Make into a module of its own. Include config.h,
45561         getndelim2.h.
45562         (getndelim2): Make non-static. Change return type to ssize_t.
45563         * lib/getline.h: Change argument names.
45564         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
45565         * lib/getnline.c: Include getndelim2.h.
45566
45567 2003-07-18  Andreas Schwab  <schwab@suse.de>
45568
45569         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
45570
45571 2003-07-17  Karl Berry  <karl@gnu.org>
45572
45573         * config/config.sub: update from prep.
45574
45575 2003-07-17  Bruno Haible  <bruno@clisp.org>
45576
45577         * modules/getnline: New file.
45578         * modules/getline: Add lib/getndelim2.c to source file list.
45579         * MODULES.html.sh (func_all_modules): Add getnline.
45580
45581 2003-07-17  Bruno Haible  <bruno@clisp.org>
45582
45583         * m4/getnline.m4: New file.
45584
45585 2003-07-17  Bruno Haible  <bruno@clisp.org>
45586
45587         * m4/Makefile.am.in: Remove file.
45588         * m4/Makefile.am: Remove file.
45589         * m4/Makefile.in: Remove file.
45590
45591 2003-07-17  Bruno Haible  <bruno@clisp.org>
45592
45593         * lib/getnline.h: New file.
45594         * lib/getnline.c: New file.
45595         * lib/getndelim2.c: New file, extracted from getline.c.
45596         (getndelim2): Renamed from getdelim2, with added nmax argument.
45597         * lib/getline.c: Include getndelim2.c.
45598         (getdelim2): Moved out to getndelim2.c.
45599         (getline, getdelim): Update.
45600
45601 2003-07-17  Bruno Haible  <bruno@clisp.org>
45602
45603         * lib/Makefile.am: Remove file.
45604         * lib/Makefile.in: Remove file.
45605
45606 2003-07-17  Bruno Haible  <bruno@clisp.org>
45607
45608         * configure.in: Remove file.
45609         * Makefile.in: Remove file.
45610
45611 2003-07-17  Bruno Haible  <bruno@clisp.org>
45612
45613         * MODULES.html.sh: Put the </BODY> right before </HTML>.
45614
45615 2003-07-16  Karl Berry  <karl@gnu.org>
45616
45617         * config/srclist-update: was running fixlicense twice, which caused
45618                 texinfo.tex to be nullified for some reason.  Simplify,
45619                 $gplsrc is no longer needed as far as I can see?
45620
45621 2003-07-16  Jim Meyering  <jim@meyering.net>
45622
45623         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
45624
45625 2003-07-15  Paul Eggert  <eggert@twinsun.com>
45626
45627         * config/srclist.txt: Get the following files from gettext-runtime/intl
45628         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
45629         ref-del.sin.  From Bruno Haible.
45630         * config/srclist-update (fixfile): Change grep pattern again, since the
45631         previous fix didn't work (there was another trailing $).  Use
45632         '[$]' to escape the $s.
45633
45634 2003-07-15  Karl Berry  <karl@gnu.org>
45635
45636         * lib/vasnprintf.c: update from gettext.
45637
45638 2003-07-15  Karl Berry  <karl@gnu.org>
45639
45640         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
45641         gets expanded when surrounded by '$'.
45642
45643 2003-07-15  Jim Meyering  <jim@meyering.net>
45644
45645         * modules/save-cwd: Don't depend on error.  From Derek Price.
45646
45647 2003-07-15  Jim Meyering  <jim@meyering.net>
45648
45649         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
45650
45651 2003-07-14  Simon Josefsson  <jas@extundo.com>
45652
45653         * modules/mempcpy: New file.
45654         * MODULES.html.sh (func_all_modules): Add mempcpy.
45655
45656 2003-07-14  Simon Josefsson  <jas@extundo.com>
45657
45658         * m4/mempcpy.m4: New file.
45659
45660 2003-07-14  Simon Josefsson  <jas@extundo.com>
45661
45662         * lib/mempcpy.h: New file.
45663         * lib/mempcpy.c: New file.
45664
45665 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45666
45667         * modules/getdate, modules/posixtm: Depend on mktime.
45668
45669 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45670
45671         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
45672         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
45673         unicodeio.c, unicodeio.h, unlocked-io.h:
45674         Switch from LGPL to GPL.
45675
45676 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45677
45678         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
45679         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
45680         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
45681         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
45682         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
45683         updated automatically by ../config/srclist-update.  This changes
45684         their license from LPGL to GPL.
45685
45686 2003-07-14  Paul Eggert  <eggert@twinsun.com>
45687
45688         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
45689         assumed to refer to the root of the most recent stable gettext version.
45690         * config/srclistvars.sh: Add defaults for eggert.
45691         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
45692         Match "This program" as well as "The program".  This is needed
45693         for gettext.
45694
45695 2003-07-14  Jim Meyering  <jim@meyering.net>
45696
45697         Don't emit diagnostics.  Let callers do that.
45698         * lib/save-cwd.c: Don't include "error.h".
45699         (save_cwd): Don't call error.  Ensure that errno is valid
45700         when returning nonzero.
45701
45702         * lib/save-cwd.h (restore_cwd): Update prototype.
45703         * lib/save-cwd.c (restore_cwd): Remove two parameters.
45704         Simplify.  Don't call error upon failure.  Let callers do that.
45705         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
45706         when auditing is enabled.  But don't bother updating the #if.
45707
45708 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
45709
45710         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
45711         it breaks C++ compilation.
45712         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
45713
45714 2003-07-10  Simon Josefsson  <jas@extundo.com>
45715
45716         * modules/strchrnul (Makefile.am): Add strchrnul.h.
45717
45718 2003-07-10  Jim Meyering  <jim@meyering.net>
45719
45720         * m4/clock_time.m4: Remove trailing blank.
45721         * m4/intmax_t.m4: Likewise.
45722
45723 2003-07-10  Jim Meyering  <jim@meyering.net>
45724
45725         * lib/vasnprintf.c: Remove trailing blanks.
45726         Make cpp indentation consistent.
45727
45728 2003-07-09  Paul Eggert  <eggert@twinsun.com>
45729
45730         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
45731         posixver.c, strftime.c, strnlen.c, strverscmp.c:
45732         Switch from LGPL to GPL.
45733
45734 2003-07-09  Paul Eggert  <eggert@twinsun.com>
45735
45736         * config/srclist.txt: Sort sublists.  Add
45737         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
45738         that differ from gnulib for one reason or another; we'd like this list
45739         to be smaller but for now let's document what we have.
45740
45741 2003-07-08  Paul Eggert  <eggert@twinsun.com>
45742
45743         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
45744         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
45745         and sweeter "eval x=$x".
45746         * config/srclist.txt: Get lib/argp* from glibc.
45747
45748 2003-07-07  Paul Eggert  <eggert@twinsun.com>
45749
45750         * lib/mktime.c: Fix some boundary cases and remove need for floating
45751         point.
45752
45753         Issue a compile-time diagnostic if time_t is floating point, or if
45754         two's complement arithmetic is not in effect, or if arithmetic
45755         right shift does not propagate the sign.  These assumptions were
45756         all in the original code but they weren't checked.
45757
45758         (TIME_T_MIDPOINT, verify): New macros.
45759         (__isleap): Remove; it has integer overflow problems.
45760         (leapyear): New function, without those problems.
45761         (ydhms_tm_diff): Remove; splitting into two parts.
45762         (ydhms_diff): New function, containing the arithmetic part of
45763         the old ydhms_tm_diff function.  Issue a compile-time
45764         diagnostic if we are not using C99 integer division.
45765         Avoid casts when possible.
45766         (guess_time_tm): New function, containing the checking part of
45767         the old ydhms_tm_diff function.  Return the new value, rather than
45768         the difference between it and the old.  Accept a new argument T
45769         so that *T specifies the old value.  Check for overflow in the result.
45770
45771         (__mktime_internal): Use a time_t offset, not a long int offset.
45772         This undoes the 2003-06-04 change, which is no longer needed now
45773         that we have better overflow checking.
45774         (localtime_offset): Likewise.
45775
45776         (__mktime_internal): Avoid harmful overflow on hosts where time_t
45777         and long are 64-bit but int is only 32-bit.
45778         (ydhms_diff): Use long int to store year1 and yday1.
45779         Issue a compile-time diagnostic if long int is not wide enough.
45780
45781         (__mktime_internal): Use long int to store adjusted year and yday.
45782         Use plain C rather than preprocessor commands, if that doesn't
45783         affect efficiency.
45784         Check for overflow (and try to repair) after each probe
45785         rather than checking only at the very end.  This avoids some bugs
45786         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
45787         does not equal GMT offset at maximum time).
45788         Use integer to check for overflow rather than floating point; this
45789         is more portable to non-IEEE hosts, and is a tad faster.
45790         When we detect that we are oscillating between two values,
45791         don't check whether tm_isdst has the requested value, since
45792         we already know the answer.  When tm_isdst has the wrong value,
45793         use a different heuristic to find the right one, based on the
45794         extreme values actually observed in practice in tz2003a,
45795         rather than the (overly optimistic) "previous 3 calendar quarters".
45796
45797         (not_equal_tm, print_tm, check_result): Use "const T" rather than
45798         "T const" to accommodate glibc style.
45799         (check_result): Use less-confusing report format.  "long" -> "long int.
45800         (main): Likewise.
45801         Don't loop if the iteration overflows time_t.
45802         Allow a negative step in the iteration.
45803
45804 2003-07-06  Karl Berry  <karl@gnu.org>
45805
45806         * config/depcomp: update from automake.
45807         * config/config.sub: update from prep.
45808
45809 2003-07-03  Karl Berry  <karl@gnu.org>
45810
45811         * config/config.guess: update from prep.
45812
45813 2003-07-01  Paul Eggert  <eggert@twinsun.com>
45814
45815         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
45816         xreadlink.c now includes it unconditionally.
45817
45818 2003-07-01  Paul Eggert  <eggert@twinsun.com>
45819
45820         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
45821         having it depend on HAVE_SYS_TYPES_H.
45822
45823 2003-07-01  Bruno Haible  <bruno@clisp.org>
45824
45825         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
45826         <sys/types.h> should be sufficient.
45827         Reported by Paul Eggert.
45828
45829 2003-06-26  Karl Berry  <karl@gnu.org>
45830
45831         * config/depcomp: update from automake.
45832
45833 2003-06-26  Bruno Haible  <bruno@clisp.org>
45834
45835         * modules/human: Depend on module stdbool.
45836
45837 2003-06-25  Bruno Haible  <bruno@clisp.org>
45838
45839         * modules/readlink: New file.
45840         * modules/xreadlink: Depend on it.
45841         * MODULES.html.sh (func_all_modules): Add readlink.
45842
45843 2003-06-25  Bruno Haible  <bruno@clisp.org>
45844
45845         * m4/readlink.m4: New file.
45846
45847 2003-06-25  Bruno Haible  <bruno@clisp.org>
45848
45849         * lib/readlink.c: New file.
45850
45851 2003-06-22  Karl Berry  <karl@gnu.org>
45852
45853         * config/srclist.txt: update mkinstalldirs from automake.
45854         * config/mkinstalldirs: update.
45855
45856 2003-06-22  Bruno Haible  <bruno@clisp.org>
45857
45858         Portability to mingw32.
45859         * m4/ssize_t.m4: New file, from GNU gettext.
45860         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
45861         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
45862
45863 2003-06-22  Bruno Haible  <bruno@clisp.org>
45864
45865         * modules/safe-read: Add m4/ssize_t.m4.
45866         * modules/xreadlink: Add m4/ssize_t.m4.
45867
45868 2003-06-20  Bruno Haible  <bruno@clisp.org>
45869
45870         Assume C89, so PARAMS isn't needed.
45871         * lib/unicodeio.h (PARAMS): Remove.
45872         * lib/unicodeio.c: Don't use PARAMS.
45873
45874 2003-06-18  Karl Berry  <karl@gnu.org>
45875
45876         * config/config.{guess,sub}: update from prep.
45877
45878 2003-06-18  Jim Meyering  <jim@meyering.net>
45879
45880         Merge changes from coreutils.
45881         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
45882         Remove explicit declarations of xmalloc and realloc.
45883         Include xalloc.h.
45884         (read_utmp): Remove anachronistic cast of xmalloc.
45885
45886 2003-06-17  Paul Eggert  <eggert@twinsun.com>
45887
45888         Assume C89, so PARAMS isn't needed.
45889         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
45890         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
45891         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
45892         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
45893         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
45894         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
45895         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
45896         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
45897         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
45898         lib/xstrtod.h, lib/xstrtol.h: Likewise.
45899         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
45900         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
45901         no longer needed. Anyway, config.h should always be included before any
45902         other file.
45903
45904 2003-06-11  Simon Josefsson  <jas@extundo.com>
45905
45906         * modules/sysexits: New file.
45907         * MODULES.html.sh (func_all_modules): Add sysexits.
45908
45909 2003-06-11  Simon Josefsson  <jas@extundo.com>
45910
45911         * lib/sysexit_.h: New file.
45912
45913 2003-06-11  Derek Price  <derek@ximbiot.com>
45914
45915         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
45916         necessary.
45917
45918 2003-06-11  Bruno Haible  <bruno@clisp.org>
45919
45920         * m4/sysexits.m4: New file.
45921
45922 2003-06-10  Simon Josefsson  <jas@extundo.com>
45923
45924         * lib/argp.h: New file, from glibc.
45925         * lib/argp-ba.c: New file, from glibc.
45926         * lib/argp-eexst.c: New file, from glibc.
45927         * lib/argp-fmtstream.c: New file, from glibc.
45928         * lib/argp-fmtstream.h: New file, from glibc.
45929         * lib/argp-fs-xinl.c: New file, from glibc.
45930         * lib/argp-help.c: New file, from glibc.
45931         * lib/argp-namefrob.h: New file, from glibc.
45932         * lib/argp-parse.c: New file, from glibc.
45933         * lib/argp-pv.c: New file, from glibc.
45934         * lib/argp-pvh.c: New file, from glibc.
45935         * lib/argp-xinl.c: New file, from glibc.
45936
45937 2003-06-10  Simon Josefsson  <jas@extundo.com>
45938
45939         * modules/strchrnul: New file.
45940
45941 2003-06-10  Simon Josefsson  <jas@extundo.com>
45942
45943         * modules/argp: New file.
45944
45945 2003-06-10  Simon Josefsson  <jas@extundo.com>
45946
45947         * m4/strchrnul.m4: New file.
45948
45949 2003-06-10  Simon Josefsson  <jas@extundo.com>
45950
45951         * lib/strchrnul.h: New file.
45952         * lib/strchrnul.c: New file.
45953
45954 2003-06-10  Bruno Haible  <bruno@clisp.org>
45955
45956         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
45957
45958 2003-06-07  Karl Berry  <karl@gnu.org>
45959
45960         * config/config.{guess,sub}: update from prep.
45961
45962 2003-06-07  Jim Meyering  <jim@meyering.net>
45963
45964         * modules/strtod: Use $(...) notation, not @...@ for
45965         AC_REPLACE'd variables.
45966         * modules/localcharset: Likewise.
45967
45968 2003-06-07  Jim Meyering  <jim@meyering.net>
45969
45970         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
45971         in place of my name in the copyright comment.
45972         Remove definition and uses of __P.
45973
45974         From coreutils.
45975         * lib/stat.c: Don't declare xmalloc explicitly.
45976         Instead, include "xalloc.h".
45977         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
45978         xrealloc, and xcalloc return values.
45979         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
45980         Improve comment.
45981         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
45982
45983 2003-06-07  Bruno Haible  <bruno@clisp.org>
45984
45985         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
45986         avoid AC_CONFIG_LINKS.
45987         * modules/fnmatch (Makefile.am): Use explicit creation rule for
45988         fnmatch.h, to avoid AC_CONFIG_LINKS.
45989         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
45990
45991 2003-06-07  Bruno Haible  <bruno@clisp.org>
45992
45993         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
45994         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
45995         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
45996         directory.
45997         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
45998         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
45999         directory.
46000
46001 2003-06-06  Jim Meyering  <jim@meyering.net>
46002
46003         Merge from coreutils.
46004         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
46005         Consolidate declarations and initializations of *_base* locals.
46006
46007         Merge from coreutils.
46008         This avoids a core dump on systems without GNU putenv,
46009         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
46010         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
46011         (unsetenv): New static function, from GNU libc.
46012         (rpl_putenv): Use it.
46013
46014         * lib/modechange.c: Remove trailing blanks.
46015
46016         Merge from coreutils.
46017         * lib/fsusage.c: Remove declaration of statfs.
46018         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
46019
46020         * lib/posixtm.c: Include <stdbool.h> unconditionally.
46021
46022 2003-06-06  Jim Meyering  <jim@meyering.net>
46023
46024         * lib/stdbool_.h: Renamed from stdbool.h.in.
46025
46026 2003-06-06  Jim Meyering  <jim@meyering.net>
46027             Bruno Haible  <bruno@clisp.org>
46028
46029         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
46030         Adjust Makefile.am snippet not to redirect directly to target.
46031         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
46032
46033 2003-06-05  Paul Eggert  <eggert@twinsun.com>
46034
46035         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
46036         mismatch, look in future quarters as well as past.  This fixes a
46037         bug when processing fall-backwards gaps immediately after a long
46038         period of daylight-saving time.
46039
46040         * lib/mktime.c: Assume freestanding C89 or better.
46041         (HAVE_LIMITS_H): Remove.  Assume it's 1.
46042         (__P): Remove; not used.
46043         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
46044         (mktime, not_equal_tm, print_tm, check_result,
46045         main): Use prototypes.  Use const * where appropriate.
46046         (main): Fix typo in testing code that uncovered by above changes.
46047         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
46048
46049 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46050
46051         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
46052         locale.h, localeconv.  This merges changes from coreutils.
46053
46054         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
46055         It can be removed after the next Autoconf is released.
46056         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
46057         needed.
46058
46059 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46060
46061         * lib/mktime.c: Fix Debian bug 177940
46062         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
46063         (localtime_offset): Now long int, not time_t, because we want it
46064         to be guaranteed to be signed.  All uses changed.
46065         (__mktime_internal): If overflow would occur when adding offset,
46066         don't add it.
46067
46068         Merge 'human' changes from coreutils.  Rewrite to support
46069         locale-specific notations like thousands separators.
46070         * lib/human.c: Simplify authorship notice.
46071         Include human.h immediately after config.h.
46072         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
46073         <limits.h>: Do not include, since human.h does.
46074         (SIZE_MAX, UINTMAX_MAX): New macros.
46075         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
46076         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
46077         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
46078         (power_letter): Renamed from suffixes.
46079         (generate_suffix_backwards): Remove.
46080         (adjust_value): Now takes int style (because of human.h changes)
46081         and long double value (for greater precision on some platforms).
46082         (group_number): New function.
46083         (human_readable): Use it.  Use integer options, not enum.
46084         Put the options before the sizes in the arg list.
46085         Support all the new options.
46086         The old human_readable function has been removed;
46087         use inttostr.h instead.
46088         (human_readable, default_block_size, humblock):
46089         Use uintmax_t, not int, for block sizes.
46090         (human_readable_inexact, block_size_types): Remove.
46091         (block_size_opts): New constant.
46092         (human_options): Renamed from human_block_size, with new signature
46093         that allows block sizes up to UINTMAX_MAX.  All callers changed.
46094         * lib/human.h: Add copyright and authorship notice.
46095         Include <limits.h> and <stdbool.h> unconditionally.
46096         (PARAMS): Remove.  All uses removed.
46097         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
46098         (enum human_inexact_style): Remove tag; now a nameless enum.
46099         (human_floor, human_ceiling, human_round_to_even): Now have
46100         values 2, 0, 1 rather than -1, 1, 0.
46101         (human_group_digits, human_suppress_point_zero, human_autoscale,
46102         human_base_1024, human_SI, human_B): New constants.
46103         (human_readable_inexact, human_block_size): Remove.
46104         (human_readable): Size args are now uintmax_t, not int.
46105         (human_options): New decl.
46106
46107         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
46108         unnecessary now that we assume C89 or better.  This change
46109         imported from coreutils.
46110
46111         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
46112         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
46113         in the 2003-05-30 sync from glibc.
46114
46115         .h files should stand alone, but we shouldn't include <sys/types.h>
46116         if we can get away with just <stddef.h>.
46117
46118         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
46119         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
46120         rather than <sys/types.h>, as we merely need size_t.
46121         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
46122         to get size_t.
46123         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
46124         Include <stdio.h>, to get FILE.
46125         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
46126         memcasecmp.h has included <stddef.h> and all we need is size_t.
46127         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
46128         our interface, instead of including <sys/types.h>
46129
46130 2003-06-04  Paul Eggert  <eggert@twinsun.com>
46131
46132         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
46133         now, as glibc mktime is buggy on non-glibc systems.
46134
46135 2003-06-03  Karl Berry  <karl@gnu.org>
46136
46137         * config/config.sub: update from prep.
46138
46139 2003-06-02  Paul Eggert  <eggert@twinsun.com>
46140
46141         [from coreutils]
46142         Fix some minor time-related bugs with POSIX time arguments.
46143         Some valid time stamps were being rejected (notably -1, and
46144         time stamps before 1900 on 64-bit hosts).  And some invalid
46145         time stamps were being accepted, e.g. September 31.
46146
46147         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
46148         that we can return (time_t) -1 successfully.
46149         * lib/posixtm.c: Likewise.
46150         [HAVE_STDBOOL_H]: Include <stdbool.h>.
46151         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
46152         (t): Remove static var.
46153         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
46154         of static var.  All uses changed.
46155         (year): Do not reject years before 1900; they can occur with
46156         64-bit time_t.
46157         (posix_time_parse): Do not check for out-of-range components;
46158         that is now the caller's responsibility, since our checks were
46159         only approximations.
46160         (posixtime): Use mktime to check for out-of-range components,
46161         since it knows them exactly.
46162         If mktime returns (time_t) -1, check whether an error actually occurred
46163         by invoking localtime on -1.
46164         (main) [TEST_POSIXTIME]: Check for input data errors, and report
46165         posixtime failures better.
46166         Improve the test data (in comments only).
46167
46168 2003-06-02  Karl Berry  <karl@gnu.org>
46169
46170         * config/mkinstalldirs (version): new variable.
46171         (--version): new option.
46172         (usage): improve message.
46173
46174 2003-05-30  Karl Berry  <karl@gnu.org>
46175
46176         * lib/mktime.c: update from libc.
46177
46178 2003-05-30  Bruno Haible  <bruno@clisp.org>
46179
46180         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
46181         * config/config.rpath: Upgrade to gettext-0.12.1.
46182
46183 2003-05-30  Bruno Haible  <bruno@clisp.org>
46184
46185         * m4/gettext.m4: Upgrade to gettext-0.12.1.
46186         * m4/nls.m4: New file, from gettext-0.12.1.
46187         * m4/po.m4: New file, from gettext-0.12.1.
46188         * m4/progtest.m4: Upgrade to gettext-0.12.1.
46189
46190 2003-05-30  Bruno Haible  <bruno@clisp.org>
46191
46192         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
46193         * lib/localcharset.h: Likewise.
46194         * lib/localcharset.c: Likewise.
46195
46196 2003-05-29  Karl Berry  <karl@gnu.org>
46197
46198         * config/config.rpath: update from gettext.
46199
46200 2003-05-28  Paul Eggert  <eggert@twinsun.com>
46201
46202         Assume the headers required for C89 freestanding compilers.
46203         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
46204         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
46205         * m4/human.m4 (gl_HUMAN): Likewise.
46206         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
46207         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
46208         * m4/userspec.m4 (gl_USERSPEC): Likewise.
46209         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
46210         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
46211         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
46212
46213 2003-05-28  Paul Eggert  <eggert@twinsun.com>
46214
46215         Assume the headers required for C89 freestanding compilers.
46216         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
46217         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
46218         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
46219         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
46220         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
46221         define, since <limits.h> is guaranteed to do that.
46222         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
46223         * lib/exclude.c: Include <stdbool.h> unconditionally.
46224         * lib/tempname.c: Include <stddef.h> unconditionally.
46225         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
46226         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
46227         <stddef.h> does that.
46228         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
46229         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
46230         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
46231         needed.
46232         * lib/xstrtol.c: Likewise.
46233         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
46234         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
46235
46236         * lib/addext.c (addext): Use assignment rather than cast, to avoid
46237         warnings on some platforms.
46238
46239         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
46240         arbitrarily.
46241
46242 2003-05-26  Jim Meyering  <jim@meyering.net>
46243
46244         Merge in a change from coreutils:
46245         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
46246         that is guaranteed to be `no'.  Use `no_such_member' to indicate
46247         that condition, rather than `-1' which is slightly misleading.
46248         Change the name of the cache variable to have the gl_ prefix.
46249         Prompted by a patch from Richard Dawe for DJGPP.
46250
46251 2003-05-24  Karl Berry  <karl@gnu.org>
46252
46253         * config/config.guess: update from prep.
46254
46255 2003-05-22  Karl Berry  <karl@gnu.org>
46256
46257         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
46258
46259 2003-05-20  Karl Berry  <karl@gnu.org>
46260
46261         * config/config.guess: update from prep.
46262
46263 2003-05-18  Karl Berry  <karl@gnu.org>
46264
46265         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
46266         might actually be set by the user.
46267
46268         * config/depcomp, install-sh, mdate-sh: update from automake.
46269
46270 2003-05-17  Bruno Haible  <bruno@clisp.org>
46271
46272         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
46273         invalid expansion for AC_EGREP_CPP.
46274         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
46275         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
46276         Suggested by Akim Demaille <akim@epita.fr> in
46277         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
46278
46279 2003-05-12  Jim Meyering  <jim@meyering.net>
46280
46281         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
46282         the space-padded-by-default conversion specifiers, %e, %k, %l.
46283
46284 2003-05-12  Bruno Haible  <bruno@clisp.org>
46285
46286         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
46287         the string is longer than 4 KB.
46288
46289 2003-05-11  Karl Berry  <karl@gnu.org>
46290
46291         * config/config.{guess,sub}: update from prep.
46292
46293 2003-05-09  Bruno Haible  <bruno@clisp.org>
46294
46295         * modules/error: Add m4/strerror_r.m4 to file list.
46296
46297 2003-05-03  Bruno Haible  <bruno@clisp.org>
46298
46299         Upgrade to Unicode-4.0.
46300         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
46301         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
46302         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
46303         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
46304         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
46305         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
46306         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
46307         Change width of U+E0100..U+E01EF from 1 to 0.
46308
46309 2003-04-25  Jim Meyering  <jim@meyering.net>
46310
46311         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
46312         of type size_t, not int.
46313
46314 2003-04-25  Bruno Haible  <bruno@clisp.org>
46315
46316         * lib/copy-file.c: Include <stddef.h>, for size_t.
46317
46318 2003-04-21  Paul Eggert  <eggert@twinsun.com>
46319
46320         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
46321         code which expansion is under static control.  Patch imported from
46322         Akim Demaille's patch to Bison; see
46323         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
46324
46325 2003-04-14  Bruno Haible  <bruno@clisp.org>
46326
46327         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
46328
46329 2003-04-11  Jim Meyering  <jim@meyering.net>
46330
46331         Merge changes from Coreutils.
46332
46333         2003-03-22  Jim Meyering  <jim@meyering.net>
46334
46335         * lib/strftime.c (widen): Cast alloca return value to proper type.
46336
46337         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
46338
46339         From GNU libc.
46340         * lib/strftime.c (my_strftime): Handle very large width
46341         specifications for numeric values correctly.  Improve checks for
46342         overflow.
46343
46344         2003-01-19  Jim Meyering  <jim@meyering.net>
46345
46346         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
46347         definitions.
46348         (nl_get_alt_digit) [! defined my_strftime]: Define.
46349         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
46350         _nl_get_alt_digit and _nl_get_walt_digit.
46351
46352         * lib/strftime.c (my_strftime): Merge in locale-related changes from
46353         libc. These changes have no effect outside of _LIBC.
46354
46355 2003-04-10  Bruno Haible  <bruno@clisp.org>
46356
46357         * modules/findprog: New file.
46358         * MODULES.html.sh (func_all_modules): Add it.
46359
46360 2003-04-10  Bruno Haible  <bruno@clisp.org>
46361
46362         * m4/findprog.m4: New file.
46363         * m4/eaccess.m4: New file.
46364
46365 2003-04-10  Bruno Haible  <bruno@clisp.org>
46366
46367         * lib/findprog.h: New file, from GNU gettext.
46368         * lib/findprog.c: New file, from GNU gettext.
46369
46370 2003-04-05  Jim Meyering  <jim@meyering.net>
46371
46372         Merge changes from Coreutils.
46373
46374         * lib/exclude.h (PARAMS): Remove definition and uses.
46375         * lib/exclude.c: Remove uses of `PARAMS'.
46376
46377         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
46378         Add test-cases for DOS filenames. Declare program_name.
46379         (main): Set up program_name.  Patch by Rich Dawe.
46380
46381         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
46382         error from mntctl.
46383         Use mntctl's return value to drive the entry-processing loop, since
46384         we can't rely on the value of the vmt_length member in the last
46385         entry.  On some systems doing so could result in exhausting
46386         virtual memory.  Based in part on a patch from Mike Jetzer.
46387
46388 2003-04-04  Bruno Haible  <bruno@clisp.org>
46389
46390         * modules/linebreak: New file.
46391         * MODULES.html.sh (func_all_modules): Add it.
46392
46393 2003-04-04  Bruno Haible  <bruno@clisp.org>
46394
46395         * m4/linebreak.m4: New file.
46396
46397 2003-04-04  Bruno Haible  <bruno@clisp.org>
46398
46399         * lib/linebreak.h: New file, from GNU gettext.
46400         * lib/linebreak.c: New file, from GNU gettext with slight
46401         modifications.
46402         * lib/lbrkprop.h: New file, from GNU gettext.
46403
46404 2003-04-03  Bruno Haible  <bruno@clisp.org>
46405
46406         * modules/utf8-ucs4: New file.
46407         * modules/utf16-ucs4: New file.
46408         * modules/ucs4-utf8: New file.
46409         * modules/ucs4-utf16: New file.
46410         * MODULES.html.sh (func_all_modules): Add them.
46411
46412 2003-04-03  Bruno Haible  <bruno@clisp.org>
46413
46414         * m4/utf-ucs4.m4: New file.
46415         * m4/ucs4-utf.m4: New file.
46416
46417 2003-04-03  Bruno Haible  <bruno@clisp.org>
46418
46419         * lib/utf8-ucs4.h: New file, from GNU gettext.
46420         * lib/utf16-ucs4.h: New file, from GNU gettext.
46421         * lib/ucs4-utf8.h: New file, from GNU gettext.
46422         * lib/ucs4-utf16.h: New file, from GNU gettext.
46423
46424 2003-04-02  Bruno Haible  <bruno@clisp.org>
46425
46426         * modules/binary-io: New file.
46427         * MODULES.html.sh (func_all_modules): Add it.
46428
46429 2003-04-02  Bruno Haible  <bruno@clisp.org>
46430
46431         * lib/binary-io.h: New file, from GNU gettext.
46432
46433 2003-04-01  Bruno Haible  <bruno@clisp.org>
46434
46435         * modules/pathname: New file.
46436         * MODULES.html.sh (func_all_modules): Add it.
46437
46438 2003-04-01  Bruno Haible  <bruno@clisp.org>
46439
46440         * lib/pathname.h: New file, from GNU gettext.
46441         * lib/concatpath.c: New file, from GNU gettext.
46442
46443 2003-03-30  Bruno Haible  <bruno@clisp.org>
46444
46445         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
46446
46447 2003-03-30  Bruno Haible  <bruno@clisp.org>
46448
46449         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
46450         function chown() doesn't exist.
46451
46452 2003-03-28  Bruno Haible  <bruno@clisp.org>
46453
46454         * modules/copy-file: New file.
46455         * MODULES.html.sh (func_all_modules): Add it.
46456
46457 2003-03-28  Bruno Haible  <bruno@clisp.org>
46458
46459         * m4/copy-file.m4: New file.
46460
46461 2003-03-28  Bruno Haible  <bruno@clisp.org>
46462
46463         * lib/copy-file.h: New file, from GNU gettext.
46464         * lib/copy-file.c: New file, from GNU gettext.
46465
46466 2003-03-18  Jim Meyering  <jim@meyering.net>
46467
46468         * lib/quote.c (quote_n): Fix typo in comment.
46469
46470 2003-03-18  Bruno Haible  <bruno@clisp.org>
46471
46472         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
46473         checking.
46474         * m4/onceonly_2_57.m4: Likewise.
46475
46476 2003-03-17  Bruno Haible  <bruno@clisp.org>
46477
46478         * m4/onceonly.m4: Require autoconf 2.54 or newer.
46479         (m4_quote): Remove macro.
46480         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
46481
46482 2003-03-14  Jim Meyering  <jim@meyering.net>
46483
46484         Merge changes from Coreutils.
46485         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
46486         to be const, in order to avoid warnings.
46487         (obstack_room): Likewise.
46488         (obstack_empty_p): Likewise.
46489
46490 2003-03-14  Bruno Haible  <bruno@clisp.org>
46491
46492         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
46493         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
46494
46495 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46496
46497         Merge changes from Bison.
46498         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
46499         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
46500         when compiling Bison 1.875's `bitset bset = obstack_alloc
46501         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
46502         * lib/hash.c: Include <stdbool.h> unconditionally.
46503
46504 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46505
46506         * m4/onceonly.m4 (m4_quote): New macro.
46507         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
46508         Quote AC_FOREACH variable-expansions properly.
46509
46510 2003-03-13  Paul Eggert  <eggert@twinsun.com>
46511
46512         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
46513
46514 2003-03-09  Paul Eggert  <eggert@twinsun.com>
46515
46516         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
46517         Reported by Bruce Becker; see:
46518         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
46519
46520 2003-03-03  Paul Eggert  <eggert@twinsun.com>
46521             Bruno Haible  <bruno@clisp.org>
46522
46523         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
46524         Reported by John Hughes, see
46525         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
46526
46527 2003-02-20  Bruno Haible  <bruno@clisp.org>
46528
46529         * MODULES.html.sh (func_all_modules): Add poll.
46530
46531 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46532
46533         * modules/poll: New file.
46534
46535 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46536
46537         * lib/poll_.h: New file.
46538         * lib/poll.c: New file.
46539
46540 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
46541
46542         * m4/poll.m4: New file.
46543
46544 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46545
46546         * modules/mathl: New file.
46547
46548 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46549
46550         * lib/mathl.h: New file.
46551         * lib/acosl.c: New file.
46552         * lib/asinl.c: New file.
46553         * lib/atanl.c: New file.
46554         * lib/ceill.c: New file.
46555         * lib/cosl.c: New file.
46556         * lib/expl.c: New file.
46557         * lib/floorl.c: New file.
46558         * lib/frexpl.c: New file.
46559         * lib/ldexpl.c: New file.
46560         * lib/logl.c: New file.
46561         * lib/sincosl.c: New file.
46562         * lib/sinl.c: New file.
46563         * lib/sqrtl.c: New file.
46564         * lib/tanl.c: New file.
46565         * lib/trigl.c: New file.
46566         * lib/trigl.h: New file.
46567
46568 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
46569
46570         * m4/mathl.m4: New file.
46571
46572 2003-02-18  Bruno Haible  <bruno@clisp.org>
46573
46574         * MODULES.html.sh (func_all_modules): Add mathl.
46575
46576 2003-02-17  Bruno Haible  <bruno@clisp.org>
46577
46578         * modules/mkdtemp: New module.
46579         * MODULES.html.sh (func_all_modules): Add it.
46580
46581 2003-02-17  Bruno Haible  <bruno@clisp.org>
46582
46583         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
46584
46585 2003-02-17  Bruno Haible  <bruno@clisp.org>
46586
46587         * lib/mkdtemp.h: New file, from GNU gettext.
46588         * lib/mkdtemp.c: New file, from GNU gettext.
46589
46590 2003-02-02  Jim Meyering  <jim@meyering.net>
46591
46592         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
46593         e.g. glibc-2.2.93.
46594
46595 2003-01-31  Bruno Haible  <bruno@clisp.org>
46596
46597         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
46598         'rpl_rename'.
46599         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
46600         'rpl_strnlen'.
46601         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
46602         'rpl_strtod'.
46603         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
46604         'rpl_utime'.
46605
46606 2003-01-31  Bruno Haible  <bruno@clisp.org>
46607
46608         * lib/rename.c: #undef rename before defining rpl_rename.
46609         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
46610
46611 2003-01-30  Bruno Haible  <bruno@clisp.org>
46612
46613         * modules/vasnprintf, modules/vasprintf: New modules.
46614         * MODULES.html.sh (func_all_modules): Add them.
46615
46616 2003-01-30  Bruno Haible  <bruno@clisp.org>
46617
46618         * m4/signed.m4: New file, from GNU gettext.
46619         * m4/longdouble.m4: New file, from GNU gettext.
46620         * m4/wchar_t.m4: New file, from GNU gettext.
46621         * m4/wint_t.m4: New file, from GNU gettext.
46622         * m4/vasnprintf.m4: New file.
46623         * m4/vasprintf.m4: New file.
46624
46625 2003-01-30  Bruno Haible  <bruno@clisp.org>
46626
46627         * lib/printf-args.h: New file, from GNU gettext.
46628         * lib/printf-args.c: New file, from GNU gettext.
46629         * lib/printf-parse.h: New file, from GNU gettext.
46630         * lib/printf-parse.c: New file, from GNU gettext.
46631         * lib/vasnprintf.h: New file, from GNU gettext.
46632         * lib/vasnprintf.c: New file, from GNU gettext.
46633         * lib/asnprintf.c: New file, from GNU gettext.
46634         * lib/vasprintf.h: New file, from GNU gettext with modifications.
46635         * lib/vasprintf.c: New file, from GNU gettext.
46636         * lib/asprintf.c: New file, from GNU gettext.
46637
46638 2003-01-29  Bruno Haible  <bruno@clisp.org>
46639
46640         * modules/stpncpy: New module.
46641         * MODULES.html.sh (func_all_modules): Add it.
46642
46643 2003-01-29  Bruno Haible  <bruno@clisp.org>
46644
46645         * m4/stpncpy.m4: New file.
46646
46647 2003-01-29  Bruno Haible  <bruno@clisp.org>
46648
46649         * lib/stpncpy.h: New file, from GNU gettext with modifications.
46650         * lib/stpncpy.c: New file, from GNU gettext with modifications.
46651
46652 2003-01-28  Bruno Haible  <bruno@clisp.org>
46653
46654         * modules/c-ctype: New module.
46655         * MODULES.html.sh (func_all_modules): Add it.
46656
46657 2003-01-28  Bruno Haible  <bruno@clisp.org>
46658
46659         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
46660         Paul Eggert.
46661         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
46662         Paul Eggert.
46663
46664 2003-01-27  Bruno Haible  <bruno@clisp.org>
46665
46666         * modules/xsetenv: New module.
46667         * MODULES.html.sh (func_all_modules): Add it.
46668
46669 2003-01-27  Bruno Haible  <bruno@clisp.org>
46670
46671         * lib/xsetenv.h: New file, from GNU gettext.
46672         * lib/xsetenv.c: New file, from GNU gettext.
46673
46674 2003-01-23  Jim Meyering  <jim@meyering.net>
46675
46676         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
46677         from working on systems without dirfd (at least Irix and OSF1/Tru64).
46678
46679 2003-01-23  Bruno Haible  <bruno@clisp.org>
46680
46681         * modules/minmax: New module.
46682         * MODULES.html.sh (func_all_modules): Add it.
46683
46684 2003-01-23  Bruno Haible  <bruno@clisp.org>
46685
46686         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
46687         Eggert.
46688
46689 2003-01-22  Bruno Haible  <bruno@clisp.org>
46690
46691         * modules/exit: New module.
46692         * MODULES.html.sh (func_all_modules): Add it.
46693
46694 2003-01-22  Bruno Haible  <bruno@clisp.org>
46695
46696         * lib/exit.h: New file, from GNU gettext.
46697
46698 2003-01-19  Bruno Haible  <bruno@clisp.org>
46699
46700         * gnulib-tool: Recognize option --extract-maintainer.
46701         (func_get_maintainer): New function.
46702         * modules/*: Add Maintainer entry.
46703
46704 2003-01-16  Jim Meyering  <jim@meyering.net>
46705
46706         * m4/regex.m4: The `regex' struct is both input and output.
46707         Initialize it before each use.  Patch by Tim Waugh.
46708
46709 2003-01-16  Bruno Haible  <bruno@clisp.org>
46710
46711         * MODULES.html.sh: Add a table of contents. Add the module name as
46712         leftmost column. Add hyperlinks.
46713
46714 2003-01-15  Bruno Haible  <bruno@clisp.org>
46715
46716         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
46717
46718 2003-01-15  Bruno Haible  <bruno@clisp.org>
46719
46720         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
46721         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
46722         suffix.
46723
46724 2003-01-15  Bruno Haible  <bruno@clisp.org>
46725
46726         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
46727
46728 2003-01-15  Bruno Haible  <bruno@clisp.org>
46729
46730         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
46731         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
46732
46733 2003-01-14  Jim Meyering  <jim@meyering.net>
46734
46735         * lib/same.c (same_name): Tweak a comment.
46736
46737 2003-01-14  Bruno Haible  <bruno@clisp.org>
46738
46739         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
46740         when a string comparison is sufficient.
46741
46742 2003-01-14  Bruno Haible  <bruno@clisp.org>
46743
46744         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
46745         'unsigned int'.
46746
46747 2003-01-14  Bruno Haible  <bruno@clisp.org>
46748
46749         * lib/hash-pjw.c: Add comment about low quality of this function.
46750
46751 2003-01-13  Bruno Haible  <bruno@clisp.org>
46752
46753         * modules/stpcpy: Distribute lib/stpcpy.h.
46754         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
46755
46756 2003-01-13  Bruno Haible  <bruno@clisp.org>
46757
46758         * modules/*: Add a description.
46759         * modules/strpbrk: Fix Makefile.am snippet.
46760         * modules/strtoimax: Fix dependencies.
46761         * modules/strtoumax: Likewise.
46762
46763 2003-01-13  Bruno Haible  <bruno@clisp.org>
46764
46765         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
46766         * modules/alloca (Makefile.am): All object files depend on alloca.h.
46767         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
46768
46769 2003-01-13  Bruno Haible  <bruno@clisp.org>
46770
46771         * gnulib-tool (func_create_testdir): Store config/* files in the main
46772         directory.
46773         * config.rpath: Move to ...
46774         * config/config.rpath: ... here.
46775         * modules/gettext: Contains config/config.rpath, not config.rpath.
46776         * modules/iconv: Likewise.
46777
46778 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46779
46780         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46781         to avoid collisions with libcurses and libreadline.
46782
46783         * m4/getstr.m4: Remove.
46784         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
46785
46786 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46787
46788         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46789         to avoid collisions with libcurses and libreadline.
46790
46791         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
46792         * lib/getstr.h, getstr.c: Remove.
46793         * lib/getline.c: Include "getline.h", to check interface.
46794         Move body of old getstr.c here: this defines MIN_CHUNK and
46795         declares getdelim2, which is renamed from getstr.
46796         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
46797
46798         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
46799         All uses changed.
46800         * lib/linebuffer.h: Likewise.
46801         (readline): Remove backward-compatibility macro.
46802
46803 2003-01-12  Paul Eggert  <eggert@twinsun.com>
46804
46805         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
46806         to avoid collisions with libcurses and libreadline.
46807         * getstr: Remove.
46808         * MODULES.html.sh: Remove getstr.
46809         * modules/getline: Depend on unlocked-io, not getstr.
46810
46811 2003-01-12  Jim Meyering  <jim@meyering.net>
46812
46813         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
46814
46815 2003-01-10  Bruno Haible  <bruno@clisp.org>
46816
46817         * modules/alloca: Change Makefile.am requirements. Simplify Include
46818         requirements. Add lib/alloca_.h to file list.
46819
46820 2003-01-10  Bruno Haible  <bruno@clisp.org>
46821
46822         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
46823
46824 2003-01-10  Bruno Haible  <bruno@clisp.org>
46825
46826         * lib/alloca_.h: New file.
46827         * lib/getdate.y: Unconditionally include alloca.h.
46828         * lib/makepath.c: Likewise.
46829         * lib/setenv.c: Likewise.
46830         * lib/userspec.c: Likewise.
46831
46832 2003-01-09  Karl Berry  <karl@gnu.org>
46833
46834         * MODULES.html.sh: include `dirname $0` in PATH, to find
46835         gnulib-tool.
46836
46837 2003-01-09  Bruno Haible  <bruno@clisp.org>
46838
46839         * modules/stdbool: Change configure.ac, Makefile.am requirements.
46840         Simplify Include requirements. Add lib/stdbool.h.in to file list.
46841
46842 2003-01-09  Bruno Haible  <bruno@clisp.org>
46843
46844         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
46845
46846 2003-01-09  Bruno Haible  <bruno@clisp.org>
46847
46848         * lib/stdbool.h.in: New file.
46849
46850 2003-01-09  Bruno Haible  <bruno@clisp.org>
46851
46852         * gnulib-tool (func_all_modules): Ignore files ending in ~.
46853         * MODULES.html.sh: Likewise.
46854
46855 2003-01-08  Jim Meyering  <jim@meyering.net>
46856
46857         * lib/full-write.c: Undefine and define-away `const' after inclusion
46858         of errno.h, not before.  Suggestion from Bruno Haible.
46859
46860 2003-01-08  Bruno Haible  <bruno@clisp.org>
46861
46862         * modules/full-read: Depend on full-write.
46863
46864 2003-01-08  Bruno Haible  <bruno@clisp.org>
46865
46866         * lib/safe-read.c: Include specification header first, to ensure its
46867         selfcontainedness.
46868         * lib/full-write.c: Likewise.
46869
46870 2003-01-07  Jim Meyering  <jim@meyering.net>
46871
46872         * lib/full-write.c: Rework so that it may serve to define full_read,
46873         too.
46874         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
46875
46876 2003-01-07  Bruno Haible  <bruno@clisp.org>
46877
46878         * lib/strtoimax.c: Include <stdint.h> as an alternative to
46879         <inttypes.h>.
46880         * lib/xstrtol.h: Likewise.
46881         * lib/xstrtoimax.c: Likewise.
46882         * lib/xstrtoumax.c: Likewise.
46883         * lib/human.h: Likewise.
46884
46885         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
46886         on systems that have <inttypes.h> but not <stdint.h>.
46887
46888 2003-01-07  Bruno Haible  <bruno@clisp.org>
46889
46890         * MODULES.html.sh: Add copyright notice.
46891         (missed_files): Omit CVS directory entries.
46892         (func_module): Make it work with sed-3.02.
46893         * MODULES.txt: Remove file.
46894
46895 2003-01-06  Jim Meyering  <jim@meyering.net>
46896
46897         * lib/version-etc.c: Update year in translatable copyright string.
46898
46899 2003-01-03  Karl Berry  <karl@gnu.org>
46900
46901         * config/config.{guess,sub}: update from prep.
46902
46903 2003-01-02  Karl Berry  <karl@gnu.org>
46904
46905         * doc/COPYING.DOC: belatedly updated to 1.2.
46906
46907 2003-01-01  Karl Berry  <karl@gnu.org>
46908
46909         * gnulib-tool (func_verify_module): report module name $module in
46910         error message, not $1.
46911         * gnulib-tool (create-testdir): don't complain if destdir couldn't
46912         be created, only if it doesn't exist.
46913         * gnulib-tool (last_checkin_date): don't expand the $Date here.
46914
46915 2002-12-31  Paul Eggert  <eggert@twinsun.com>
46916
46917         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
46918
46919 2002-12-31  Paul Eggert  <eggert@twinsun.com>
46920
46921         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
46922         memcmp if strcoll doesn't work.
46923
46924 2002-12-31  Bruno Haible  <bruno@clisp.org>
46925
46926         * lib/utime.c (utime_null): No need to call ftruncate if the file was
46927         nonempty.
46928
46929 2002-12-31  Bruno Haible  <bruno@clisp.org>
46930
46931         * lib/memcoll.c (STRCOLL): New macro.
46932         (memcoll): Use it.
46933
46934 2002-12-31  Bruno Haible  <bruno@clisp.org>
46935
46936         * lib/localcharset.h: New file.
46937         * lib/localcharset.c: Include it.
46938         * lib/unicodeio.c: Likewise.
46939
46940 2002-12-31  Bruno Haible  <bruno@clisp.org>
46941
46942         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
46943         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
46944
46945 2002-12-31  Bruno Haible  <bruno@clisp.org>
46946
46947         * lib/getline.h: Include <stddef.h>, for size_t.
46948
46949         * lib/unicodeio.h: Include <stddef.h>, for size_t.
46950         * lib/unicodeio.c: Don't include <stddef.h>.
46951
46952 2002-12-31  Bruno Haible  <bruno@clisp.org>
46953
46954         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
46955         HAVE_TM_ZONE.
46956
46957 2002-12-24  Karl Berry  <karl@gnu.org>
46958
46959         * config/config.guess: update from prep.
46960
46961 2002-12-24  Bruno Haible  <bruno@clisp.org>
46962
46963         General infrasructure.
46964         * m4/README: Rewritten.
46965         * m4/onceonly.m4: New file.
46966         * m4/onceonly_2_57.m4: New file.
46967
46968         Module atexit.
46969         * m4/atexit.m4: New file.
46970
46971         Module strtod.
46972         * m4/strtod.m4: New file.
46973
46974         Module strtol.
46975         * m4/strtol.m4: New file.
46976
46977         Module strtoul.
46978         * m4/strtoul.m4: New file.
46979
46980         Module memchr.
46981         * m4/memchr.m4: New file.
46982
46983         Module memcmp.
46984         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
46985         (jm_FUNC_MEMCMP): Invoke it.
46986
46987         Module memcpy.
46988         * m4/memcpy.m4: New file.
46989
46990         Module memmove.
46991         * m4/memmove.m4: New file.
46992
46993         Module memset.
46994         * m4/memset.m4: New file.
46995
46996         Module strcspn.
46997         * m4/strcspn.m4: New file.
46998
46999         Module strpbrk.
47000         * m4/strpbrk.m4: New file.
47001
47002         Module strstr.
47003         * m4/strstr.m4: New file.
47004
47005         Module strerror.
47006         * m4/strerror.m4: New file.
47007
47008         Module mktime.
47009         * m4/mktime.m4: Renamed from jm-mktime.m4.
47010         (gl_PREREQ_MKTIME): New macro.
47011         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
47012
47013         Module malloc.
47014         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
47015         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
47016         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
47017
47018         Module realloc.
47019         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
47020         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
47021         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
47022
47023         Module strftime.
47024         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
47025         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
47026         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
47027         gl_TM_GMTOFF.
47028         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
47029
47030         Module xalloc.
47031         * m4/xalloc.m4: New file.
47032
47033         Module alloca.
47034         * m4/alloca.m4: New file.
47035
47036         Module putenv.
47037         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
47038         (jm_FUNC_PUTENV): Invoke it.
47039
47040         Module setenv.
47041         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
47042         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
47043         when invoked twice.
47044         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
47045         gt_FUNC_SETENV.
47046
47047         Module memrchr.
47048         * m4/memrchr.m4: New file.
47049
47050         Module stpcpy.
47051         * m4/stpcpy.m4: New file.
47052
47053         Module strcase.
47054         * m4/strcase.m4: New file.
47055
47056         Module strdup.
47057         * m4/strdup.m4: New file.
47058
47059         Module strnlen.
47060         * m4/strnlen.m4: New file.
47061
47062         Module strndup.
47063         * m4/strndup.m4: New file.
47064
47065         Module xstrtod.
47066         * m4/xstrtod.m4: New file.
47067
47068         Module xstrtol.
47069         * m4/xstrtol.m4: New file.
47070
47071         Module getdate.
47072         * m4/getdate.m4: New file.
47073
47074         Module unlocked-io.
47075         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
47076         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
47077         * m4/jm-glibc-io.m4n: Remove file.
47078
47079         Module long-options.
47080         * m4/long-options.m4: New file.
47081
47082         Module md5.
47083         * m4/md5.m4: New file.
47084
47085         Module sha.
47086         * m4/sha.m4: New file.
47087
47088         Module getstr.
47089         * m4/getstr.m4: New file.
47090
47091         Module getline.
47092         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
47093         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
47094         <sys/types.h>, for size_t. Use the function name gnu_getline, not
47095         simply getline. Infoke gl_PREREQ_GETLINE.
47096
47097         Module obstack.
47098         * m4/obstack.m4: New file.
47099
47100         Module hash.
47101         * m4/hash.m4: New file.
47102
47103         Module readtokens.
47104         * m4/readtokens.m4: New file.
47105
47106         Module strverscmp.
47107         * m4/strverscmp.m4: New file.
47108
47109         Module stdbool.
47110         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
47111         OSF/1.
47112
47113         Module strtoll.
47114         * m4/strtoll.m4: New file.
47115
47116         Module strtoull.
47117         * m4/strtoull.m4: New file.
47118
47119         Module strtoimax.
47120         * m4/strtoimax.m4: New file.
47121
47122         Module strtoumax.
47123         * m4/strtoumax.m4: New file.
47124
47125         Module xstrtoimax.
47126         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
47127         jm_AC_PREREQ_XSTRTOIMAX.
47128         Moved the strtol prerequisites to strtol.m4.
47129         Moved the strtoll prerequisites to strtoll.m4.
47130         Moved the strtoimax prerequisites to strtoimax.m4.
47131
47132         Module xstrtoumax.
47133         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
47134         jm_AC_PREREQ_XSTRTOUMAX.
47135         Moved the strtoul prerequisites to strtoul.m4.
47136         Moved the strtoull prerequisites to strtoull.m4.
47137         Moved the strtoumax prerequisites to strtoumax.m4.
47138
47139         Module chown.
47140         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
47141         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
47142
47143         Module dup2.
47144         * m4/dup2.m4: New file.
47145
47146         Module ftruncate.
47147         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
47148         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
47149
47150         Module getgroups.
47151         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
47152         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
47153
47154         Module gettimeofday.
47155         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
47156         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
47157         gl_PREREQ_GETTIMEOFDAY.
47158
47159         Module mkdir.
47160         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
47161         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
47162
47163         Module mkstemp.
47164         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
47165         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
47166         jm_AC_TYPE_UINTMAX_T.
47167         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
47168
47169         Module stat.
47170         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
47171         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
47172
47173         Module lstat.
47174         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
47175         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
47176
47177         Module timespec.
47178         * m4/timespec.m4 (gl_TIMESPEC): New macro.
47179         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
47180         * m4/st_mtim.m4: Indentation.
47181
47182         Module nanosleep.
47183         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
47184         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
47185         gl_PREREQ_NANOSLEEP.
47186
47187         Module regex.
47188         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
47189         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
47190         (gl_REGEX): New macro.
47191
47192         Module rename.
47193         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
47194         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
47195
47196         Module rmdir.
47197         * m4/rmdir.m4: New file.
47198
47199         Module utime.
47200         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
47201         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
47202         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
47203
47204         Module dirname.
47205         * m4/dirname.m4: New file.
47206
47207         Module getopt.
47208         * m4/getopt.m4: New file.
47209
47210         Module unistd-safer.
47211         * m4/unistd-safer.m4: New file.
47212
47213         Module fnmatch.
47214         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
47215         declaration.
47216         (gl_PREREQ_FNMATCH_EXTRA): New macro.
47217         (gl_FUNC_FNMATCH_POSIX): New macro.
47218         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
47219         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
47220         simply fnmatch.
47221
47222         Module exclude.
47223         * m4/exclude.m4: New file.
47224
47225         Module human.
47226         * m4/human.m4: New file.
47227
47228         Module acl.
47229         * m4/acl.m4: Nop.
47230
47231         Module backupfile.
47232         * m4/backupfile.m4: New file.
47233         * m4/d-ino.m4: Indentation.
47234
47235         Module fsusage.
47236         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
47237         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
47238         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
47239
47240         Module dirfd.
47241         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
47242         requirements.
47243
47244         Module euidaccess.
47245         * m4/euidaccess.m4: New file.
47246
47247         Module file-type.
47248         * m4/file-type.m4: New file.
47249
47250         Module fileblocks.
47251         * m4/fileblocks.m4: New file.
47252
47253         Module filemode.
47254         * m4/filemode.m4: New file.
47255
47256         Module isdir.
47257         * m4/isdir.m4: New file.
47258
47259         Module lchown.
47260         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
47261         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
47262
47263         Module makepath.
47264         * m4/makepath.m4: New file.
47265
47266         Module modechange.
47267         * m4/modechange.m4: New file.
47268
47269         Module mountlist.
47270         * m4/mountlist.m4: New file.
47271         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
47272         Indentation.
47273
47274         Module path-concat.
47275         * m4/path-concat.m4: New file.
47276
47277         Module pathmax.
47278         * m4/pathmax.m4: New file.
47279
47280         Module same.
47281         * m4/same.m4: New file.
47282
47283         Module save-cwd.
47284         * m4/save-cwd.m4: New file.
47285
47286         Module savedir.
47287         * m4/savedir.m4: New file.
47288
47289         Module xgetcwd.
47290         * m4/xgetcwd.m4: New file.
47291         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
47292
47293         Module xreadlink.
47294         * m4/xreadlink.m4: New file.
47295
47296         Module safe-read.
47297         * m4/safe-read.m4: New file.
47298
47299         Module safe-write.
47300         * m4/safe-write.m4: New file.
47301
47302         Module closeout.
47303         * m4/closeout.m4: New file.
47304
47305         Module stdio-safer.
47306         * m4/stdio-safer.m4: New file.
47307
47308         Module getpass.
47309         * m4/getpass.m4: New file.
47310
47311         Module getugroups.
47312         * m4/getugroups.m4: New file.
47313
47314         Module group-member.
47315         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
47316         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
47317
47318         Module idcache.
47319         * m4/idcache.m4: New file.
47320
47321         Module userspec.
47322         * m4/userspec.m4: New file.
47323
47324         Module gettime.
47325         * m4/clock_time.m4: New file.
47326         * m4/gettime.m4: New file.
47327
47328         Module settime.
47329         * m4/settime.m4: New file.
47330
47331         Module posixtm.
47332         * m4/posixtm.m4: New file.
47333
47334         Module gethostname.
47335         * m4/gethostname.m4: New file.
47336
47337         Module canon-host.
47338         * m4/canon-host.m4: New file.
47339
47340         Module gettext.
47341         * m4/codeset.m4: New file, from gettext-0.11.5.
47342         * m4/gettext.m4: New file, from gettext-0.11.5.
47343         * m4/glibc21.m4: New file, from gettext-0.11.5.
47344         * m4/iconv.m4: New file, from gettext-0.11.5.
47345         * m4/intdiv0.m4: New file, from gettext-0.11.5.
47346         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
47347         * m4/inttypes.m4: New file, from gettext-0.11.5.
47348         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
47349         * m4/isc-posix.m4: New file, from gettext-0.11.5.
47350         * m4/lcmessage.m4: New file, from gettext-0.11.5.
47351         * m4/lib-ld.m4: New file, from gettext-0.11.5.
47352         * m4/lib-link.m4: New file, from gettext-0.11.5.
47353         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
47354         * m4/progtest.m4: New file, from gettext-0.11.5.
47355         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
47356         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
47357         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
47358
47359         Module localcharset.
47360         * m4/localcharset.m4: New file.
47361
47362         Module hard-locale.
47363         * m4/hard-locale.m4: New file.
47364
47365         Module mbswidth.
47366         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
47367         onceonly macros.
47368         * m4/mbrtowc.m4: Add comment.
47369
47370         Module memcasecmp.
47371         * m4/memcasecmp.m4: New file.
47372
47373         Module memcoll.
47374         * m4/memcoll.m4: New file.
47375
47376         Module unicodeio.
47377         * m4/unicodeio.m4: New file.
47378
47379         Module rpmatch.
47380         * m4/rpmatch.m4: New file.
47381
47382         Module yesno.
47383         * m4/yesno.m4: New file.
47384
47385         Module exitfail.
47386         * m4/exitfail.m4: New file.
47387
47388         Module c-stack.
47389         * m4/c-stack.m4 (gl_C_STACK): New macro.
47390         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
47391
47392         Module error.
47393         * m4/error.m4 (gl_ERROR): New macro.
47394         (jm_PREREQ_ERROR): Use onceonly macros.
47395
47396         Module fatal.
47397         * m4/fatal.m4: New file.
47398
47399         Module getloadavg.
47400         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
47401         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
47402
47403         Module getpagesize.
47404         * m4/getpagesize.m4: New file.
47405
47406         Module getusershell.
47407         * m4/getusershell.m4: New file.
47408
47409         Module physmem.
47410         * m4/physmem.m4: New file.
47411
47412         Module posixver.
47413         * m4/posixver.m4: New file.
47414
47415         Module quotearg.
47416         * m4/quotearg.m4: New file.
47417
47418         Module quote.
47419         * m4/quote.m4: New file.
47420
47421         Module readutmp.
47422         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
47423
47424         Module sig2str.
47425         * m4/sig2str.m4: New file.
47426
47427         Other.
47428         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
47429         ulonglong.m4.
47430         * m4/intmax_t.m4: New file.
47431         * m4/d-type.m4: Indentation.
47432         * m4/jm-macros.m4: Update.
47433         * m4/prereq.m4 (jm_PREREQ): Update.
47434         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
47435         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
47436         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
47437         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
47438         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
47439         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
47440         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
47441         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
47442         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
47443         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
47444         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
47445         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
47446         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
47447         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
47448         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
47449         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
47450         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
47451         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
47452         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
47453
47454 2002-12-24  Bruno Haible  <bruno@clisp.org>
47455
47456         * MODULES.txt: Update according to m4/ changes.
47457
47458         Module gettext.
47459         * config.rpath: New file, from gettext-0.11.5.
47460
47461         * modules/*: New module descriptions.
47462         * gnulib-tool: New file.
47463         * MODULES.html.sh: New file.
47464
47465 2002-12-21  Karl Berry  <karl@gnu.org>
47466
47467         * doc/fdl.texi: update to version 1.2.
47468
47469 2002-12-19  Karl Berry  <karl@gnu.org>
47470
47471         * config/config.guess: update from prep.
47472
47473 2002-12-18  Bruno Haible  <bruno@clisp.org>
47474
47475         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
47476         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
47477
47478 2002-12-17  Bruno Haible  <bruno@clisp.org>
47479
47480         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
47481         stdlib.h, string.h.
47482
47483 2002-12-17  Bruno Haible  <bruno@clisp.org>
47484
47485         * lib/canon-host.c (strdup): Remove unused declaration.
47486
47487         * lib/fsusage.c: Include full_read.h.
47488         (get_fs_usage): Use full_read instead of safe_read.
47489
47490         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
47491
47492 2002-12-12  Karl Berry  <karl@gnu.org>
47493
47494         * config/config.guess: update from prep.
47495
47496 2002-12-11  Bruno Haible  <bruno@clisp.org>
47497
47498         * m4/setenv.m4: New file, from gettext-0.11.5.
47499
47500 2002-12-11  Bruno Haible  <bruno@clisp.org>
47501
47502         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
47503         not unsetenv().
47504         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
47505         modifications:
47506
47507         2002-12-11  Bruno Haible  <bruno@clisp.org>
47508
47509                 * setenv.c (alloca): Fall back to malloc.
47510                 (freea): New macro.
47511                 (setenv): Use freea() to free memory allocated with alloca().
47512
47513         2002-11-13  Bruno Haible  <bruno@clisp.org>
47514
47515                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
47516                 function declarations.
47517                 * unsetenv.c (unsetenv): Likewise.
47518
47519         2002-03-04  Bruno Haible  <bruno@clisp.org>
47520
47521                 Portability to AIX 4.3.3.
47522                 * unsetenv.c: New file, extracted from setenv.c.
47523                 * setenv.c: Move the unsetenv() function to unsetenv.c.
47524
47525         2001-12-20  Bruno Haible  <bruno@clisp.org>
47526
47527                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
47528                 use malloc instead. For SunOS 4.
47529
47530         2001-12-11  Bruno Haible  <bruno@clisp.org>
47531
47532                 * setenv.c: Declare alloca.
47533                 (compar_fn_t): New typedef.
47534                 (KNOWN_VALUE, STORE_VALUE): Use it.
47535
47536         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
47537         setenv.h.
47538
47539 2002-12-10  Paul Eggert  <eggert@twinsun.com>
47540
47541         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
47542         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
47543         Choose values that are less likely to collide with system fnmatch
47544         options.
47545         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
47546         defined (e.g., a pure POSIX system).
47547         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
47548         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
47549
47550 2002-12-06  Paul Eggert  <eggert@twinsun.com>
47551
47552         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
47553         a pain in practice to deal with generated m4 files.  This change
47554         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
47555
47556         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
47557         and jm-glibc-io.m4, as they are no longer a special case.
47558         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
47559         kludge and the auto-generation stuff.  Check only whether the
47560         functions are declared, not whether they exist, since older hosts
47561         that don't declare the functions can't use the optimization anyway.
47562
47563 2002-12-06  Jim Meyering  <jim@meyering.net>
47564
47565         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
47566
47567         Merge in changes from libc's misc/error.c, in preparation
47568         for the merge of gnulib's changes back into libc.
47569
47570         * lib/error.c (_): Define only if not already defined.
47571         Move definition to follow all #include directives.
47572         Include unlocked-io.h only if !_LIBC.
47573         [_LIBC]: Include <libio/libioP.h>.
47574         [USE_IN_LIBIO]: Include <libio/iolibio.h>
47575         (fflush): Tweak definition to use INTUSE.
47576         (putc): Define.
47577
47578 2002-12-05  Paul Eggert  <eggert@twinsun.com>
47579
47580         * lib/alloca.c [defined emacs]: Include "lisp.h".
47581         (xalloc_die) [defined emacs]: New macro.
47582         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
47583         [! defined emacs]: Include <xalloc.h>.
47584         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
47585         (pointer): Typedef to POINTER_TYPE *.
47586         (malloc): Remove decl; we now always use xmalloc.
47587         (alloca): Use old-style definition, since Emacs needs this.
47588         Check for arithmetic overflow when computing combined size.
47589
47590 2002-12-04  Paul Eggert  <eggert@twinsun.com>
47591
47592         Do not generate unlocked-io.h automatically, since it's easier to
47593         maintain it by hand.
47594
47595         * lib/unlocked-io.h: New file, from GNU diffutils,
47596         but with proper copyright notice and attribution.
47597         * lib/gen-uio: Remove.
47598         * lib/Makefile.am: Add copyright notice.
47599         (libfetish_a_SOURCES): Add unlocked-io.h.
47600         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
47601         (DISTCLEANFILES, io_functions): Remove macros.
47602         (EXTRA_DIST): Remove gen_uio.
47603         (unlocked-io.h): Remove rule.
47604
47605 2002-12-04  Jim Meyering  <jim@meyering.net>
47606
47607         Reflect the fact that stat.c and lstat.c are no longer generated.
47608         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
47609         (DISTCLEANFILES): Likewise.
47610         (EXTRA_DIST): Likewise.
47611         (all_local): Don't depend on stat.c or lstat.c.
47612         (stat.c, lstat.c): Remove rules.
47613         (EXTRA_DIST): Remove xstat.in.
47614
47615         * lib/xstat.in: Remove file.  Contents moved into stat.c.
47616         * lib/stat.c: New file.  Contents mostly from xstat.in.
47617         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
47618         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
47619
47620         * lib/safe-read.c: Rework so that it may serve to define safe_write,
47621         too.
47622         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
47623
47624 2002-12-03  Jim Meyering  <jim@meyering.net>
47625
47626         * lib/safe-read.c, safe-write.c: Change variable names and comments,
47627         but not semantics, to minimize the differences between these two files.
47628         (safe_read): Change comment to mention SAFE_READ_ERROR.
47629
47630         * lib/safe-read.c (IS_EINTR): Define.
47631         (safe_read): Use IS_EINTR in place of in-function cpp directives.
47632
47633 2002-12-02  Jim Meyering  <jim@meyering.net>
47634
47635         * lib/safe-read.c (EINTR): Define.
47636         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
47637         (INT_MAX): Provide fallback.
47638         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
47639
47640         * lib/safe-read.h (SAFE_READ_ERROR): Define.
47641
47642 2002-12-02  Bruno Haible  <bruno@clisp.org>
47643
47644         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
47645         Define, taken from safe-read.c.
47646         (INT_MAX): Provide fallback.
47647         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
47648         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
47649
47650         * lib/safe-read.c (EINTR): Remove definition.
47651         (safe_read): Don't use EINTR if it is absent.
47652
47653 2002-12-01  Jim Meyering  <jim@meyering.net>
47654
47655         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
47656         zero.
47657         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
47658
47659 2002-11-27  Paul Eggert  <eggert@twinsun.com>
47660
47661         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
47662         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
47663         with `if (! (value < limit)) abort ();', for readability.
47664
47665 2002-11-26  Karl Berry  <karl@gnu.org>
47666
47667         * lib/strdup.c: copy from libc again, with jim's ok.
47668         * lib/.cppi-disable: re-add strdup.c
47669
47670 2002-11-25  Karl Berry  <karl@gnu.org>
47671
47672         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
47673         instead of "strtol.c".
47674
47675 2002-11-25  Karl Berry  <karl@gnu.org>
47676
47677         * config/install-sh: update from automake for variable quoting, $0 in
47678         error msgs, etc.
47679
47680         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
47681         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
47682         entry.
47683
47684 2002-11-25  Jim Meyering  <jim@meyering.net>
47685
47686         * lib/mktime.c: Sync from libc, now that it has the latest fix.
47687
47688 2002-11-24  Karl Berry  <karl@gnu.org>
47689
47690         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
47691         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
47692
47693 2002-11-24  Jim Meyering  <jim@meyering.net>
47694
47695         Update from coreutils:
47696
47697         * lib/mktime.c: Merge in changes from libc.
47698
47699         Avoid a link-time failure on some Linux systems.
47700         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
47701         (otherwise).
47702         (__mon_yday): Declare with the STATIC attribute.
47703         (__mktime_internal): Likewise.
47704         Based on a report from Greg Schafer.
47705
47706 2002-11-23  Jim Meyering  <jim@meyering.net>
47707
47708         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
47709         Use `unsigned', not `int', as type of index.
47710
47711         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
47712
47713         * lib/fsusage.c: Remove unneeded parentheses around operands of
47714         `defined'.
47715
47716 2002-11-22  Paul Eggert  <eggert@twinsun.com>
47717
47718         * lib/quotearg.h: Allow multiple inclusion by surrounding with
47719         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
47720         so that we can be included first.
47721         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
47722         * lib/quotearg.c: Include quotearg.h immediately after config.h.
47723         No need to include stddef.h or sys/types.h any more.
47724         Surround local include files with "", not "<>".
47725         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
47726         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
47727         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
47728         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
47729         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
47730         (ISPRINT): Remove; no longer needed now that we assume C89.
47731
47732         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
47733         Preserve errno.
47734
47735         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
47736         quotearg_char): Use SIZE_MAX rather than
47737         (size_t) -1 when we are talking about "infinity".
47738
47739         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
47740
47741 2002-11-22  Paul Eggert  <eggert@twinsun.com>
47742
47743         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
47744         hint that one should use `if (! x) abort ();' rather than `assert
47745         (x);', and anyway it's one less thing to worry about configuring.
47746         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
47747         hash_rehash, hash_insert): Use abort rather than assert.
47748
47749 2002-11-22  Bruno Haible  <bruno@clisp.org>
47750
47751         * lib/safe-read.h: Assume C89. Add comments.
47752         (safe_read): Change return type to size_t.
47753         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
47754         byte counts > SSIZE_MAX correctly.
47755         * lib/safe-write.h: New file.
47756         * lib/safe-write.c: New file.
47757         * lib/full-read.h: New file.
47758         * lib/full-read.c: New file.
47759         * lib/full-write.h: Assume C89. Add comments.
47760         * lib/full-write.c: Include safe-write.h.
47761         (full_write): Rewritten to use safe_write.
47762         Suggested by Jim Meyering and Paul Eggert.
47763
47764 2002-11-21  Jim Meyering  <jim@meyering.net>
47765
47766         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
47767
47768         Merge in changes from the coreutils.
47769
47770         2002-09-25  Paul Eggert  <eggert@twinsun.com>
47771         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
47772         <stdint.h>.
47773         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
47774         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
47775         int.  Work more efficiently if X is the same width as uintmax_t.
47776         Do not compare X to -1, to avoid bogus compiler warning.
47777         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
47778         Don't assume that f_frsize and f_bsize are the same type.
47779
47780         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
47781         warning on FreeBSD.
47782
47783         * lib/makepath.c (make_path): Restore umask *before* creating the final
47784         component.
47785         (make_path): Minor reformatting.
47786
47787         * lib/xmalloc.c: Adjust to work with new autoconf macros,
47788         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
47789         HAVE_MALLOC/HAVE_REALLOC.
47790
47791         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
47792         dummy ones.  At least on GNU/Linux systems, `auto' means something
47793         else.
47794         From Michael Stone.
47795
47796 2002-11-21  Bruno Haible  <bruno@clisp.org>
47797
47798         Remove case insensitive option matching.
47799         * lib/argmatch.h (argcasematch): Remove declaration.
47800         (ARGCASEMATCH): Remove macro.
47801         (__xargmatch_internal): Remove case_sensitive argument.
47802         (XARGMATCH): Update.
47803         (XARGCASEMATCH): Remove macro.
47804         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
47805         case_sensitive argument.
47806         (argcasematch): Remove function.
47807         (__xargmatch_internal): Remove case_sensitive argument.
47808         (main): Use XARGMATCH instead of XARGCASEMATCH.
47809
47810         * lib/xmalloc.c: Change compile-time error message. Add comment about
47811         required autoconf version.
47812
47813 2002-11-20  Paul Eggert  <eggert@twinsun.com>
47814
47815         Merge argmatch cleanups from Bison.  Assume C89.
47816
47817         * lib/argmatch.c: Include config.h here, not in argmatch.h.
47818         Include stdlib.h, for EXIT_FAILURE.
47819         Always include <string.h>, since we assume C89.
47820         (EXIT_FAILURE): Remove pre-C89 bug workaround.
47821         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
47822         Include <stddef.h> instead, since it's all we need for size_t.
47823         (PARAMS): Remove.  All uses removed.
47824         (ARRAY_CARDINALITY): Do not bother to #undef.
47825         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
47826         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
47827         Remove unnecessary parentheses.
47828         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
47829         Insert necessary parentheses.
47830         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
47831         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
47832
47833 2002-11-19  Bruno Haible  <bruno@clisp.org>
47834
47835         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
47836         * lib/mbswidth.h: Include <stddef.h>, for size_t.
47837
47838         * lib/mbswidth.h (PARAMS): Remove macro.
47839         (mbswidth, mbsnwidth): Use ANSI C function declarations.
47840         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
47841
47842         * lib/gcd.h (PARAMS): Remove macro.
47843         (gcd): Use ANSI C function declarations.
47844         * lib/gcd.c (gcd): Likewise.
47845
47846 2002-11-15  Bruno Haible  <bruno@clisp.org>
47847
47848         * lib/strcspn.c: Include <stddef.h>.
47849         (strcspn): Use ANSI C function declaration. Change return type to
47850         size_t. Use NULL.
47851         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
47852         (strpbrk): Use NULL.
47853         * lib/strpbrk.h (PARAMS): Remove macro.
47854         (strpbrk): Use ANSI C function declaration.
47855         * lib/strstr.c: Don't include <sys/types.h>.
47856         * lib/strstr.h (PARAMS): Remove macro.
47857         (strstr): Use ANSI C function declarations.
47858
47859 2002-11-14  Karl Berry  <karl@gnu.org>
47860
47861         * config/mkinstalldirs: `do' on separate line, instead of
47862         `for var; do'.
47863
47864 2002-11-06  Bruno Haible  <bruno@clisp.org>
47865
47866         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
47867         * lib/gcd.c (gcd): Likewise.
47868
47869 2002-11-05  Bruno Haible  <bruno@clisp.org>
47870
47871         * lib/gcd.h: New file, from gettext-0.11.5.
47872         * lib/gcd.c: New file, from gettext-0.11.5.
47873
47874 2002-11-05  Bruno Haible  <bruno@clisp.org>
47875
47876         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
47877         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
47878         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
47879         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
47880
47881         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
47882         <libintl.h>.
47883         * lib/makepath.c: Include gettext.h instead of <locale.h> and
47884         <libintl.h>.
47885
47886         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
47887         * lib/human.c: Include gettext.h instead of <libintl.h>.
47888         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
47889         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
47890         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
47891         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
47892         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
47893         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
47894         (textdomain): Remove definition.
47895         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
47896
47897         * lib/long-options.c: Remove include of <libintl.h> and definition of
47898         _.
47899         * lib/same.c: Remove include of <libintl.h> and definition of _.
47900
47901 2002-11-04  Owen Taylor  <otaylor@redhat.com>
47902
47903         * lib/config.charset: A few additions for Solaris.
47904
47905 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
47906
47907         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
47908         * lib/localcharset.c (locale_charset): Declare as extern "C".
47909
47910 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
47911
47912         * lib/config.charset: msdos in uk_UA uses CP1125.
47913
47914 2002-11-04  Bruno Haible  <bruno@clisp.org>
47915
47916         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
47917         * lib/strcase.h: New file, from GNU gettext-0.11.5.
47918         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
47919         * lib/strstr.h: New file, from GNU gettext-0.11.5.
47920         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
47921
47922 2002-11-04  Bruno Haible  <bruno@clisp.org>
47923
47924         * lib/localcharset.c (locale_charset): Don't return an empty string.
47925
47926 2002-11-04  Bruno Haible  <bruno@clisp.org>
47927
47928         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
47929         aliases.
47930
47931 2002-11-04  Bruno Haible  <bruno@clisp.org>
47932
47933         * lib/config.charset: Update for newest glibc. Add canonical names
47934         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
47935
47936 2002-11-04  Bruno Haible  <bruno@clisp.org>
47937
47938         * lib/config.charset: Add support for NetBSD.
47939
47940 2002-11-04  Bruno Haible  <bruno@clisp.org>
47941
47942         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
47943
47944 2002-11-01  Bruno Haible  <bruno@clisp.org>
47945
47946         * configure.in: Add AC_CONFIG_AUX_DIR call.
47947         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
47948         test/Makefile.
47949         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
47950
47951 2002-09-28  Karl Berry  <karl@gnu.org>
47952
47953         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
47954         installed automake until the next release, since changes have been
47955         made.
47956
47957 2002-09-25  Karl Berry  <karl@gnu.org>
47958
47959         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
47960         * lib/getopt*: copy from libc/posix.
47961         * lib/gettext.h: copy from gettext.
47962         * lib/.cppi-disable: add strdup.c, gettext.h.
47963
47964 2002-09-25  Karl Berry  <karl@gnu.org>
47965
47966         * config/srclist.txt: enable gettext.h check.
47967         * config/config.{guess,sub}: update from prep.
47968         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
47969                 from automake 1.6.3.
47970         See srclist*.
47971
47972 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
47973
47974         * regex.c (PATFETCH): Remove the translating fetch.
47975         (PATFETCH_RAW): Rename to PATFETCH.
47976         (set_image_of_range): New fun.
47977         (SET_RANGE_TABLE_WORK_AREA): Use it.
47978         (regex_compile): Don't translate the pattern chars so eagerly.
47979         Only do it when inserting an `exactn' bytecode or when handling
47980         a char-range.
47981         (mutually_exclusive_p): Avoid empty statement.
47982
47983 2002-07-06  Jim Meyering  <meyering@lucent.com>
47984
47985         * m4/README: Don't mention Makefile.am.in.
47986         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
47987
47988 2002-07-01  Jim Meyering  <meyering@lucent.com>
47989
47990         * lib/c-stack.c: Include sys/time.h.
47991         From Volker Borchert.
47992
47993 2002-06-26  Paul Eggert  <eggert@twinsun.com>
47994
47995         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
47996
47997 2002-06-26  Paul Eggert  <eggert@twinsun.com>
47998
47999         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
48000         New macro.  Use it uniformly instead of
48001         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
48002         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
48003         reported by Vin Shelton.
48004
48005 2002-06-22  Paul Eggert  <eggert@twinsun.com>
48006
48007         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
48008         Do not assume SA_SIGINFO behavior.
48009         Bug reported by Jim Meyering on NetBSD 1.5.2.
48010
48011 2002-06-22  Jim Meyering  <meyering@lucent.com>
48012
48013         * m4/c-stack.m4: New file, from diffutils-2.8.2.
48014         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
48015
48016         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
48017         now that configure.ac uses AC_GNU_SOURCE.
48018         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
48019         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
48020
48021         Update to latest tools.  Suggestions from Paul Eggert.
48022         * m4/stdbool.m4: New file, from diffutils-2.8.2.
48023         * m4/gnu-source.m4: Update from diffutils-2.8.2.
48024         * m4/fnmatch.m4: Likewise.
48025         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
48026         to AC_HEADER_STDBOOL
48027
48028 2002-06-22  Jim Meyering  <meyering@lucent.com>
48029
48030         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
48031         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
48032
48033 2002-06-22  Jim Meyering  <meyering@lucent.com>
48034
48035         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
48036
48037         * lib/exitfail.c, exitfail.h: Likewise.
48038         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
48039
48040         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
48041         of fnmatch.h.
48042         (EXTRA_DIST): Add fnmatch_loop.c.
48043         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
48044
48045         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
48046         * lib/fnmatch.c: Update from diffutils-2.8.2.
48047         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
48048         * lib/fnmatch.h: Remove file.
48049
48050 2002-06-21  Jim Meyering  <meyering@lucent.com>
48051
48052         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
48053         * m4/mbrtowc.m4: Likewise.
48054
48055         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
48056         * m4/mbswidth.m4: Reflect name change:
48057         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
48058         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
48059
48060         * m4/lib-link.m4: Update from gettext-0.11.2.
48061         * m4/gettext.m4: Likewise.
48062
48063         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
48064         From Alfred M. Szmidt.
48065
48066 2002-06-18  Paul Eggert  <eggert@twinsun.com>
48067
48068         * lib/file-type.h: Report an error if neither S_ISREG nor
48069         S_IFREG is defined, instead of using a test specific to glibc
48070         2.2.  This should be safe, since POSIX requires S_ISREG and
48071         Unix Version 7 had S_IFREG.  We don't need to check for
48072         <sys/types.h> since we don't use any symbols that it defines.
48073
48074 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
48075
48076         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
48077         $@-t, so that each temporary file name is unique and valid in the first
48078         8 characters, for operation under DOS.
48079
48080 2002-06-15  Paul Eggert  <eggert@twinsun.com>
48081
48082         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
48083
48084 2002-06-15  Jim Meyering  <meyering@lucent.com>
48085
48086         Work even with DJGPP 2.03, which lacks support for symlinks.
48087         From Richard Dawe.
48088         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
48089         is defined.
48090         * lib/lchown.c (S_ISLNK): Likewise.
48091
48092 2002-06-15  Jim Meyering  <meyering@lucent.com>
48093
48094         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
48095         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
48096         have been included before this file.
48097
48098 2002-06-14  Jim Meyering  <meyering@lucent.com>
48099
48100         * lib/file-type.h: Use the version from diffutils-2.8.2.
48101         * lib/file-type.c: Likewise.
48102
48103 2002-06-07  Jim Meyering  <meyering@lucent.com>
48104
48105         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
48106         They're needed at least for NetBSD 1.5.2.
48107         ($statxfs_includes): Include those same headers.
48108         ($statxfs_includes): Include sys/vfs.h if available.
48109         ($statxfs_includes): Likewise for sys/statvfs.h.
48110         Check for the following members in both structs statfs and statvfs:
48111         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
48112
48113 2002-06-01  Jim Meyering  <meyering@lucent.com>
48114
48115         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
48116         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
48117
48118 2002-05-28  Jim Meyering  <meyering@lucent.com>
48119
48120         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
48121         Reported by Volker Borchert.
48122
48123 2002-05-27  Jim Meyering  <meyering@lucent.com>
48124
48125         Fix a problem seen only on nonconforming systems whereby ls.c's
48126         use of localtime, and then of gettimeofday would cause trouble:
48127         the localtime call used to initialize rpl_gettimeofday's save
48128         mechanism would clobber ls's current local time information so
48129         that in any long listing the first file would always be listed
48130         with date 1970-01-01.  Analysis by Volker Borchert.
48131
48132         * lib/gettimeofday.c (localtime): Undefine.
48133         (rpl_localtime): New function.
48134
48135 2002-05-27  Jim Meyering  <meyering@lucent.com>
48136
48137         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
48138         localtime.
48139
48140         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
48141         use the replacement function; it wouldn't resolve at link time.
48142         Reported by Volker Borchert.
48143
48144 2002-05-22  Jim Meyering  <meyering@lucent.com>
48145
48146         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
48147         file-type.h.
48148         * lib/file-type.h: New file.
48149         * lib/file-type.c (file_type): New file/function.  Extracted from
48150         diffutils.
48151
48152 2002-04-30  Jim Meyering  <meyering@lucent.com>
48153
48154         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
48155
48156 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48157
48158         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
48159
48160 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48161
48162         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
48163         Do not check for alloca.h (no longer used) or stdbool.h (was never
48164         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
48165
48166 2002-04-29  Paul Eggert  <eggert@twinsun.com>
48167
48168         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
48169
48170 2002-04-29  Jim Meyering  <meyering@lucent.com>
48171
48172         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
48173         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
48174         Use AC_FUNC_STRNLEN here instead.
48175
48176         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
48177         With autoconf-2.53a, it's part of AC_PROG_CC.
48178
48179 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48180
48181         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
48182         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
48183
48184 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48185
48186         * lib/sig2str.h, lib/sig2str.c: New files.
48187         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
48188
48189 2002-04-28  Paul Eggert  <eggert@twinsun.com>
48190
48191         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
48192         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
48193         of 127, since 64 is the largest conceivable number for ancient
48194         nonstandard hosts.
48195         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
48196
48197 2002-04-28  Jim Meyering  <meyering@lucent.com>
48198
48199         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
48200
48201 2002-04-24  Jim Meyering  <meyering@lucent.com>
48202
48203         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
48204         (jm_PREREQ): Use it.
48205
48206         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
48207         mach/mach.h fcntl.h.
48208         Check for this function: setlocale.
48209
48210 2002-04-24  Jim Meyering  <meyering@lucent.com>
48211
48212         * lib/gettext.h: New file, from Gettext.
48213         * lib/Makefile.am (INCLUDES): Remove -I../intl.
48214         (libfetish_a_SOURCES): Add gettext.h.
48215
48216 2002-04-16  Jim Meyering  <meyering@lucent.com>
48217
48218         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
48219         ut_pid, ut_id, ut_exit.
48220
48221 2002-04-16  Jim Meyering  <meyering@lucent.com>
48222
48223         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
48224         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
48225         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
48226
48227 2002-04-12  Jim Meyering  <meyering@lucent.com>
48228
48229         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
48230         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
48231         existence of the getmntinfo function.  Needed for Darwin 5.3.
48232
48233         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
48234         This is necessary at least on Darwin 5.3.
48235
48236         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
48237         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
48238         strnlen.o in the library, and that makes some versions of ranlib
48239         object.
48240
48241 2002-04-12  Jim Meyering  <meyering@lucent.com>
48242
48243         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
48244
48245 2002-04-09  Jim Meyering  <meyering@lucent.com>
48246
48247         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
48248         to be more precise.  Rather than saying we're checking whether the
48249         function `works', say what we're testing.
48250         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
48251         Reported by Bruno Haible.
48252
48253 2002-03-10  Jim Meyering  <meyering@lucent.com>
48254
48255         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
48256         Suggestion from Santiago Vila.
48257
48258 2002-03-08  Jim Meyering  <meyering@lucent.com>
48259
48260         * lib/rename.c: Mention that this wrapper is needed also on
48261         mips-dec-ultrix4.4 systems.
48262
48263 2002-03-02  Jim Meyering  <meyering@lucent.com>
48264
48265         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
48266         not HAVE_CLOCK_SETTIME.
48267
48268 2002-02-27  Paul Eggert  <eggert@twinsun.com>
48269
48270         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
48271         Check for clock_settime.
48272
48273 2002-02-27  Paul Eggert  <eggert@twinsun.com>
48274
48275         * lib/nanosleep.h: Rename to....
48276         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
48277
48278         * lib/gettime.c: New file.
48279         * lib/settime.c: New file.
48280         * lib/stime.c: Remove.
48281
48282         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
48283         timespec.h.  Remove nanosleep.h.
48284
48285 2002-02-25  Paul Eggert  <eggert@twinsun.com>
48286
48287         * m4/acl.m4: New file.
48288         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
48289         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
48290
48291 2002-02-25  Paul Eggert  <eggert@twinsun.com>
48292
48293         * lib/acl.c, lib/acl.h: New files.
48294         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
48295
48296 2002-02-24  Jim Meyering  <meyering@lucent.com>
48297
48298         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
48299         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
48300         cause trouble.  Reported by Nelson Beebe.
48301
48302 2002-02-23  Paul Eggert  <eggert@twinsun.com>
48303
48304         * lib/path-concat.c (xpath_concat): Reorder code to pacify
48305         compilers that don't know that xalloc_die never returns.
48306
48307 2002-02-20  Jim Meyering  <meyering@lucent.com>
48308
48309         * lib/getdate.c: Regenerate using bison-1.33.
48310
48311 2002-02-17  Jim Meyering  <meyering@lucent.com>
48312
48313         * config/config.guess (main): Don't use `head -1'; it's no longer
48314         portable. Use `sed 1q' instead.
48315
48316 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
48317
48318         * m4/codeset.m4: Upgrade to gettext-0.11.
48319         * m4/gettext.m4: Upgrade to gettext-0.11.
48320         * m4/glibc21.m4: Upgrade to gettext-0.11.
48321         * m4/iconv.m4: Upgrade to gettext-0.11.
48322         * m4/isc-posix.m4: Upgrade to gettext-0.11.
48323         * m4/lcmessage.m4: Upgrade to gettext-0.11.
48324         * m4/lib-ld.m4: New file, from gettext-0.11.
48325         * m4/lib-link.m4: New file, from gettext-0.11.
48326         * m4/lib-prefix.m4: New file, from gettext-0.11.
48327         * m4/progtest.m4: Upgrade to gettext-0.11.
48328
48329 2002-02-15  Paul Eggert  <eggert@twinsun.com>
48330
48331         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
48332         (jm_PREREQ): Use it.
48333
48334 2002-02-15  Paul Eggert  <eggert@twinsun.com>
48335
48336         * lib/posixver.c, lib/posixver.h: New files.
48337         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
48338
48339 2002-02-02  Paul Eggert  <eggert@twinsun.com>
48340             Bruno Haible  <bruno@clisp.org>
48341
48342         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
48343         (fwrite_success_callback): New declaration.
48344         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
48345         print_unicode_char. Call failure callback instead of error.
48346         (fwrite_success_callback): New function.
48347         (exit_failure_callback): New function.
48348         (fallback_failure_callback): New function.
48349         (print_unicode_char): Call unicode_to_mb.
48350
48351 2002-01-26  Jim Meyering  <meyering@lucent.com>
48352
48353         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
48354         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
48355
48356 2002-01-26  Jim Meyering  <meyering@lucent.com>
48357
48358         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
48359
48360 2002-01-22  Paul Eggert  <eggert@twinsun.com>
48361
48362         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
48363
48364 2002-01-22  Jim Meyering  <meyering@lucent.com>
48365
48366         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
48367         Otherwise, some versions of automake would omit the rule that makes
48368         Makefile from Makefile.in.
48369
48370 2002-01-21  Paul Eggert  <eggert@twinsun.com>
48371
48372         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
48373         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
48374         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
48375         (memcoll): Set errno to zero if there is no error.
48376
48377         * lib/quotearg.c (quotearg_buffer_restyled):
48378         Fix bug with quoting buffers containing NUL when backslashing escapes.
48379         This bug was exposed by the other changes in this patch.
48380         (quotearg_n_options): New arg ARGSIZE.
48381         All callers changed.
48382         (quoting_options_from_style): New function.
48383         (quotearg_n_style): Use it.
48384         (quotearg_n_style_mem): New function.
48385
48386         * lib/quotearg.h (quotearg_n_style_mem): New function.
48387
48388 2002-01-19  Jim Meyering  <meyering@lucent.com>
48389
48390         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
48391         Remove useless quotes: DF_PROG="df".
48392         * m4/strnlen.m4: New file.
48393
48394 2002-01-16  Paul Eggert  <eggert@twinsun.com>
48395
48396         * lib/backupfile.c (ISDIGIT): Comment fix.
48397         * lib/getdate.y (ISDIGIT): Likewise.
48398         * lib/posixtm.c (ISDIGIT, year): Likewise.
48399         * lib/strverscmp.c (ISDIGIT): Likewise.
48400         * lib/userspec.c (ISDIGIT): Likewise.
48401
48402 2002-01-16  Jim Meyering  <meyering@lucent.com>
48403
48404         * lib/getdate.y: Add three semicolons, each just before a closing
48405         brace. Bison (as of version 1.31) no longer papers over that mistake.
48406
48407 2002-01-05  Jim Meyering  <meyering@lucent.com>
48408
48409         * lib/version-etc.c (version_etc_copyright): Update copyright year.
48410
48411 2001-12-19  Paul Eggert  <eggert@twinsun.com>
48412
48413         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
48414         not silently exit merely because the output buffer happens to
48415         have nothing pending.
48416
48417 2001-12-18  Paul Eggert  <eggert@twinsun.com>
48418
48419         See the big note in ../ChangeLog.
48420         * lib/human.c (suffixes): Prefer K to k for 1024.
48421         (generate_suffix_backwards): New function.
48422         (human_readable_inexact): Use it.
48423         * lib/xstrtol.c (__xstrtol): If there is no number but there
48424         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
48425         Accept 'K' as well as 'k'.
48426
48427 2001-12-15  Jim Meyering  <meyering@lucent.com>
48428
48429         * lib/regex.h (__restrict_arr): Update from libc.
48430
48431         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
48432         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
48433         (STREQ): Define.
48434
48435 2001-12-14  Jim Meyering  <meyering@lucent.com>
48436
48437         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
48438         Suggestion from Bruno Haible.
48439
48440 2001-12-10  Jim Meyering  <meyering@lucent.com>
48441
48442         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
48443         xrealloc, Instead, include "xalloc.h".
48444         (initbuffer): Don't cast xmalloc return value to char*.
48445         (readline): Reword comment.
48446         Don't cast xrealloc return value to char*
48447         Return NULL, not 0.
48448
48449 2001-12-09  Jim Meyering  <meyering@lucent.com>
48450
48451         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
48452         about `signed and unsigned type in conditional expression'.
48453         * lib/posixtm.c (posix_time_parse): Likewise.
48454
48455         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
48456
48457         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
48458         to avoid a pedantic warning.
48459
48460         * lib/getstr.c: Don't include assert.h.
48461         (getstr): Remove warning-evoking assertions.
48462         Return -1 if offset parameter is out of bounds.
48463         Change the type of a local from int to size_t.
48464
48465         * lib/strftime.c (my_strftime_localtime_r): Include this function
48466         definition in the `#if ! HAVE_TM_GMTOFF' block.
48467
48468         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
48469         Include xalloc.h instead.
48470
48471 2001-12-02  Jim Meyering  <meyering@lucent.com>
48472
48473         * lib/tempname.c: Don't declare getenv, thus reverting the change of
48474         2001-11-18.  It's no longer necessary, now that stdlib.h is always
48475         included.
48476
48477         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
48478         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
48479
48480 2001-11-30  Akim Demaille  <akim@epita.fr>
48481
48482         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
48483         before being defined.
48484
48485 2001-11-27  Paul Eggert  <eggert@twinsun.com>
48486
48487         * lib/quotearg.h (quotearg_n, quotearg_n_style):
48488         First arg is int, not unsigned.
48489         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
48490         (SIZE_MAX, UINT_MAX): New macros.
48491         (quotearg_n_options): Abort if N is negative.
48492         Avoid overflow check on hosts where size_t is 64 bits and int
48493         is 32 bits, as overflow is impossible there.
48494         Fix off-by-one typo that caused unnecessary reallocation.
48495
48496 2001-11-27  Jim Meyering  <meyering@lucent.com>
48497
48498         * lib/tempname.c: Merge with version from libc.
48499         * lib/regex.c: Likewise.
48500
48501         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
48502         systems for which STDC_HEADERS is 0, it was not included, resulting in
48503         a warning about an integer-to-pointer conversion problem with getenv.
48504         Reported by Volker Borchert.
48505
48506 2001-11-26  Jim Meyering  <meyering@lucent.com>
48507
48508         * lib/gtod.h: Remove file.
48509         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
48510         * lib/gettimeofday.c: Don't include gtod.h.
48511         (GTOD_init): Remove function.
48512         (rpl_gettimeofday): Do its job here instead, rather than aborting.
48513         Suggestion from Volker Borchert.
48514
48515 2001-11-23  Jim Meyering  <meyering@lucent.com>
48516
48517         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
48518         it.
48519         * lib/hash.c (struct hash_table): Define it here instead.
48520
48521 2001-11-22  Jim Meyering  <meyering@lucent.com>
48522
48523         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
48524
48525 2001-11-20  Jim Meyering  <meyering@lucent.com>
48526
48527         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
48528         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
48529
48530 2001-11-19  Jim Meyering  <meyering@lucent.com>
48531
48532         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
48533         directory.  Use "conftestXXXXXX" as the template.
48534         Suggestion from Paul Eggert.
48535
48536         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
48537         immediately, so the test doesn't mistakenly hit the max-open-files
48538         limit.
48539
48540 2001-11-18  Paul Eggert  <eggert@twinsun.com>
48541
48542         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
48543         (TEMPORARIES): New macro.
48544         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
48545         removes an artificial limitation (e.g. HP-UX 10.20, where
48546         TMP_MAX is 17576).
48547
48548 2001-11-18  Jim Meyering  <meyering@lucent.com>
48549
48550         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
48551
48552 2001-11-18  Jim Meyering  <meyering@lucent.com>
48553
48554         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
48555         on SunOS 4.
48556
48557         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
48558         files will be created before anything else.
48559
48560 2001-11-17  Paul Eggert  <eggert@twinsun.com>
48561
48562         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
48563         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
48564
48565 2001-11-17  Jim Meyering  <meyering@lucent.com>
48566
48567         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
48568         Prompted by a report from Bob Proulx.
48569
48570         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
48571         Instead, require UTILS_FUNC_MKSTEMP.
48572
48573 2001-11-17  Jim Meyering  <meyering@lucent.com>
48574
48575         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
48576         Now, that's done as part of AC_FUNC_STRTOD.
48577
48578 2001-11-17  Jim Meyering  <meyering@lucent.com>
48579
48580         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
48581         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
48582         rather than group writable.  Patch by Juan F. Codagnone.
48583
48584         * lib/readtokens.c: Remove explicit declarations of xmalloc and
48585         xrealloc, Instead, include "xalloc.h".
48586
48587         * lib/mountlist.c: Include unlocked-io.h after all system headers.
48588         Remove explicit declarations of xmalloc, xrealloc,
48589         and xstrdup.  Instead, include "xalloc.h".
48590
48591         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
48592         unlocked-io.h.
48593         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
48594         Likewise.
48595         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
48596
48597         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
48598         Reported by Padraig Brady.
48599
48600         * lib/mkstemp.c: #undef mkstemp.
48601         Include config.h.
48602         (rpl_mkstemp): Rename from mkstemp.
48603         Protoize.
48604
48605 2001-11-16  Jim Meyering  <meyering@lucent.com>
48606
48607         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
48608         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
48609         determine the amount of total physical memory, use pstat_getstatic.
48610         HPUX-11 doesn't define _SC_PHYS_PAGES.
48611         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
48612         If sysconf couldn't be used to determine the amount of available
48613         physical memory, use both pstat_getstatic and pstat_getdynamic.
48614         Based on a patch from Bob Proulx.
48615
48616 2001-11-10  Jim Meyering  <meyering@lucent.com>
48617
48618         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
48619         (jm_PREREQ): Use it.
48620
48621 2001-11-09  Jim Meyering  <meyering@lucent.com>
48622
48623         * m4/jm-macros.m4: Require autoconf-2.52f.
48624         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
48625         Use these AC_-prefixed names, not the AM_-prefixed ones.
48626
48627         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
48628
48629 2001-11-05  Jim Meyering  <meyering@lucent.com>
48630
48631         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
48632
48633 2001-11-04  Jim Meyering  <meyering@lucent.com>
48634
48635         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
48636         $DEFS.
48637
48638 2001-11-03  Jim Meyering  <meyering@lucent.com>
48639
48640         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
48641         of AC_DEFUN.
48642
48643         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
48644         know the name of the variable in the macro definition.
48645
48646 2001-11-03  Jim Meyering  <meyering@lucent.com>
48647
48648         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
48649         in argmatch_to_argument call.
48650
48651         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
48652         argument.
48653
48654         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
48655         e.g., a fault due to an attempt to free a NULL pointer.
48656
48657 2001-11-01  Jim Meyering  <meyering@lucent.com>
48658
48659         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
48660         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
48661
48662 2001-11-01  Jim Meyering  <meyering@lucent.com>
48663
48664         * lib/dirfd.c, lib/dirfd.h: New files.
48665         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
48666
48667         * lib/hash.c (hash_print) [TESTING]: Clean up.
48668
48669 2001-10-22  Paul Eggert  <eggert@twinsun.com>
48670
48671         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
48672         to avoid a warning if -Wall.
48673
48674 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
48675
48676         * README: New file
48677         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
48678         (per RMS's instructions, this is now the canonical source)
48679         * lgpl/, gpl/: New directories.
48680
48681 2001-10-21  Paul Eggert  <eggert@twinsun.com>
48682
48683         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
48684
48685 2001-10-21  Jim Meyering  <meyering@lucent.com>
48686
48687         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
48688         this code would end up calling gettext even in packages built
48689         with --disable-nls.
48690         * lib/getopt.c (_): Likewise.
48691         * lib/regex.c (_): Likewise.
48692
48693 2001-10-20  Paul Eggert  <eggert@twinsun.com>
48694
48695         * m4/error.m4 (jm_PREREQ_ERROR):
48696         Do not invoke AC_CHECK_FUNCS with strerror_r, as
48697         AC_FUNC_STRERROR_R does that.
48698         Check for strerror declaration.
48699
48700         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
48701         are supposed to have them these days.
48702         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
48703         Merge changes from latest Autoconf CVS.
48704         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
48705         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
48706         POSIX decided to standardize on the int flavor of strerror_r.
48707
48708 2001-10-20  Paul Eggert  <eggert@twinsun.com>
48709
48710         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
48711         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
48712         Use strerror_r that is only a macro, even if it is not a function.
48713         (strerror): Check for HAVE_DECL_STRERROR before declaring.
48714         (private_strerror): Use prototypes, not old-style function definition.
48715         (print_errno_message): New function.
48716         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
48717         char*-flavored one.
48718         (error_tail, error, error_at_line): Use it.
48719
48720 2001-10-11  Jim Meyering  <meyering@lucent.com>
48721
48722         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
48723         and quote_n (1, ... to avoid clobbering a buffer.
48724
48725 2001-10-05  Jim Meyering  <meyering@lucent.com>
48726
48727         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
48728         hash-pjw.h.
48729         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
48730         * lib/hash-pjw.h: New file.
48731
48732 2001-09-30  Jim Meyering  <meyering@lucent.com>
48733
48734         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
48735         `struct fsstat' has the `f_fstypename' member.
48736         Use that to define FS_TYPE, which is now used to make
48737         the getfsstat link test tighter.
48738
48739 2001-09-30  Jim Meyering  <meyering@lucent.com>
48740
48741         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
48742         Include <sys/ucred.h>, for Apple Darwin.
48743         Include sys/mount.h and sys/fs_types.h only if available.
48744         (FS_TYPE): Define.
48745         (read_filesystem_list): Use FS_TYPE.
48746
48747 2001-09-29  Paul Eggert  <eggert@twinsun.com>
48748
48749         * lib/exclude.c (excluded_filename): 0 -> false, since it's
48750         a boolean context.
48751
48752 2001-09-29  Jim Meyering  <meyering@lucent.com>
48753
48754         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
48755         [one-argument getmntent function]): Include stdio.h before mntent.h.
48756         SunOS 4.1.x needs it for the declaration of `FILE'.
48757         Patch by Volker Borchert.
48758
48759         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
48760         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
48761         sys/fs_types.h, and make the link-test for getfsstat guard #include
48762         directives with appropriate #if HAVE_*_H tests so that we can
48763         detect getfsstat on Apple Darwin1.3.7 systems.
48764         Reported by Nelson Beebe.
48765         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
48766
48767 2001-09-28  Paul Eggert  <eggert@twinsun.com>
48768
48769         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
48770         #defines strtoimax.  Also treat the other strto* functions
48771         like strtoimax.
48772
48773         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
48774         Check for strtoul and strtoumax,
48775         as those declarations are made even in the signed case.
48776         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
48777         Likewise, for strtol and strtoimax.
48778
48779 2001-09-28  Paul Eggert  <eggert@twinsun.com>
48780
48781         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
48782         #defines strtoimax.  Also treat the other strto* functions
48783         like strtoimax.
48784
48785         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
48786         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
48787         (strtoimax, strtoumax): Do not declare if already defined as a macro.
48788
48789 2001-09-26  Jim Meyering  <meyering@lucent.com>
48790
48791         Most macros in unlocked-io.h had the wrong number of arguments.
48792         * lib/gen-uio: New script.
48793         (USE_UNLOCKED_IO): Define to 1 if not already defined.
48794         * lib/unlocked-io.hin: Remove file.
48795         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
48796         rather than trying to embed it here.
48797         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
48798         Reported by Padraig Brady.
48799
48800 2001-09-25  Volker Borchert  <bt@teknon.de>
48801
48802         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
48803         `result'.
48804
48805 2001-09-24  Jim Meyering  <meyering@lucent.com>
48806
48807         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
48808
48809 2001-09-23  Jim Meyering  <meyering@lucent.com>
48810
48811         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
48812         instead of the mere test for existence of mntent.h.  The latter
48813         would get a false-positive on AIX 3.4 systems.
48814         In the outer getmntent if-block, don't die if neither of the getmntent
48815         tests succeeds.  Instead, just fall through and continue with the
48816         remaining tests.
48817
48818 2001-09-23  Jim Meyering  <meyering@lucent.com>
48819
48820         * lib/mountlist.c: Remove useless parentheses in #if directives.
48821         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
48822         the deprecated MOUNTED symbol is no longer defined in mntent.h.
48823
48824 2001-09-22  Jim Meyering  <meyering@lucent.com>
48825
48826         * m4/gettext.m4: New file.  From gettext.
48827         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
48828         * m4/progtest.m4: Likewise
48829         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
48830         * m4/glibc21.m4: Likewise.
48831
48832         * m4/libintl.m4: Remove.  No longer used.
48833
48834 2001-09-22  Jim Meyering  <meyering@lucent.com>
48835
48836         * lib/localcharset.c: Update from latest gettext.
48837         * lib/config.charset: Likewise.
48838
48839 2001-09-20  Jim Meyering  <meyering@lucent.com>
48840
48841         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
48842         strtoimax.
48843         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
48844         strtoumax.
48845
48846 2001-09-20  Jim Meyering  <meyering@lucent.com>
48847
48848         * lib/xstrtol.c (strtoimax): Guard declaration with
48849         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
48850         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
48851         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
48852         (strtoumax): Likewise, for completeness (it wasn't necessary).
48853
48854 2001-09-17  Paul Eggert  <eggert@twinsun.com>
48855
48856         * lib/strtoimax.c (HAVE_LONG_LONG):
48857         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
48858         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
48859         to work around bug in IBM C compiler.
48860
48861 2001-09-17  Jim Meyering  <meyering@lucent.com>
48862
48863         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
48864         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
48865         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
48866         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
48867         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
48868         whenever the right hand side need not be expanded by the shell.
48869
48870 2001-09-16  Paul Eggert  <eggert@twinsun.com>
48871
48872         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
48873         library.  It's not correct, as some older glibcs are buggy.
48874         fnmatch wasn't fixed until glibc 2.2.
48875
48876         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
48877         special shell magic here.
48878
48879 2001-09-16  Jim Meyering  <meyering@lucent.com>
48880
48881         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
48882         * m4/jm-macros.m4: Require it.
48883
48884 2001-09-16  Jim Meyering  <meyering@lucent.com>
48885
48886         * lib/mkdir.c: New file.
48887
48888 2001-09-15  Jim Meyering  <meyering@lucent.com>
48889
48890         * m4/jm-macros.m4: Check for help2man.
48891
48892 2001-09-11  Jim Meyering  <meyering@lucent.com>
48893
48894         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
48895         The body, by Paul Eggert, was moved here from configure.in.
48896         * m4/jm-macros.m4: Require UTILS_HOST_OS.
48897
48898 2001-09-04  Paul Eggert  <eggert@twinsun.com>
48899
48900         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
48901         (jm_PREREQ): Use it.
48902
48903 2001-09-04  Paul Eggert  <eggert@twinsun.com>
48904
48905         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
48906         Use ssize_t, not int, to store result of readlink.
48907         Check for ssize_t overflow as well as size_t overflow,
48908         as POSIX says the result of readlink is implementation-defined
48909         when ssize_t overflows.
48910         Remove unnecessary cast to char*.
48911         Use free+malloc instead of realloc, as the storage doesn't need
48912         to be preserved and it's clearer and can be more efficient that way.
48913         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
48914         * lib/xreadlink.h (xreadlink): Update prototype.
48915
48916 2001-09-04  Paul Eggert  <eggert@twinsun.com>
48917
48918         * lib/xgetcwd.c: Revert some of the previous change; intead,
48919         fix the HAVE_GETCWD_NULL code to behave more like the
48920         !HAVE_GETCWD_NULL code used to.
48921
48922         Include "xalloc.h".
48923         (xgetcwd): Do not return NULL when memory is exhausted; instead,
48924         invoke xalloc_die.
48925
48926 2001-09-03  Paul Eggert  <eggert@twinsun.com>
48927
48928         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
48929         sys/param.h, as pathmax.h includes them.
48930
48931 2001-09-03  Paul Eggert  <eggert@twinsun.com>
48932
48933         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
48934         (jm_PREREQ_XGETCWD): New macro.
48935
48936         * m4/getcwd.m4: New file.
48937
48938 2001-09-03  Paul Eggert  <eggert@twinsun.com>
48939
48940         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
48941         like the HAVE_GETCWD_NULL code.
48942         Include pathmax.h if not HAVE_GETCWD.
48943         Do not include xalloc.h.
48944         (INITIAL_BUFFER_SIZE): New symbol.
48945         Do not use xmalloc / xrealloc, since the caller is responsible for
48946         handling errors.  Preserve errno around `free' during failure.
48947         Do not overrun buffer when using getwd.
48948
48949 2001-09-03  Paul Eggert  <eggert@twinsun.com>
48950
48951         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
48952         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
48953         getcwd (NULL, 0).
48954
48955 2001-09-03  Paul Eggert  <eggert@twinsun.com>
48956
48957         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
48958         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
48959         spotted by Jim Meyering.
48960
48961 2001-09-03  Jim Meyering  <meyering@lucent.com>
48962
48963         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
48964         failure.
48965
48966 2001-09-02  Jim Meyering  <meyering@lucent.com>
48967
48968         * lib/error.c: Update from GNU libc.
48969
48970 2001-09-01  Jim Meyering  <meyering@lucent.com>
48971
48972         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
48973         Used by df.
48974
48975 2001-09-01  Jim Meyering  <meyering@lucent.com>
48976
48977         * lib/xreadlink.c: New file.
48978         * lib/xreadlink.h: New file.
48979         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
48980         xreadlink.h.
48981
48982         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
48983         doesn't conflict with sparc Solaris 7's definition in
48984         /usr/include/sys/int_types.h.
48985
48986         * lib/exclude.c: Use `""', not `<>' to #include non-system header
48987         files.
48988         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
48989         and strncasecmp as r-values.  Unixware didn't have declarations.
48990
48991 2001-08-31  Paul Eggert  <eggert@twinsun.com>
48992
48993         * lib/xstrtol.h: Add copyright notice.
48994         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
48995         LONGINT_INVALID_SUFFIX_CHAR.
48996
48997 2001-08-31  Paul Eggert  <eggert@twinsun.com>
48998
48999         * lib/xstrtol.c (strtoimax): New decl.
49000
49001 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49002
49003         * lib/xgetcwd.c: Don't include pathmax.h.
49004         Include stdlib.h and unistd.h if available.
49005         Include xalloc.h.
49006         (xmalloc, xstrdup, free): Remove decls.
49007         (xgetcwd): Don't assume sizes fit in unsigned.
49008         Check for overflow when computing sizes.
49009         Simplify reallocation code.
49010
49011 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49012
49013         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
49014         a directory's st_size can have an arbitrary value, so the old
49015         usage could waste an arbitrary amount of memory.  All uses
49016         changed.
49017         * lib/savedir.h: Update prototype.
49018
49019 2001-08-31  Paul Eggert  <eggert@twinsun.com>
49020
49021         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
49022
49023         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
49024         old strtoimax.c.
49025
49026         Also, make the following further changes to make this file's
49027         configuration more similar to that of strtol.c:
49028         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
49029         (strtoumax, uintmax_t, strtoull, strtol): Remove.
49030         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
49031         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
49032         changed to signed values.
49033
49034         And make the following changes as well:
49035         Fix copyright notice, as 1999 was missing.
49036         (verify): New macro.
49037         (strtoimax): Check sizes at compile-time, not run-time.
49038         Prefer strtol to strtoll if both work.
49039         (main): Remove; it was not that useful and was a pain to maintain.
49040
49041         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
49042
49043 2001-08-31  Jim Meyering  <meyering@lucent.com>
49044
49045         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
49046         Use an initial, malloc'd, buffer of length 128 rather than
49047         a statically allocated one of length 1024.
49048
49049 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49050
49051         Simplify code, partly by assuming autoconf 2.52 semantics.
49052
49053         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
49054
49055         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
49056         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
49057         All uses removed.
49058         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
49059         Move AC_REQUIRE to next-to-top level, to avoid confusion.
49060         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
49061         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
49062         jm_AC_HEADER_INTTYPES_H.
49063         * m4/jm-macros.m4 (jm_MACROS): Likewise.
49064
49065         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
49066
49067         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
49068         Quote first arg of AC_DEFUN.
49069         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
49070         since they are needed to parse the include file even if we need
49071         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
49072         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
49073         but with opposite signedness.
49074
49075 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49076
49077         Merge 'exclude' changes from tar 1.13.22.
49078         This fixes one or two unlikely storage allocation overflow bugs,
49079         but doesn't change user-visible behavior otherwise.
49080
49081 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49082
49083         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
49084         (jm_PREREQ_EXCLUDE): New macro.
49085
49086 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49087
49088         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
49089         tm to be declared.
49090
49091 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49092
49093         * lib/hash.c: Remove '2001' from copyright notice.
49094
49095 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49096
49097         * lib/full-write.h: New file.
49098         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
49099         * lib/full-write.c: Correct credits, as cccp.c no longer
49100         exists and anyway it was so heavily changed from the old cccp
49101         code as to be unrecognizable.  Include full-write.h.
49102         (full_write) Return size_t, with short writes meaning failure.
49103         All callers changed.  This fixes a bug with large buffers
49104         on 64-bit hosts.
49105         * lib/utime.c: Include full-write.h.
49106
49107 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49108
49109         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
49110         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
49111         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
49112         Include if available.
49113         (<xalloc.h>): Include
49114         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
49115         (verify): New macro.  Use it to verify that EXCLUDE macros do not
49116         collide with FNM macros.
49117         (struct patopts): New struct.
49118         (struct exclude): Use it, as exclude patterns now come with options.
49119         (new_exclude): Support above changes.
49120         (new_exclude, add_exclude_file):
49121         Initial size must now be a power of two to simplify overflow checking.
49122         (free_exclude, fnmatch_no_wildcards): New function.
49123         (excluded_filename): No longer requires options arg, as the options
49124         are determined by add_exclude.  Now returns bool, not int.
49125         (excluded_filename, add_exclude):
49126         Add support for the fancy new exclusion options.
49127         (add_exclude, add_exclude_file): Now takes int options arg.
49128         Check for arithmetic overflow when computing sizes.
49129         (add_exclude_file): xrealloc might modify errno, so don't
49130         realloc until after errno might be used.
49131
49132         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
49133         New macros.
49134         (free_exclude): New decl.
49135         (add_exclude, add_exclude_file): Now takes int options arg.
49136         (excluded_filename): No longer requires options arg, as the options
49137         are determined by add_exclude.  Now returns bool, not int.
49138
49139 2001-08-30  Paul Eggert  <eggert@twinsun.com>
49140
49141         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
49142
49143 2001-08-27  Jim Meyering  <meyering@lucent.com>
49144
49145         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
49146
49147         * lib/version-etc.c (N_): Remove definition.
49148         Revert most of last change.
49149         Instead, simply don't mark the `Copyright...' string for translation.
49150         Based on advice from Paul Eggert.
49151
49152         * lib/strtoxmax.c: Tweak comment.
49153
49154 2001-08-26  Jim Meyering  <meyering@lucent.com>
49155
49156         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
49157
49158         * m4/xstrtoimax.m4: New file.
49159         * m4/xstrtoumax.m4: Add comments explaining why we
49160         AC_REPLACE_FUNCS(strtol).
49161
49162 2001-08-26  Jim Meyering  <meyering@lucent.com>
49163
49164         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
49165         of copyright with `%s' so translators don't get an untranslated
49166         message in 2002.
49167         (COPYRIGHT_YEAR): Define.
49168         (version_etc): Use fprintf rather than fputs.
49169         Suggestion from Ulrich Drepper.
49170
49171         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
49172
49173         * lib/strtoll.c: New file, from GNU libc.
49174         * lib/xstrtoimax.c: New file.
49175
49176         * lib/xstrtol.h: Add xstrtoimax.
49177         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
49178         * lib/strtoimax.c: New file.  Likewise, but first define
49179         STRTOUXMAX_SIGNED.
49180
49181         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
49182         ...
49183         * lib/strtoxmax.c: ... then renamed to this.
49184
49185 2001-08-18  Paul Eggert  <eggert@twinsun.com>
49186
49187         * m4/inttypes.m4: Add AC_PREREQ(2.13).
49188         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
49189         (jm_AC_TYPE_INTMAX_T): New macro.
49190         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
49191
49192         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
49193
49194         * m4/longlong.m4: Renamed from ulonglong.m4.
49195         * m4/inttypes.m4: Renamed from inttypes_h.m4.
49196         * m4/uintmax_t.m4: Removed.
49197
49198 2001-08-13  Paul Eggert  <eggert@twinsun.com>
49199
49200         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
49201         Port to Solaris 8, where 'sed' requires a space after the 'r'
49202         command, and where sh dislikes "$/".  Clean up the spacing a bit.
49203         Redirect output to $tmp just once.
49204
49205 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
49206
49207         * lib/addext.c (<errno.h>): Include.
49208         (errno): Declare if not defined.
49209         (addext): Work correctly when pathconf returns -1 and leaves
49210         errno alone because there is no limit.  Also, work even if
49211         pathconf returns a value greater than SIZE_MAX.
49212
49213 2001-08-12  Jim Meyering  <meyering@lucent.com>
49214
49215         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
49216         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
49217         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
49218         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
49219         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
49220         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
49221         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
49222         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
49223         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
49224         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
49225         utime.m4, utimes.m4, xstrtoumax.m4:
49226         Quote the first argument in each use of AC_DEFUN.
49227
49228 2001-08-12  Jim Meyering  <meyering@lucent.com>
49229
49230         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
49231         Simply `return getcwd (NULL, 0);'.
49232         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
49233         Use 1300 as initial value for length, not PATH_MAX.
49234
49235         * lib/pathmax.h: Clean up cpp syntax.
49236
49237 2001-08-12  Jim Meyering  <meyering@lucent.com>
49238
49239         * lib/gettimeofday.c: New file.
49240         * lib/gtod.h: New file.
49241         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
49242
49243 2001-08-05  Jim Meyering  <meyering@lucent.com>
49244
49245         * m4/jm-macros.m4: Require autoconf-2.52.
49246
49247 2001-08-04  Jim Meyering  <meyering@lucent.com>
49248
49249         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
49250         stmt, to get in sync with glibc.
49251
49252 2001-08-03  Paul Eggert  <eggert@twinsun.com>
49253
49254         The following changes are from gettext 0.10.39 as maintained by
49255         Bruno Haible.
49256
49257         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
49258         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
49259         with inverted sense.  All uses changed.
49260
49261         * lib/mbswidth.c: Don't include <limits.h>.
49262         Include <stdlib.h> and <string.h> unconditionally.
49263         (iswcntrl, mbsinit, ISCNTRL): New macros.
49264         (mbsnwidth): Use K&R style function declarations.
49265         Don't bother checking for MB_LEN_MAX == 1, since the compiler
49266         can optimize it when MB_CUR_MAX == 1.
49267         The width of control characters is zero, not 1.
49268
49269 2001-08-03  Paul Eggert  <eggert@twinsun.com>
49270
49271         The following changes are from gettext 0.10.39 as maintained by
49272         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
49273
49274         * m4/codeset.m4: Upgrade to serial AM1.
49275         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
49276         all uses changed.  Quote first arg of AC_DEFUN.
49277         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
49278
49279         * m4/iconv.m4: Upgrade to serial AM2.
49280         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
49281         Add --with-libconv-prefix.
49282         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
49283         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
49284         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
49285         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
49286         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
49287
49288         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
49289         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
49290         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
49291         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
49292         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
49293         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
49294         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
49295         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
49296         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
49297
49298         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
49299         string.h any more.
49300
49301         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
49302         not the default value.
49303
49304         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
49305         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
49306         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
49307         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
49308         Also check for iswcntrl, used for wcwidth fallback.
49309         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
49310         to Autoconf 2.13.
49311
49312 2001-08-03  Jim Meyering  <meyering@lucent.com>
49313
49314         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
49315         as it was in the original.  Reported by Paul Eggert.
49316
49317 2001-07-16  Jim Meyering  <meyering@lucent.com>
49318
49319         * m4/gettimeofday.m4: New file.
49320         Prompted by a report from Bernhard Baehr.
49321
49322 2001-07-15  Jim Meyering  <meyering@lucent.com>
49323
49324         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
49325         stuff. Now it's in ../Makefile.cfg.
49326
49327 2001-07-15  Jim Meyering  <meyering@lucent.com>
49328
49329         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
49330         (BUILT_SOURCES): Add unlocked-io.h.
49331         (io_functions): Define.
49332         (unlocked-io.h): New rule.
49333         (DISTCLEANFILES): Add unlocked-io.h.
49334         (all-local): Depend on unlocked-io.h, to ensure it is created.
49335
49336         * lib/unlocked-io.hin: New file
49337
49338         * lib/regex.c: Update from glibc.
49339
49340 2001-07-05  Jim Meyering  <meyering@lucent.com>
49341
49342         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
49343         recommendation.
49344         (libfetish_a_SOURCES): Put all .h files here instead.
49345         Remove a thus-exposed (better checks in automake) duplicate and
49346         two unnecessary .h files.
49347
49348 2001-07-04  Jim Meyering  <meyering@lucent.com>
49349
49350         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
49351         that generates jm-glibc-io.m4 so that it doesn't trigger any make
49352         distcheck failure.
49353
49354 2001-07-02  Jim Meyering  <meyering@lucent.com>
49355
49356         The following changes were prompted by suggestions from Bruno Haible.
49357
49358         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
49359         is now generated.
49360         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
49361         definition of EXTRA_DIST.
49362         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
49363         ensure that the generated file is created/updated whenever the list
49364         of $(unlocked_functions) is changed.
49365         (jm-glibc-io.m4): New rule.
49366         (unlocked-io.h): New rule -- currently unused.
49367
49368 2001-06-24  Jim Meyering  <meyering@lucent.com>
49369
49370         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
49371         unmatched right bracket, rather than kludging it with an extra,
49372         falsely-matching quote in a comment.  Patch by Akim Demaille.
49373
49374 2001-06-11  Jim Meyering  <meyering@lucent.com>
49375
49376         * lib/regex.c: Update from GNU libc.
49377
49378 2001-05-27  Jim Meyering  <meyering@lucent.com>
49379
49380         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
49381         Check for ut_type in struct utmp.
49382
49383 2001-05-27  Jim Meyering  <meyering@lucent.com>
49384
49385         * lib/readutmp.h (UT_TYPE): Define.
49386
49387 2001-05-24  Jim Meyering  <meyering@lucent.com>
49388
49389         * lib/argmatch.c: Include "quote.h".
49390         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
49391         quote function.  Reported by Göran Uddeborg.
49392
49393 2001-05-22  Jim Meyering  <meyering@lucent.com>
49394
49395         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
49396         now that we use the package-supplied version unconditionally.
49397         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
49398
49399 2001-05-21  Jim Meyering  <meyering@lucent.com>
49400
49401         * m4/regex.m4: Change a couple backticks to single quotes to avoid
49402         shell syntax errors.
49403
49404 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
49405
49406         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
49407
49408 2001-05-20  Paul Eggert  <eggert@twinsun.com>
49409
49410         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
49411         Don't bother to check library strftime, since
49412         we'll be using our own my_strftime function anyway.
49413         Define my_strftime instead of strftime.
49414
49415 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
49416
49417         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
49418         which is not yet declared.
49419
49420 2001-05-15  Jim Meyering  <meyering@lucent.com>
49421
49422         * m4/regex.m4: Use proper quoting so brackets appear in the test
49423         program.
49424         Reported by, and with help from, Bruno Haible.
49425
49426 2001-05-13  Jim Meyering  <meyering@lucent.com>
49427
49428         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
49429         undefined.
49430
49431 2001-05-11  Paul Eggert  <eggert@twinsun.com>
49432
49433         dirname code cleanup.  base_name now behaves more compatibly
49434         with POSIX basename when given file names that have trailing
49435         slashes, and similarly for dir_name.  Add new primitives
49436         base_len and dir_len.  Put the directory-name-related decls
49437         into dirname.h.
49438
49439         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
49440         * lib/backupfile.c (base_name): Likewise.
49441         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
49442         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
49443         * lib/makepath.c (strip_trailing_slashes): Likewise.
49444         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
49445         ISSLASH): Likewise.
49446         * lib/rename.c (strip_trailing_slashes): Likewise.
49447         * lib/same.c (base_name): Likewise.
49448         * lib/stripslash.c (ISSLASH): Likewise.
49449
49450         * lib/addext.c: Include <dirname.h> after size_t is defined.
49451         * lib/backupfile.c: Likewise.
49452
49453         * lib/addext.c (addext): Use base_len to trim redundant
49454         trailing slashes instead of doing it ourselves.
49455         But do not trim the last slash if it is not redundant.
49456
49457         * lib/backupfile.c (find_backup_file_name,
49458         max_backup_version): Use base_len instead of rolling it ourselves.
49459         Handle the case of "" and (on DOS) "C:" correctly.
49460
49461         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
49462         needed. Include <string.h>, <dirname.h>.
49463         (base_name): Allow file names ending in slashes, other than names
49464         that are all slashes.  In this case, return the basename followed
49465         by the slashes.  This is more general, and can be used in places
49466         where the original base_name purposely had an assertion failure.
49467         (base_len): New function.
49468
49469         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
49470         Do not include <assert.h>; no longer needed.
49471         Include xalloc.h.
49472         (memrchr): Remove decl.
49473         (dir_name_r): Remove.
49474         (dir_len): Renamed from dirlen.  All callers changed.
49475         Rewrite in terms of base_name, for simplicity and consistency.
49476         (dir_name): Never return NULL.  All callers changed.
49477         Do not include <stdlib.h> in test program; no longer needed.
49478         return 0; is fine for test program.
49479
49480         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
49481         New macros.
49482         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
49483
49484         * lib/path-concat.c (path_concat): Use base_len to compute
49485         base length, not strlen; this means we cannot rely on memcpy
49486         to null-terminate.
49487
49488         * lib/same.c (STREQ): Remove.
49489         (same_name): Handle the case where the basename ends in trailing '/'.
49490
49491         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
49492         a slash was stripped.  Do not strip the last slash after a
49493         file system prefix.
49494
49495 2001-05-11  Paul Eggert  <eggert@twinsun.com>
49496
49497         * lib/Makefile.am (libfetish_a_SOURCES):
49498         Add strftime.c, since we now compile it on all hosts.
49499
49500         * lib/strftime.c (my_strftime):
49501         Define to nstrftime if emacs, but only if my_strftime is not defined.
49502         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
49503         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
49504         Add one more extra argument: a nanoseconds value.
49505         All uses changed.
49506         (ns): New macro.
49507         (my_strftime function): Add %N format.
49508         (emacs_strftimeu): Renamed from emacs_strftime,
49509         with extra ut argument.
49510
49511 2001-05-09  Paul Eggert  <eggert@twinsun.com>
49512
49513         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
49514
49515 2001-04-21  Jim Meyering  <meyering@lucent.com>
49516
49517         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
49518         doesn't interfere.
49519
49520 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
49521
49522         * m4/ftruncate.m4: Check for chsize.
49523         Link with ftruncate.o unconditionally if ftruncate is missing.
49524         This was required when cross-compiling to i586-mingw32msvc.
49525
49526 2001-04-08  Jim Meyering  <meyering@lucent.com>
49527
49528         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
49529         recomputed; that's necessary when the offset spans a DST transition.
49530         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
49531
49532 2001-04-02  Jim Meyering  <meyering@lucent.com>
49533
49534         * lib/regex.h, regex.c: Update from GNU libc.
49535
49536 2001-03-24  Jim Meyering  <meyering@lucent.com>
49537
49538         * m4/jm-macros.m4: Require autoconf-2.49d.
49539
49540 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
49541
49542         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
49543
49544 2001-03-19  Paul Eggert  <eggert@twinsun.com>
49545
49546         * lib/version-etc.c (version_etc_copyright): Update to 2001.
49547
49548 2001-03-17  Jim Meyering  <meyering@lucent.com>
49549
49550         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
49551         now that the version in autoconf is equivalent.
49552         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
49553
49554         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
49555         Suggestion from Akim Demaille.
49556
49557         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
49558         (jm_PREREQ_TEMPNAME): New function.
49559
49560 2001-03-16  Paul Eggert  <eggert@twinsun.com>
49561
49562         * lib/tempname.c (uint64_t): Define to uintmax_t if
49563         not defined, and if UINT64_MAX is not defined.
49564         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
49565         Reported by John David Anglin.
49566
49567 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
49568
49569         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
49570         resolve alias if codeset is empty.
49571         * lib/config.charset (BeOS): Use wildcard syntax.
49572
49573 2001-03-13  Jim Meyering  <meyering@lucent.com>
49574
49575         * lib/path-concat.c (path_concat)
49576         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
49577         concatenating e.g., `C:' and `foo'.
49578         From Bruno Haible.
49579
49580 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
49581
49582         * lib/localcharset.c (locale_charset): Don't use
49583         setlocale(LC_CTYPE,NULL). Don't return NULL.
49584         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
49585
49586 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
49587
49588         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
49589         support for DOS/DJGPP.
49590
49591 2001-03-01  Paul Eggert  <eggert@twinsun.com>
49592
49593         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
49594         lacks mkstemp.  Compile our own tempname.c if we compile our own
49595         mkstemp.c, as mkstemp relies on tempname.
49596
49597 2001-03-01  Jim Meyering  <meyering@lucent.com>
49598
49599         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
49600         AH_VERBATIM really does output its argument verbatim.
49601
49602 2001-02-28  Paul Eggert  <eggert@twinsun.com>
49603
49604         * lib/Makefile.am (libfetish_a_SOURCES):
49605         Add dup-safer.c, fopen-safer.c.
49606         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
49607
49608         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
49609         * lib/unistd-safer.h: New files.
49610
49611 2001-02-25  Paul Eggert  <eggert@twinsun.com>
49612
49613         The mkstemp replacement is taken from glibc 2.2.2, with some
49614         portability fixes for use outside glibc, as follows:
49615
49616         * lib/tempname.c (struct_stat64): New macro.
49617         (direxists, __gen_tempname): Use it.
49618         This avoids a portability problem with Solaris 8.
49619
49620         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
49621         (<stddef.h>, <stdint.h>, <string.h>):
49622         Include only if STDC_HEADERS || _LIBC.
49623         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
49624         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
49625         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
49626         (__set_errno): Define this macro if <errno.h> doesn't.
49627         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
49628         Define these macros if <stdio.h> doesn't.
49629         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
49630         Define these macros if <sys/stat.h>
49631         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
49632         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
49633         __xstat64): Define if not _LIBC.
49634         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
49635         (__gen_tempname): Invoke gettimeofday only if
49636         HAVE_GETTIMEOFDAY || _LIBC;
49637         otherwise, fall back on plain "time".
49638         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
49639
49640         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
49641
49642         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
49643
49644 2001-02-18  Paul Eggert  <eggert@twinsun.com>
49645
49646         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
49647
49648 2001-02-17  Paul Eggert  <eggert@twinsun.com>
49649
49650         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
49651         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
49652         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
49653         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
49654
49655 2001-02-17  Paul Eggert  <eggert@twinsun.com>
49656
49657         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
49658         Remove workaround macros for hosts that have mbrtowc but not
49659         mbstate_t, as we now insist on proper declarations for both
49660         before using mbrtowc.
49661
49662 2001-02-17  Jim Meyering  <meyering@lucent.com>
49663
49664         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
49665         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
49666         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
49667         UnixWare 7.1.1.
49668
49669         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
49670         rather than AC_CACHE_VAL.
49671
49672 2001-02-17  Jim Meyering  <meyering@lucent.com>
49673
49674         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
49675         around included file name.
49676
49677         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
49678
49679         * lib/strftime.c: Update from GNU libc (the only changes were to
49680         comments).
49681
49682 2001-02-17  Jim Meyering  <meyering@lucent.com>
49683
49684         * lib/regex.c: Update from libc.
49685
49686 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
49687
49688         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
49689         clash.
49690
49691 2001-02-16  Paul Eggert  <eggert@twinsun.com>
49692
49693         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
49694         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
49695         Reported by Mark Hounschell via Paul Eggert.
49696
49697 2001-02-07  Jim Meyering  <meyering@lucent.com>
49698
49699         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
49700
49701 2001-02-05  Jim Meyering  <meyering@lucent.com>
49702
49703         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
49704         it includes the patch required for `large file' support with at least
49705         HP-UX's 10.20 /bin/cc.
49706
49707 2001-02-03  Jim Meyering  <meyering@lucent.com>
49708
49709         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
49710         AS_IF, now that it works once again (mysteriously).
49711         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
49712
49713 2001-01-30  Jim Meyering  <meyering@lucent.com>
49714
49715         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
49716         * m4/chown.m4: Rename conftestchown to conftest.chown.
49717         * m4/rename.m4: s/conftestdir/conftest.d1/ and
49718         s/conftestdir2/conftest.d2/.
49719         * m4/utimes.m4: s/conftestdata/conftest.data/
49720         Inspired by Pavel Roskin's change in autoconf.
49721
49722 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
49723
49724         * lib/config.charset: Update for FreeBSD 4.2.
49725
49726 2001-01-27  Jim Meyering  <meyering@lucent.com>
49727
49728         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
49729         a use of AS_IF.
49730         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
49731
49732 2001-01-26  Jim Meyering  <meyering@lucent.com>
49733
49734         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
49735         quotearg.c includes it.
49736
49737 2001-01-26  Jim Meyering  <meyering@lucent.com>
49738
49739         * lib/quotearg.c: Include stddef.h.
49740         * lib/quote.c: Include stddef.h.
49741         Reported by Axel Kittenberger.
49742
49743         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
49744         line in double quotes so that it evokes a better diagnostic.
49745         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
49746         Reported by Axel Kittenberger.
49747
49748 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
49749
49750         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
49751         as if it was a `charset'.
49752
49753 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
49754
49755         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
49756         has const.
49757
49758 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
49759
49760         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
49761         to avoid a warning.  Add back 'const' to inptr.
49762
49763 2001-01-20  Jim Meyering  <meyering@lucent.com>
49764
49765         Be sure that headers are checked before used in code compiled
49766         for the type checks.
49767         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
49768         In place of that, invoke jm_CHECK_ALL_TYPES.
49769         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
49770         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
49771         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
49772         The check for ssize_t was mistakenly run before the test for unistd.h.
49773
49774         The configure-time check for stdbool.h was missing.
49775         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
49776         (jm_PREREQ_HASH): New function.
49777
49778 2001-01-17  Jim Meyering  <meyering@lucent.com>
49779
49780         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
49781         for autoconf-2.49c.
49782         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
49783
49784 2001-01-16  Jim Meyering  <meyering@lucent.com>
49785
49786         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
49787         From Bruno Haible.
49788
49789 2001-01-14  Jim Meyering  <meyering@lucent.com>
49790
49791         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
49792         foo and bar.  Create conftestdir/ in the script, not in the C code.
49793         Remove directories in the script, not in the C code.
49794         Remove conftestdir{,2} before trying to create the directory.
49795         Make the entire configure script fail if the mkdir fails.
49796
49797 2001-01-14  Jim Meyering  <meyering@lucent.com>
49798
49799         * lib/rename.c: New file.  From Volker Borchert.
49800         Include stdlib.h, string.h or strings.h, and xalloc.h.
49801         Use strip_trailing_slashes rather than open-coding it.
49802
49803 2001-01-03  Paul Eggert  <eggert@twinsun.com>
49804
49805         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
49806
49807 2001-01-03  Jim Meyering  <meyering@lucent.com>
49808
49809         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
49810         of local `inptr' to avoid warning with some system declarations of
49811         iconv.
49812
49813 2001-01-02  Volker Borchert  <bt@teknon.de>
49814
49815         * m4/rename.m4: New file.
49816         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
49817
49818 2001-01-01  Jim Meyering  <meyering@lucent.com>
49819
49820         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
49821         even on systems with utmpx.h.  It's necessary for the declaration of
49822         utmp's ut_user member.  Reported by Andreas Jaeger.
49823
49824         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
49825         available. They are required for the declarations of getgrgid and
49826         getpwuid resp.
49827         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
49828         Reported by Andreas Jaeger.
49829
49830 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
49831
49832         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
49833         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
49834         so `make install' also works in VPATH builds.
49835
49836 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
49837
49838         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
49839         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
49840         can be used in subdirectories.
49841
49842 2000-12-29  Paul Eggert  <eggert@twinsun.com>
49843
49844         * lib/modechange.c: Do not assume that mode_t uses the
49845         traditional octal encoding.  E.g. "chmod 1 FOO" should set
49846         the other-execute bit of FOO even if S_IXOTH != 1.
49847
49848         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
49849         WOTH, XOTH, ALLM): New macros.
49850         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
49851          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
49852         Use them.
49853         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
49854         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
49855         (mode_compile):
49856         No need to use uintmax_t; unsigned long is long enough.
49857         Don't bother to get suffix since we don't use it.
49858
49859 2000-12-26  Jim Meyering  <meyering@lucent.com>
49860
49861         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
49862         better with autoheader.
49863
49864 2000-12-24  Jim Meyering  <meyering@lucent.com>
49865
49866         * lib/hash.c (is_prime): Return explicit boolean values.
49867         (hash_get_first): Return NULL to appease Irix5.6's 89.
49868         Reported by Nelson Beebe.
49869
49870 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
49871
49872         * lib/localcharset.c (locale_charset): Add support for Win32.
49873
49874 2000-12-18  Paul Eggert  <eggert@twinsun.com>
49875
49876         * lib/physmem.h, lib/physmem.c: New files.
49877
49878         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
49879         (noinst_HEADERS): Add physmem.h.
49880
49881         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
49882         't' for compatibility with Solaris 8 sort.
49883
49884 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
49885
49886         * lib/config.charset: Add support for BeOS.
49887
49888 2000-12-17  Jim Meyering  <meyering@lucent.com>
49889
49890         * m4/dos.m4 (jm_AC_DOS): New file and macro.
49891         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
49892
49893 2000-12-16  Jim Meyering  <meyering@lucent.com>
49894
49895         This bug had a serious impact on chown: `chown N:M FILE' (for integer
49896         N and M) would have treated it like `chown N:N FILE'.
49897
49898         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
49899
49900 2000-12-16  Jim Meyering  <meyering@lucent.com>
49901
49902         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
49903         SHELLS_FILE to a file name that's useful on djgpp systems.
49904         Include stdlib.h.
49905         (ADDITIONAL_DEFAULT_SHELLS): Define.
49906         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
49907         Based mostly on a patch from Prashant TR.
49908
49909 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
49910
49911         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
49912         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
49913         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
49914
49915 2000-12-08  Andreas Schwab  <schwab@suse.de>
49916
49917         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
49918         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
49919
49920 2000-12-07  Jim Meyering  <meyering@lucent.com>
49921
49922         * lib/stripslash.c (ISSLASH): Define.
49923         (strip_trailing_slashes): Use ISSLASH rather than comparing against
49924         `/'.
49925         From Prashant TR.
49926
49927         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
49928         (dir_name_r): Declare this function as static.
49929         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
49930         manifest itself on a name containing a mix of slashes and
49931         backslashes.
49932         Make this function work with names starting with a DOS-style
49933         drive letter and colon prefix.
49934         (dir_name): Append `.' if necessary.
49935         Based mostly on patches from Prashant TR and Eli Zaretskii.
49936
49937         * lib/dirname.h (dir_name_r): Remove prototype.
49938
49939 2000-12-06  Paul Eggert  <eggert@twinsun.com>
49940
49941         * m4/off_t-format.m4: Remove this file.
49942         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
49943
49944 2000-12-06  Jim Meyering  <meyering@lucent.com>
49945
49946         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
49947         replacement strtoull, we may well need the replacement strtoul, too.
49948         Check for declarations of strtoul and strtoull.
49949         Check for strtol.  Mainly as a cue to cause automake to include
49950         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
49951         Check for limits.h -- strtol.c needs it.
49952
49953 2000-12-05  Jim Meyering  <meyering@lucent.com>
49954
49955         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
49956
49957 2000-12-04  Jim Meyering  <meyering@lucent.com>
49958
49959         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
49960         Also include memory.h, stdlib.h, unistd.h if appropriate.
49961         Reported by Andreas Jaeger (conflicting declaration of malloc).
49962
49963 2000-12-02  Jim Meyering  <meyering@lucent.com>
49964
49965         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
49966         * m4/jm-macros.m4 (jm_MACROS): require it.
49967
49968 2000-12-02  Jim Meyering  <meyering@lucent.com>
49969
49970         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
49971
49972 2000-12-01  Paul Eggert  <eggert@twinsun.com>
49973
49974         * lib/memrchr.c: Include <config.h> before any system include file.
49975
49976 2000-11-30  Jim Meyering  <meyering@lucent.com>
49977
49978         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
49979
49980 2000-11-30  Jim Meyering  <meyering@lucent.com>
49981
49982         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
49983
49984 2000-11-29  Paul Eggert  <eggert@twinsun.com>
49985
49986         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
49987
49988 2000-11-26  Jim Meyering  <meyering@lucent.com>
49989
49990         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
49991
49992 2000-11-22  Paul Eggert  <eggert@twinsun.com>
49993
49994         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
49995         size of (size_t) -1; it's not portable.
49996
49997 2000-11-17  Jim Meyering  <meyering@lucent.com>
49998
49999         * lib/strstr.c: Update from GNU libc.
50000
50001 2000-11-17  Akim Demaille  <akim@epita.fr>
50002
50003         * lib/obstack.h: Formatting changes.
50004         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
50005         prevent type checking.
50006         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
50007         cast the value to (void *): assigning a `foo *' to a `void *'
50008         variable is valid.
50009         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
50010
50011 2000-11-16  Jim Meyering  <meyering@lucent.com>
50012
50013         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
50014
50015 2000-11-11  Jim Meyering  <meyering@lucent.com>
50016
50017         * lib/error.c: Add a couple #includes, merging from GNU libc version.
50018
50019 2000-11-10  Jim Meyering  <meyering@lucent.com>
50020
50021         * lib/obstack.h: Update from GNU libc.
50022         * lib/obstack.c: Likewise.
50023
50024 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
50025
50026         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
50027
50028 2000-11-06  Paul Eggert  <eggert@twinsun.com>
50029
50030         * lib/getusershell.c (setusershell): Use rewind rather than
50031         fseek/fseeko, to avoid configuration hassles with fseeko.
50032         Don't bother opening SHELLS_FILE if shellstream is NULL;
50033         it's not necessary.
50034
50035 2000-11-05  Jim Meyering  <meyering@lucent.com>
50036
50037         * lib/makepath.h (make_dir): Declare.
50038         * lib/makepath.c (make_dir): Remove `static' attribute.
50039         Tweak a comment.
50040
50041 2000-11-04  Jim Meyering  <meyering@lucent.com>
50042
50043         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
50044
50045 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
50046
50047         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
50048         last one in a bucket, advance to the next bucket.
50049
50050 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
50051
50052         * lib/fnmatch.c: Do not comment out all the code if we are using
50053         the GNU C library, because in some cases we are replacing buggy
50054         code in the GNU C library itself.
50055
50056 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
50057
50058         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
50059         (regex_compile): Catch bogus \(\1\).
50060
50061 2000-10-30  Paul Eggert  <eggert@twinsun.com>
50062
50063         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
50064         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
50065         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
50066
50067 2000-10-30  Paul Eggert  <eggert@twinsun.com>
50068
50069         * lib/error.h, getline.h, modechange.h:
50070         Remove "2000" from Copyright line, as the file hasn't been
50071         changed this year other than in the copyright notice.
50072
50073         * lib/xalloc.h: Add "2000" to Copyright line, as this file
50074         was changed this year.
50075
50076 2000-10-29  Jim Meyering  <meyering@lucent.com>
50077
50078         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
50079         renaming.
50080         * m4/ls-mntd-fs.m4: Likewise
50081
50082 2000-10-29  Jim Meyering  <meyering@lucent.com>
50083
50084         * lib/xstat.in: Fix grammar in comment.
50085
50086 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
50087
50088         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
50089         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
50090         doesn't define __restrict_arr.
50091
50092 2000-10-28  Jim Meyering  <meyering@lucent.com>
50093
50094         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
50095         (jm_PREREQ_MEMCHR): New function.
50096
50097 2000-10-28  Jim Meyering  <meyering@lucent.com>
50098
50099         * lib/memchr.c: Update from libc.
50100         Adjust for portability:
50101         [HAVE_STDLIB_H]: Include stdlib.h.
50102         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
50103         Undef __memchr, too.
50104         [!weak_alias]: Define __memchr to memchr.
50105
50106         * lib/regex.c: Update from libc.
50107         * lib/regex.h: Likewise.
50108         * lib/getopt1.c: Likewise.
50109         * lib/memcmp.c: Likewise.
50110
50111         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
50112         Avoid using fseek, when possible -- it's broken by design.
50113         Patch by Ulrich Drepper.
50114
50115 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
50116
50117         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
50118         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
50119         Giving in to popular pressure to shut up the compiler with casts.
50120
50121 2000-10-26  Jim Meyering  <meyering@lucent.com>
50122
50123         * lib/strftime.c: Update from libc.
50124
50125 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
50126
50127         * regex.c: More `unsigned char' -> `re_char' changes.
50128         Also change several `int' into `re_wchar_t'.
50129         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
50130         (PUSH_FAILURE_POINTER): Don't cast any more.
50131         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
50132         We want GCC to complain, since this piece of code makes
50133         re_match non-reentrant, which *should* be fixed.
50134         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
50135         (EXTEND_BUFFER): Use RETALLOC.
50136         (SET_LIST_BIT): Don't cast.
50137         (re_wchar_t): New type.
50138         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
50139         that those two functions will always properly return.
50140         (IMMEDIATE_QUIT_CHECK): Cast to void.
50141         (analyse_first): Use recursion rather than an explicit stack.
50142         (re_compile_fastmap): Can't fail anymore.
50143         (re_search_2): Don't check re_compile_fastmap for failure.
50144         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
50145         Now also sets the new value (passed in a new argument).
50146         (re_match_2_internal): Use it.
50147         Also, use a new var `reg' of type size_t when looping through regs
50148         rather than reuse the inappropriate `mcnt'.
50149
50150 2000-10-25  Jim Meyering  <meyering@lucent.com>
50151
50152         * lib/obstack.c: Update from libc.
50153
50154 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
50155
50156         * regex.c (regex_compile): Change the way of handling a range from
50157         a char less than 256 to a char not less than 256.
50158
50159 2000-10-24  Andrew Innes  <andrewi@gnu.org>
50160
50161         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
50162         NT-Emacs only.
50163         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
50164         so that re_search functions only quit when callers expect them to.
50165
50166 2000-10-23  Jim Meyering  <meyering@lucent.com>
50167
50168         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
50169         wrong.  That set_locale call must not have any side effects.
50170         From Paul Eggert.
50171
50172 2000-10-22  Jim Meyering  <meyering@lucent.com>
50173
50174         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
50175         [CYCLIC]: Remove now-unused definition.
50176
50177         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
50178         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
50179         Suggestion from Ulrich Drepper.
50180
50181 2000-10-21  Jim Meyering  <meyering@lucent.com>
50182
50183         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
50184         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
50185         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
50186
50187 2000-10-21  Jim Meyering  <meyering@lucent.com>
50188
50189         * lib/dirname.c (memrchr): Declare if necessary.
50190         (dir_name): Remove the restriction that there be no
50191         trailing slashes.  Now, this code skips past them, effectively
50192         ignoring them.
50193         [TEST_DIRNAME] (main): New unit tests.
50194
50195         * lib/memrchr.c: New file from GNU libc.
50196         Undef __memrchr, too.
50197         [!weak_alias]: Define __memrchr to memrchr.
50198         Guard weak_alias use with `#ifdef weak_alias'.
50199
50200 2000-10-21  Jim Meyering  <meyering@lucent.com>
50201
50202         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
50203         (dir_name): Use dir_name_r.
50204         * lib/dirname.h (dir_name_r): Declare it.
50205
50206 2000-10-17  Jim Meyering  <meyering@lucent.com>
50207
50208         * lib/quote.h (PARAMS): Define and use.
50209         Reported by Akim Demaille.
50210
50211         * lib/getopt.c: Update from libc.
50212
50213 2000-10-16  Jim Meyering  <meyering@lucent.com>
50214
50215         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
50216         setlocale.
50217         From Jan Fedak.
50218
50219 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
50220
50221         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
50222
50223 2000-09-25  Jim Meyering  <meyering@lucent.com>
50224
50225         * lib/md5.h (rol): Define (from GnuPG).
50226
50227         * lib/sha.c: Give credit (GnuPG) where due.
50228         (M): Use rol rather than open-coding it.
50229         Add a FIXME comment.
50230
50231 2000-09-21  Jim Meyering  <meyering@lucent.com>
50232
50233         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
50234         Reported by Michael Stone.
50235
50236 2000-09-20  Jim Meyering  <meyering@lucent.com>
50237
50238         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
50239         (noinst_HEADERS): Add sha.h.
50240         Based on code from Scott G. Miller and from GnuPG.
50241
50242 2000-09-18  Jim Meyering  <meyering@lucent.com>
50243
50244         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
50245         LIBS. Otherwise, everyone ends up linking with -lelf for some
50246         configurations.
50247         Reported by Mike Stone.
50248
50249 2000-09-15  Jim Meyering  <meyering@lucent.com>
50250
50251         * lib/regex.c: Update from libc.
50252
50253 2000-09-10  Jim Meyering  <meyering@lucent.com>
50254
50255         * lib/getopt.c (_getopt_internal): Update from glibc.
50256
50257 2000-09-09  Jim Meyering  <meyering@lucent.com>
50258
50259         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
50260         think it should be used as a general replacement for isascii.
50261         * lib/fnmatch.c: Likewise.
50262         * lib/mbswidth.c: Likewise
50263         * lib/regex.c: Likewise.
50264
50265         Don't use atoi.
50266         * lib/userspec.c: Include sys/param.h and limits.h.
50267         Include xstrtol.h.
50268         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
50269         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
50270         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
50271         UID, GID.  Check range.
50272
50273 2000-09-06  Jim Meyering  <meyering@lucent.com>
50274
50275         * lib/getopt.c (_getopt_internal): Update from glibc.
50276
50277 2000-08-30  Jim Meyering  <meyering@lucent.com>
50278
50279         * lib/strftime.c: Merge in changes from GNU libc.
50280
50281 2000-08-26  Jim Meyering  <meyering@lucent.com>
50282
50283         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
50284         * m4/fpending.m4: New file.
50285
50286 2000-08-26  Jim Meyering  <meyering@lucent.com>
50287
50288         * lib/closeout.c: Include "__fpending.h".
50289         (close_stdout_status): Return right away if there's nothing to flush.
50290
50291         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
50292         * lib/__fpending.c: New file.
50293         * lib/__fpending.h: New file.
50294
50295 2000-08-20  Jim Meyering  <meyering@lucent.com>
50296
50297         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
50298         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
50299         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
50300
50301 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
50302
50303         Improve fileutils installation on systems where running
50304         programs (like install) can't be unlinked.
50305         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
50306         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
50307
50308 2000-08-07  Paul Eggert  <eggert@twinsun.com>
50309
50310         Standardize on "memory exhausted" instead of "Memory exhausted"
50311         or "virtual memory exhausted".
50312         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
50313         "virtual memory exhausted".
50314         * lib/same.c (same_name): Invoke xalloc_die instead of printing
50315         our own message.
50316         * lib/userspec.c (parse_user_spec): Likewise.
50317         * lib/bumpalloc.h: comment fix
50318         * lib/same.c, userspec.c: Include xalloc.h.
50319
50320         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
50321         not char *const and pointing to a constant array.
50322         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
50323         (xrealloc): Comment fix.
50324
50325         * lib/userspec.c (parse_user_spec):
50326         Don't translate a message until just before returning,
50327         to avoid unnecessary translation.
50328
50329 2000-08-07  Jim Meyering  <meyering@lucent.com>
50330
50331         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
50332         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
50333         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
50334         getgroups.c, gethostname.c, getopt.h, group-member.c,
50335         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
50336         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
50337         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
50338         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
50339         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
50340         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
50341         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
50342         yesno.c: Back out Copyright date changes for each file with no change
50343         this year.  This eases coordination with other programs using the same
50344         source code modules.  From Paul Eggert.
50345
50346 2000-08-06  Paul Eggert  <eggert@twinsun.com>
50347
50348         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
50349         not char, for compatibility with glibc 2.1.3 strftime.c.
50350
50351 2000-08-03  Greg McGary  <greg@mcgary.org>
50352
50353         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
50354         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
50355         (EXTEND_BUFFER): Use them.
50356
50357 2000-08-01  Jim Meyering  <meyering@lucent.com>
50358
50359         * lib/dirname.c (ISSLASH): Define.
50360         (BACKSLASH_IS_PATH_SEPARATOR): Define.
50361         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
50362         both `\' and `/' may be use as path separators.
50363         Based on a patch from Prashant TR.
50364
50365 2000-07-31  Paul Eggert  <eggert@twinsun.com>
50366
50367         * lib/quotearg.c (quotearg_n_options): Don't make the initial
50368         slot vector a constant, since it might get modified.
50369
50370 2000-07-31  Jim Meyering  <meyering@lucent.com>
50371
50372         * lib/xmalloc.c: Use `virtual memory exhausted', not
50373         `Memory exhausted'.
50374         * lib/obstack.c (print_and_abort): Likewise.
50375
50376 2000-07-30  Paul Eggert  <eggert@twinsun.com>
50377
50378         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
50379         buffer, so that the caller can always quote one small
50380         component of a "memory exhausted" message in slot 0.
50381         From a suggestion by Jim Meyering.
50382
50383 2000-07-30  Jim Meyering  <meyering@lucent.com>
50384
50385         * lib/makepath.c (make_path): Quote the other instance, too.
50386
50387         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
50388         (STATIC_BUF_SIZE): Define.
50389         (quotearg_n_options): Use only statically allocated storage when
50390         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
50391         than STATIC_BUF_SIZE.
50392
50393 2000-07-29  Jim Meyering  <meyering@lucent.com>
50394
50395         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
50396         * lib/dirname.c (dir_name): Likewise.
50397
50398         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
50399         `/'.
50400
50401         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
50402         (dir_name): Assert that there are no trailing slashes.
50403
50404 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
50405
50406         * lib/mbswidth.h (mbswidth): Add a flags argument.
50407         (mbswidth): New declaration.
50408         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
50409         * lib/mbswidth.c (mbswidth): Add a flags argument.
50410         (mbsnwidth): New function.
50411
50412 2000-07-24  Jim Meyering  <meyering@lucent.com>
50413
50414         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
50415
50416 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50417
50418         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
50419
50420 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50421
50422         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
50423         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
50424         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
50425         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
50426         invoke multibyte primitives.
50427
50428 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50429
50430         * lib/quotearg.c:
50431         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
50432         so that mbstate_t is always defined.
50433
50434         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
50435         be 1 in at least one GCC installation, and this configuration
50436         error is likely to be common.  Ignoring MB_LEN_MAX hurts
50437         performance on hosts that have mbrtowc but have only unibyte
50438         locales, but I assume these hosts are rare.
50439
50440 2000-07-23  Paul Eggert  <eggert@twinsun.com>
50441
50442         * lib/mbswidth.c (_XOPEN_SOURCE):
50443         Don't define; this causes problems on Solaris 7.
50444         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
50445
50446 2000-07-23  Jim Meyering  <meyering@lucent.com>
50447
50448         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
50449         too: getgrgid, getpwuid, getuid.
50450
50451 2000-07-23  Jim Meyering  <meyering@lucent.com>
50452
50453         * lib/basename.c (base_name): Add an assertion.
50454
50455 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
50456
50457         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
50458         shadow its mbsinit function.
50459
50460 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
50461
50462         * lib/mbswidth.h: New file.
50463         * lib/mbswidth.c: New file.
50464         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
50465         (noinst_HEADERS): Add mbswidth.h.
50466
50467 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
50468
50469         * lib/config.charset: Add support for FreeBSD. Improve support for
50470         HP-UX and IRIX 6.
50471
50472 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
50473
50474         * m4/mbswidth.m4: New file.
50475         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
50476
50477 2000-07-15  Jim Meyering  <meyering@lucent.com>
50478
50479         * lib/makepath.c: Include quote.h.
50480         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
50481         corresponding argument in a `quote (...)' call.
50482         Give better diagnostics.
50483
50484         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
50485         (noinst_HEADERS): Add quote.h.
50486
50487         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
50488         from tar's src/misc.c.
50489         * lib/quote.h: New file.  Prototypes for same.
50490
50491 2000-07-14  Paul Eggert  <eggert@twinsun.com>
50492
50493         From a suggestion by Bruno Haible.
50494         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
50495         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
50496         to decide whether to define the BeOS workaround macro;
50497         this adjusts to the change to AC_MBSTATE_T.
50498
50499 2000-07-14  Jim Meyering  <meyering@lucent.com>
50500
50501         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
50502         jm_AC_TYPE_UINTMAX_T.
50503
50504 2000-07-13  Paul Eggert  <eggert@twinsun.com>
50505
50506         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
50507
50508         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
50509         quotearg_buffer_restyled): Add support for
50510         clocale_quoting_style.  Undo previous change to
50511         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
50512         and "{RIGHT QUOTATION MARK}" msgids.
50513
50514 2000-07-10  Paul Eggert  <eggert@twinsun.com>
50515
50516         From a suggestion by Bruno Haible.
50517         * m4/mbstate_t.m4 (AC_MBSTATE_T):
50518         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
50519         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
50520         and mbstate_t, to a single-part test that simply defines mbstate_t.
50521         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
50522         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
50523
50524 2000-07-10  Jim Meyering  <meyering@lucent.com>
50525
50526         * m4/strerror_r.m4: Mirror the correction made in autoconf.
50527
50528         * m4/gnu-source.m4: Output to confdefs.h directly.
50529         Suggestion from Akim Demaille.
50530
50531 2000-07-09  Paul Eggert  <eggert@twinsun.com>
50532
50533         The old behavior of quoting `like this' doesn't look good with
50534         newer, ISO-style fonts.  See:
50535         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
50536
50537         Instead, quote "like this" by default.  Let the translator
50538         tailor the locale-specific quoting behavior by providing
50539         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
50540
50541         * lib/quotearg.c (N_): New macro.
50542         (gettext_default): New function.
50543         (quotearg_buffer_restyled): Use
50544         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
50545         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
50546
50547 2000-07-09  Jim Meyering  <meyering@lucent.com>
50548
50549         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
50550         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
50551
50552         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
50553         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
50554
50555 2000-07-09  Jim Meyering  <meyering@lucent.com>
50556
50557         * lib/Most files: Update copyright dates to include 2000.
50558
50559 2000-07-08  Jim Meyering  <meyering@lucent.com>
50560
50561         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
50562         if not defined.
50563         (xgethostname): Remove now-unnecessary #ifdef.
50564         Move declaration of `err' into loop where it's used.
50565
50566 2000-07-05  Paul Eggert  <eggert@twinsun.com>
50567         and Bruno Haible  <haible@clisp.cons.org>
50568
50569         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
50570         only if the test for an object-type mbstate_t fails.  This
50571         prevents us from mistakenly reporting that mbstate_t is a
50572         system object type after we "#define mbstate_t int" to work
50573         around its lack.
50574
50575 2000-07-05  Paul Eggert  <eggert@twinsun.com>
50576         and Bruno Haible  <haible@clisp.cons.org>
50577
50578         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
50579
50580 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50581
50582         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
50583         to strerror_r.
50584         Include <ctype.h> for use of isalpha.
50585
50586 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50587
50588         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
50589         by allocating a larger buffer. Test the gethostname return value for
50590         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
50591         returns an error and ENAMETOOLONG isn't defined.
50592
50593 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
50594
50595         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
50596         dimension.
50597
50598 2000-07-04  Jim Meyering  <meyering@lucent.com>
50599
50600         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
50601         of the deprecated AC_CHECKING.
50602
50603 2000-07-04  Jim Meyering  <meyering@lucent.com>
50604
50605         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
50606         Reported by Bruno Haible.
50607
50608 2000-07-04  Jim Meyering  <meyering@lucent.com>
50609
50610         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
50611         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
50612         lacks mbrtowc.
50613
50614 2000-07-03  Paul Eggert  <eggert@twinsun.com>
50615
50616         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
50617         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
50618
50619 2000-07-03  Paul Eggert  <eggert@twinsun.com>
50620         and Bruno Haible  <haible@clisp.cons.org>
50621
50622         * lib/quotearg.c (mbrtowc):
50623         Assign to *pwc, and return 1 only if result is nonzero.
50624         (iswprint): Use ISPRINT when substituting our own mbrtowc.
50625
50626 2000-07-03  Jim Meyering  <meyering@lucent.com>
50627
50628         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
50629
50630 2000-07-03  Jim Meyering  <meyering@lucent.com>
50631
50632         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
50633         This is necessary to get a definition of e.g., UTMP_FILE on
50634         HP-UX 10.20.
50635         From Bob Proulx.
50636
50637 2000-07-02  Jim Meyering  <meyering@lucent.com>
50638
50639         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
50640
50641         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
50642         AC_LIBOBJ(function_name).
50643         * m4/chown.m4: Likewise.
50644         * m4/fnmatch.m4: Likewise.
50645         * m4/ftruncate.m4: Likewise.
50646         * m4/getgroups.m4: Likewise.
50647         * m4/getline.m4: Likewise.
50648         * m4/group-member.m4: Likewise.
50649         * m4/jm-macros.m4: Likewise.
50650         * m4/lstat.m4: Likewise.
50651         * m4/malloc.m4: Likewise.
50652         * m4/memcmp.m4: Likewise.
50653         * m4/nanosleep.m4: Likewise.
50654         * m4/putenv.m4: Likewise.
50655         * m4/realloc.m4: Likewise.
50656         * m4/regex.m4: Likewise.
50657         * m4/stat.m4: Likewise.
50658         * m4/strftime.m4: Likewise.
50659
50660 2000-07-02  Jim Meyering  <meyering@lucent.com>
50661
50662         * lib/quotearg.c (mbstate_t): Don't define here.
50663
50664 2000-07-02  Jim Meyering  <meyering@lucent.com>
50665
50666         * lib/nanosleep.c (SIGCONT): Define if not already defined.
50667
50668 2000-07-01  Jim Meyering  <meyering@lucent.com>
50669
50670         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
50671
50672 2000-07-01  Jim Meyering  <meyering@lucent.com>
50673
50674         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
50675         problem.
50676
50677 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
50678
50679         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
50680         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
50681
50682 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
50683
50684         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
50685         per change in ../m4/ls-mntd-fs.m4.
50686         (read_filesystem_list): Ignore symbolic links.
50687
50688 2000-06-29  Jim Meyering  <meyering@lucent.com>
50689
50690         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
50691         for declaration of strcmp.
50692
50693         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
50694
50695         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
50696         Avoid warning by casting result to `char *' to remove `const'.
50697
50698 2000-06-28  Jim Meyering  <meyering@lucent.com>
50699
50700         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
50701         included by quotearg.c, for which we perform this test.  From
50702         Bruno Haible.
50703
50704 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
50705
50706         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
50707         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
50708         <utmpx.h> exists, put readutmp.o into LIBOBJS.
50709
50710 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
50711
50712         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
50713
50714 2000-06-26  Paul Eggert  <eggert@twinsun.com>
50715
50716         savedir now sets errno on failure and invokes xmalloc to get memory.
50717         Fix a couple of other minor bugs while we're at it.
50718
50719         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
50720         (NAMLEN): Remove macro.
50721         (malloc, realloc): Remove decls.
50722         (stpcpy): Likewise.
50723         ("xalloc.h"): Include.
50724         (NAME_SIZE_DEFAULT): New macro.
50725         (savedir): Use xmalloc / xrealloc to allocate memory.
50726         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
50727         Skip "" directory entries.
50728         Use strlen to calculate directory entry length, since the old method
50729         is rarely used these days and isn't worth supporting.
50730         Don't use a pointer after freeing it.
50731         Check for integer overflow when calculating allocation size.
50732         Use memcpy to copy entries, instead of stpcpy.
50733         Set errno properly when returning NULL.
50734         Check for readdir error.
50735
50736 2000-06-26  Jim Meyering  <meyering@lucent.com>
50737
50738         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
50739
50740 2000-06-25  Jim Meyering  <meyering@lucent.com>
50741
50742         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
50743         Linux header bug when _XOPEN_SOURCE is defined to 500.
50744
50745 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
50746
50747         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
50748         deficiency.
50749
50750 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
50751
50752         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
50753         Include xalloc.h.
50754         Don't include <stdlib.h>.  Don't declare malloc, realloc.
50755
50756 2000-06-24  Jim Meyering  <meyering@lucent.com>
50757
50758         * m4/strerror_r.m4: Revive this file -- to try out an experimental
50759         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
50760         for which strerror does return char*, but which lacks a conveniently
50761         accessible declaration of the function.  If the compile-test says
50762         strerror_r doesn't work, then resort to a `run'-test that works on
50763         BeOS and segfaults on DEC Unix.
50764
50765 2000-06-24  Jim Meyering  <meyering@lucent.com>
50766
50767         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
50768
50769 2000-06-23  Paul Eggert  <eggert@twinsun.com>
50770
50771         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
50772         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
50773
50774 2000-06-23  Paul Eggert  <eggert@twinsun.com>
50775
50776         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
50777         (mbrtowc, mbstate_t): Define substitutes if
50778         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
50779         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
50780         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
50781
50782 2000-06-23  Jim Meyering  <meyering@lucent.com>
50783
50784         * m4/afs.m4: Add missing AC_MSG_RESULT.
50785         Reported by Bruno Haible.
50786
50787         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
50788         Suggestion from Bruno Haible.
50789
50790 2000-06-23  Jim Meyering  <meyering@lucent.com>
50791
50792         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
50793
50794 2000-06-21  Jim Meyering  <meyering@lucent.com>
50795
50796         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
50797
50798 2000-06-21  Jim Meyering  <meyering@lucent.com>
50799
50800         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
50801         (noinst_HEADERS): Add getstr.h.
50802
50803         * lib/getline.c (getstr): Move into a separate file.
50804         * lib/getstr.c (getstr): New file, extracted from getline.c, with
50805         the following changes: new parameter, delim2; both delim[12]
50806         parameters have type `int', not `char'.  The latter would lose
50807         with 8-bit delimiters.
50808         * lib/getstr.h: New file.
50809
50810 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
50811
50812         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
50813         than 1024, return a memory chunk of least possible size, instead
50814         of size PATH_MAX + 2. In the loop, increment the size proportionally.
50815         Use free/xmalloc instead of xrealloc to avoid copying for very long
50816         paths.
50817
50818 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
50819
50820         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
50821         the empty string.
50822
50823 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
50824
50825         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
50826         address, not strdup.  Include <stdlib.h> and don't declare free().
50827
50828 2000-06-19  Jim Meyering  <meyering@lucent.com>
50829
50830         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
50831
50832 2000-06-18  Jim Meyering  <meyering@lucent.com>
50833
50834         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
50835
50836         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
50837         `checking whether...' message to be consistent with that of the
50838         lstat test.
50839
50840 2000-06-18  Jim Meyering  <meyering@lucent.com>
50841
50842         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
50843         Besides, these days every porting target provides a mkdir function.
50844
50845         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
50846         needed. (this snippet comes from src/system.h).
50847
50848 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
50849
50850         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
50851
50852 2000-06-15  Paul Eggert  <eggert@twinsun.com>
50853
50854         * lib/human.c (adjust_value): New function.
50855         (human_readable_inexact): Apply rounding style even when
50856         printing approximate values.
50857
50858 2000-06-14  Paul Eggert  <eggert@twinsun.com>
50859
50860         * lib/human.c (human_readable_inexact): Allow an input block
50861         size that is not a multiple of the output block size, and vice versa.
50862         Reported by Piergiorgio Sartor.
50863
50864 2000-06-14  Paul Eggert  <eggert@twinsun.com>
50865
50866         * lib/getdate.y (get_date): Apply relative times after time
50867         zone indicator, not before.  Reported by Todd A. Jacobs.
50868
50869 2000-06-13  Jim Meyering  <meyering@lucent.com>
50870
50871         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
50872
50873         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
50874
50875 2000-06-12  Paul Eggert  <eggert@twinsun.com>
50876
50877         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
50878
50879 2000-06-12  Jim Meyering  <meyering@lucent.com>
50880
50881         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
50882         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
50883         optional argument.
50884         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
50885         the optional argument, `lib'.
50886
50887 2000-06-08  Jim Meyering  <meyering@lucent.com>
50888
50889         * m4/largefile.m4: Remove file (now that it's part of autoconf).
50890
50891 2000-06-04  Paul Eggert  <eggert@twinsun.com>
50892
50893         Rewrite largefile configuration so that we don't need to run
50894         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
50895         AC_CANONICAL_HOST in configure.in -- jmm]
50896
50897         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
50898         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
50899         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
50900         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
50901         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
50902         All uses changed.
50903         Instead of inspecting the output of getconf, try to compile the
50904         test program without and with the macro definition.
50905         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
50906         for getconf.  Instead, check for the needed flags by compiling
50907         test programs.
50908
50909 2000-06-04  Paul Eggert  <eggert@twinsun.com>
50910
50911         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
50912
50913 2000-06-04  Jim Meyering  <meyering@lucent.com>
50914
50915         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
50916         SunOS 4.1.4 for which gid_t is an unsigned type.
50917
50918 2000-06-03  Jim Meyering  <meyering@lucent.com>
50919
50920         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
50921         now that autoconf requires that.
50922
50923         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
50924         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
50925         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
50926
50927 2000-06-03  Jim Meyering  <meyering@lucent.com>
50928
50929         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
50930
50931 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
50932
50933         * m4/glibc21.m4: New file.
50934         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
50935
50936 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
50937
50938         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
50939         newer, don't install charset.alias.
50940         * lib/config.charset: Change the Linux/glibc rules so they become empty
50941         on glibc-2.1 or newer.
50942
50943 2000-06-02  Jim Meyering  <meyering@lucent.com>
50944
50945         * lib/mountlist.c: Back out last change.  Instead, do this...
50946         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
50947         me_dummy member using the same `ignore'-testing code.
50948         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
50949         fs_type strings.
50950         From Mark D. Roth.
50951
50952 2000-05-29  Jim Meyering  <meyering@lucent.com>
50953
50954         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
50955         mounts with the `ignore' attribute.  Based on a patch from
50956         Mark D. Roth.
50957
50958 2000-05-28  Jim Meyering  <meyering@lucent.com>
50959
50960         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
50961         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
50962         * m4/stat.m4: Likewise.
50963         * m4/lstat.m4: Likewise.
50964         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
50965
50966         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
50967         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
50968
50969 2000-05-26  Jim Meyering  <meyering@lucent.com>
50970
50971         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
50972
50973 2000-05-24  Jim Meyering  <meyering@lucent.com>
50974
50975         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
50976         autoconf requires that.
50977         * m4/lib-check.m4: Likewise.
50978         * m4/jm-macros.m4: Likewise.
50979         * m4/strftime.m4: Likewise.
50980
50981         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
50982         AC_CHECK_DECLS, now that autoconf requires that.
50983
50984 2000-05-22  Jim Meyering  <meyering@lucent.com>
50985
50986         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
50987         * m4/lstat.m4: Likewise.
50988
50989 2000-05-22  Jim Meyering  <meyering@lucent.com>
50990
50991         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
50992
50993 2000-05-20  Jim Meyering  <meyering@lucent.com>
50994
50995         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
50996         (jm_PREREQ): Use it.
50997
50998 2000-05-18  Jim Meyering  <meyering@lucent.com>
50999
51000         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
51001         back, too, since it may have been modified by allocate_entry.
51002         (hash_delete): Rewrite to use neither the assignment operator
51003         nor the comma operator in an if-expression.
51004
51005 2000-05-15  Paul Eggert  <eggert@twinsun.com>
51006
51007         * lib/closeout.c:
51008         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
51009         Remove; no longer needed.
51010         "quotearg.h": Add include.
51011         (file_name): Do not bother to explicitly initialize to NULL; it's less
51012         efficient on some hosts.
51013         (close_stdout_status): Remove test as to whether stdout was already
51014         closed; it breaks for the case "echo x | sort >&-".
51015         Quote file name colons.
51016         Do not assume that _("write error") lacks format strings.
51017
51018 2000-05-15  Jim Meyering  <meyering@lucent.com>
51019
51020         * lib/version-etc.c (version_etc_copyright): Update the copyright
51021         string used in all --version output.
51022
51023 2000-05-14  Jim Meyering  <meyering@lucent.com>
51024
51025         * lib/closeout.c (close_stdout_set_file_name): New function.
51026         (close_stdout_status): Use new file-scoped global.
51027         Return right away if fstat says the stdout file descriptor is invalid.
51028         * lib/closeout.h (close_stdout_set_file_name): Declare.
51029
51030 2000-05-10  Jim Meyering  <meyering@lucent.com>
51031
51032         * lib/closeout.c [default_exit_status]: New file-scoped variable.
51033         (close_stdout_set_status): New function.
51034         * lib/closeout.h (close_stdout_set_status): Declare.
51035
51036 2000-05-09  Jim Meyering  <meyering@lucent.com>
51037
51038         * m4/gettext.m4: Rename this...
51039         * m4/libintl.m4: ...to this.
51040
51041 2000-05-08  Jim Meyering  <meyering@lucent.com>
51042
51043         * lib/long-options.c: Don't include closeout.h.
51044         (parse_long_options): Don't call close_stdout for --version.
51045
51046 2000-05-06  Paul Eggert  <eggert@twinsun.com>
51047
51048         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
51049         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
51050         2.1.3 bug.  This avoids a clash when files like regex.c define
51051         _GNU_SOURCE.
51052
51053 2000-05-06  Jim Meyering  <meyering@lucent.com>
51054
51055         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
51056         (AC_REPLACE_FUNCS): Add strnlen.
51057
51058         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
51059         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
51060
51061         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
51062         AC_SEARCH_LIBS call for nanosleep.
51063         (LIB_NANOSLEEP): Set and AC_SUBST.
51064
51065 2000-05-06  Jim Meyering  <meyering@lucent.com>
51066
51067         * lib/strnlen.c: Undefine __strnlen and strnlen.
51068         [!weak_alias]: Define __strnlen to strnlen.
51069
51070         * lib/atexit.c: New file, from libiberty.
51071
51072 2000-05-06  Jim Meyering  <meyering@lucent.com>
51073
51074         * lib/closeout.c (close_stdout_status): Also check for errors on the
51075         stderr stream.
51076
51077 2000-05-05  Jim Meyering  <meyering@lucent.com>
51078
51079         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
51080         AC_SEARCH_LIBS call for clock_gettime.
51081         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
51082
51083         * m4/search-libs.m4: Update from autoconf.
51084
51085         su doesn't work on Solaris 2.6.
51086         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
51087         <shadow.h>.  Reported by Dragos Harabor.
51088
51089 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
51090
51091         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
51092         memcpy instead of xmalloc, xrealloc, path_concat.
51093         (locale_charset): Treat empty environment variables as absent.
51094         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
51095
51096 2000-05-04  Jim Meyering  <meyering@lucent.com>
51097
51098         * lib/getopt.c: Update from glibc.
51099         * lib/obstack.c: Likewise.
51100         * lib/obstack.h: Likewise.
51101         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
51102         file
51103
51104         * lib/regex.h: Likewise.
51105         * lib/strndup.c: Likewise.
51106         * lib/strnlen.c: New file, from glibc.
51107
51108 2000-05-03  Jim Meyering  <meyering@lucent.com>
51109
51110         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
51111
51112 2000-05-02  Paul Eggert  <eggert@twinsun.com>
51113
51114         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
51115         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
51116         compile-time test, rather than inspecting host and OS, to
51117         decide whether to define _LARGEFILE_SOURCE.
51118
51119 2000-05-01  Jim Meyering  <meyering@lucent.com>
51120
51121         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
51122
51123         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
51124         Based on a patch from Bruno Haible.
51125
51126 2000-05-01  Jim Meyering  <meyering@lucent.com>
51127
51128         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
51129
51130 2000-04-29  Jim Meyering  <meyering@lucent.com>
51131
51132         * lib/path-concat.c: Declare strdup only if it's not defined.
51133         * lib/canon-host.c: Likewise.
51134
51135 2000-04-28  Jim Meyering  <meyering@lucent.com>
51136
51137         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
51138         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
51139         is included first, then limits.h is included by locale.h by libintl.h.
51140         From John David Anglin.
51141
51142 2000-04-25  Jim Meyering  <meyering@lucent.com>
51143
51144         * lib/makepath.c (S_IRWXUGO): Define.
51145         (make_path): Always perform explicit chmod if MODE specifies any
51146         of the `special' permission bits.  Prompted by a bug report against
51147         install from Mate Wierdl and Joost van Baal.
51148
51149 2000-04-18  Jim Meyering  <meyering@lucent.com>
51150
51151         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
51152         (jm_PREREQ): Use it.
51153
51154 2000-04-18  Jim Meyering  <meyering@lucent.com>
51155
51156         * lib/README: New file.
51157
51158         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
51159         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
51160
51161 2000-04-17  Jim Meyering  <meyering@lucent.com>
51162
51163         Get it right :-)
51164         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
51165         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
51166         Suggestion from Akim Demaille.
51167
51168 2000-04-17  Jim Meyering  <meyering@lucent.com>
51169
51170         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
51171         the definition of it to rpl_strftime also defined-away the system's
51172         declaration.
51173
51174 2000-04-15  Jim Meyering  <meyering@lucent.com>
51175
51176         Use `C' to denote so-called `contiguous' files, the same way
51177         that tar does.
51178         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
51179         (ftypelet): Use S_ISCTG.
51180         From Michael Deutschmann.
51181
51182 2000-04-14  Jim Meyering  <meyering@lucent.com>
51183
51184         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
51185         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
51186         clobbered.
51187
51188 2000-04-14  Jim Meyering  <meyering@lucent.com>
51189
51190         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
51191
51192 2000-04-13  Jim Meyering  <meyering@lucent.com>
51193
51194         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
51195         AH_VERBATIM to insert required #ifndef into config.h.in.
51196         Suggestion from Akim Demaille.
51197
51198 2000-04-12  Jim Meyering  <meyering@lucent.com>
51199
51200         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
51201         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
51202         Christian Krackowizer.
51203
51204         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
51205         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
51206         (AC_SYS_LARGEFILE): Require.
51207         (AM_C_PROTOTYPES): Require.
51208
51209 2000-04-08  Jim Meyering  <meyering@lucent.com>
51210
51211         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
51212         names don't conflict.  Reported by Eli Zaretskii.
51213
51214 2000-04-07  Jim Meyering  <meyering@lucent.com>
51215
51216         * lib/putenv.c: Move inclusion of errno.h so it follows that of
51217         sys/types.h, to work around system header problems on AIX 3.2.5.
51218         From Bruno Haible.
51219
51220 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
51221
51222         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
51223         bug.  Deal with the different error behavior of Irix iconv.
51224
51225 2000-04-05  Paul Eggert  <eggert@twinsun.com>
51226
51227         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
51228         IRIX if the installer said otherwise.
51229
51230 2000-04-05  Jim Meyering  <meyering@lucent.com>
51231
51232         Portability tweaks required for ultrix4.3.
51233         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
51234         (jm_CHECK_DECLS): Add getutent to the list of functions.
51235         (_jm_DECL_HEADERS): Add utmpx.h.
51236         From John David Anglin.
51237
51238         * m4/strftime.m4: Back out the 2000-04-02 change.
51239         Instead of that change, simply undefine putenv in the test program.
51240
51241 2000-04-05  Jim Meyering  <meyering@lucent.com>
51242
51243         Portability tweaks required for ultrix4.3.
51244         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
51245         getutent.
51246         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
51247         * lib/canon-host.c: Declare strdup.
51248         * lib/path-concat.c: Likewise.
51249         From John David Anglin.
51250
51251 2000-04-04  Jim Meyering  <meyering@lucent.com>
51252
51253         Be more DOS 8.3-friendly.
51254         * lib/ref-add.sin: Renamed from ref-add.sed.in.
51255         * lib/ref-del.sin: Renamed from ref-del.sed.in.
51256         * lib/Makefile.am: Reflect renaming.
51257         Reported by Eli Zaretskii.
51258
51259         Use a temporary file name that won't clash with `charset.alias'
51260         in the DOS 8.3 name space.
51261         * lib/Makefile.am (charset_tmp): Define.
51262         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
51263         (uninstall-local): Likewise.
51264         Reported by Eli Zaretskii.
51265
51266 2000-04-03  Jim Meyering  <meyering@lucent.com>
51267
51268         * m4/gettext.m4: Fix typo in comment.
51269
51270         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
51271         textutils/configure.in).  Suggestion from Paul Eggert.
51272         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
51273
51274 2000-04-02  Paul Eggert  <eggert@twinsun.com>
51275
51276         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
51277         variable in the shell rather than using putenv, which isn't
51278         portable.  This avoids the configure-time inter-test dependency
51279         on the potentially-renamed putenv function.
51280
51281 2000-03-30  Paul Eggert  <eggert@twinsun.com>
51282
51283         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
51284         before checking struct stat.st_blksize, so that
51285         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
51286
51287 2000-03-29  Paul Eggert  <eggert@twinsun.com>
51288
51289         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
51290         since strftime.c uses HAVE_STRFTIME to decide whether to use
51291         the underlying strftime.
51292
51293 2000-03-29  Paul Eggert  <eggert@twinsun.com>
51294
51295         * lib/time/strftime.c (my_strftime): Make sure we call the system
51296         strftime, not ourselves, when invoking the underlying strftime.
51297
51298 2000-03-24  Jim Meyering  <meyering@lucent.com>
51299
51300         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
51301         (charset_alias): Define.
51302         (install-exec-local): Factor out common code.
51303         (uninstall-local): Split lines longer than 80.
51304         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
51305         (SUFFIXES): Define.
51306         (.sed.in.sed): New rule.  Don't redirect directly to $@.
51307         (CLEANFILES): Add ref-add.sed and ref-del.sed.
51308
51309 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
51310
51311         * lib/config.charset: Output a line containing "Packages using this
51312         file".
51313         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
51314         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
51315         ref-del.sed): New rules.
51316
51317 2000-03-17  Jim Meyering  <meyering@lucent.com>
51318
51319         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
51320         Otherwise, include <strings.h>
51321
51322 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
51323
51324         * lib/unicodeio.c (utf8_wctomb): New function.
51325         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
51326         format instead of in UCS-4 with platform dependent endianness.
51327
51328 2000-03-10  Jim Meyering  <meyering@lucent.com>
51329
51330         * m4/lib-check.m4: Look for getspnam in -lgen, too.
51331         From Marco Franzen.
51332
51333 2000-03-07  Paul Eggert  <eggert@twinsun.com>
51334
51335         * lib/savedir.c (savedir): Work even if directory size is
51336         negative; this can happen with some screwy NFS configurations.
51337
51338 2000-03-06  Jim Meyering  <meyering@lucent.com>
51339
51340         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
51341         if it's NULL (because we ran out of memory).  From Bruno Haible.
51342
51343 2000-03-05  Jim Meyering  <meyering@lucent.com>
51344
51345         * lib/localcharset.c ("path-concat.h"): Include.
51346         (get_charset_aliases): Use path_concat instead of ANSI string
51347         concatenation.
51348
51349         * lib/unicodeio.h (PARAMS): Define.
51350         Use it to guard prototype.
51351
51352 2000-03-04  Jim Meyering  <meyering@lucent.com>
51353
51354         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
51355         for lib/localcharset.c.
51356
51357 2000-03-04  Jim Meyering  <meyering@lucent.com>
51358
51359         * lib/Makefile.am (install-exec-local): Create $(libdir) before
51360         installing into it.
51361         (uninstall-local): Uncomment this rule so `make distcheck' works
51362         once again.
51363
51364         * lib/unicodeio.c (<errno.h>): Include it.
51365         (errno): Declare if not defined.
51366
51367         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
51368
51369         * lib/config.charset: New version, incorporating remarks from a linux
51370         i18n mailing list.  From Bruno Haible.
51371
51372 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
51373
51374         * m4/codeset.m4: New file.
51375         * m4/iconv.m4: New file.
51376         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
51377
51378 2000-03-03  Jim Meyering  <meyering@lucent.com>
51379
51380         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
51381
51382 2000-03-02  Jim Meyering  <meyering@lucent.com>
51383
51384         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
51385         the messages come out on separate lines.
51386
51387         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
51388         rather than jm_CHECK_DECLARATIONS.
51389         * m4/decl.m4: Remove now-unused file.
51390
51391         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
51392         geteuid.
51393
51394 2000-03-02  Jim Meyering  <meyering@lucent.com>
51395
51396         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
51397
51398 2000-03-01  Jim Meyering  <meyering@lucent.com>
51399
51400         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
51401         * lib/unicodeio.c: Likewise.
51402
51403 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
51404
51405         * lib/config.charset: New file.
51406         * lib/localcharset.c: New file.
51407         * lib/unicodeio.h, lib/unicodeio.c: New files.
51408         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
51409         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
51410         (noinst_HEADERS): Add unicodeio.h.
51411         (all-local, install-exec-local, charset.alias): New targets.
51412
51413 2000-02-28  Paul Eggert  <eggert@twinsun.com>
51414
51415         * lib/quotearg.c (ALERT_CHAR): New macro.
51416         (quotearg_buffer_restyled): Use it.
51417
51418 2000-02-27  Jim Meyering  <meyering@lucent.com>
51419
51420         * m4/check-decl.m4: Add getenv to the list.
51421
51422 2000-02-27  Jim Meyering  <meyering@lucent.com>
51423
51424         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
51425         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
51426
51427         * lib/backupfile.c: Guard inclusion of stdlib.h with
51428         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
51429         Declare malloc if needed.
51430
51431         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
51432         `#ifndef HAVE_DECL..'
51433         now that autoconf always defines the HAVE_DECL_ symbols.
51434         * lib/human.c: Likewise.
51435         * lib/same.c: Likewise.
51436         * lib/strtoumax.c: Likewise.
51437
51438         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
51439         declaration check was not run.
51440         * lib/hash.c: Likewise.
51441         * lib/human.c: Likewise.
51442         * lib/same.c: Likewise.
51443         * lib/strtoumax.c: Likewise.
51444
51445         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
51446         `.', then first look up the entire `.'-containing string as a login
51447         name.
51448
51449 2000-02-23  Jim Meyering  <meyering@lucent.com>
51450
51451         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
51452         in place of my hack.
51453
51454 2000-02-18  Paul Eggert  <eggert@twinsun.com>
51455
51456         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
51457         (textint): New typedef.
51458         (parser_control): Member year changed from int to textint.
51459         All uses changed.
51460         (YYSTYPE): Removed; replaced by %union with int and textint members.
51461         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
51462         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
51463         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
51464         (tSNUMBER, tUNUMBER): Now of type <textintval>.
51465         (date, number, to_year): Use width of number in digits, not its value,
51466         to determine whether it's a 2-digit year, or a 2-digit time.
51467         (yylex): Store number of digits of numeric tokens.
51468         Reported by John Kendall.
51469
51470         (parser_control): Changed from struct parser_control to typedef (for
51471         consistency).  All uses changed.
51472
51473         (tID): Removed; not used.
51474         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
51475
51476 2000-02-14  Paul Eggert  <eggert@twinsun.com>
51477
51478         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
51479         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
51480
51481 2000-02-12  Jim Meyering  <meyering@lucent.com>
51482
51483         * lib/userspec.c (ISDIGIT): Define it.
51484         (isdigit): Remove definition.
51485         (is_number): Use ISDIGIT, not isdigit.
51486         <libintl.h>: Include.
51487         (_ and N_): Define.
51488         (parse_user_spec): Mark translatable strings.
51489
51490 2000-02-10  Jim Meyering  <meyering@lucent.com>
51491
51492         With these changes, nanosleep.[ch] are finally enough like the other
51493         lib/* replacement files to compile on a few more losing systems.
51494
51495         * lib/nanosleep.h: Don't include config.h.
51496         Remove prototype from declaration of nanosleep.
51497         (PARAMS): Remove now-unneeded definition.
51498         * lib/nanosleep.c: #undef nanosleep.
51499         (rpl_nanosleep): Rename from nanosleep.
51500
51501 2000-02-10  Jim Meyering  <meyering@lucent.com>
51502
51503         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
51504         gnu_nanosleep to rpl_nanosleep.
51505
51506 2000-02-09  Jim Meyering  <meyering@lucent.com>
51507
51508         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
51509         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
51510
51511 2000-02-08  Akim Demaille  <akim@epita.fr>
51512
51513         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
51514         `[' and `]' and remove uses of `changequote'.
51515         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
51516         (AC_SYS_LARGEFILE): Likewise.
51517         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
51518         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
51519         of changequote.
51520         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
51521         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
51522         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
51523         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
51524
51525 2000-02-05  Jim Meyering  <meyering@lucent.com>
51526
51527         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
51528         Remove explicit use of AC_HEADER_TIME.  It is required by
51529         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
51530         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
51531         in autoconf whereby the expansion of the latter ended up preceding
51532         the expansion of its prerequisite, AC_HEADER_TIME.
51533         Reported by Volker Borchert.
51534
51535 2000-02-03  Jim Meyering  <meyering@lucent.com>
51536
51537         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
51538
51539 2000-02-03  Jim Meyering  <meyering@lucent.com>
51540
51541         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
51542         rather than with `#if HAVE_UTMPNAME'.
51543
51544 2000-02-02  Jim Meyering  <meyering@lucent.com>
51545
51546         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
51547         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
51548         Reported by Eli Zaretskii.
51549
51550 2000-02-01  Jim Meyering  <meyering@lucent.com>
51551
51552         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
51553
51554 2000-01-31  Jim Meyering  <meyering@lucent.com>
51555
51556         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
51557         functions.  Add the time.h and sys/time.h headers along with the
51558         AC_REQUIRE'ment of AC_HEADER_TIME.
51559
51560 2000-01-31  Jim Meyering  <meyering@lucent.com>
51561
51562         * lib/nanosleep.h (nanosleep): Guard declaration with
51563         `#if ! HAVE_DECL_NANOSLEEP'.
51564         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
51565         the declaration in that vendor's sys/timers.h.
51566         Reported by Christian Krackowizer.
51567
51568         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
51569         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
51570         (ISPRINT): Likewise.
51571         Reported by Tom Tromey.
51572
51573 2000-01-30  Jim Meyering  <meyering@lucent.com>
51574
51575         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
51576
51577         * m4/prereq.m4 (utmp_includes): Define.
51578         Check for ut_user and ut_name members in both struct utmpx
51579         and struct utmp.
51580
51581 2000-01-30  Jim Meyering  <meyering@lucent.com>
51582
51583         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
51584         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
51585         header files where only utmpx.ut_user is declared.
51586
51587         * lib/readutmp.h (UT_USER): Define.
51588
51589 2000-01-29  Jim Meyering  <meyering@lucent.com>
51590
51591         * m4/lib-check.m4: New file containing library-related checks from
51592         fileutils and sh-utils (textutils had none).
51593
51594 2000-01-28  Jim Meyering  <meyering@lucent.com>
51595
51596         * m4/perl.m4: Change format of warning message to look more like that
51597         from the missing script.  Suggestion from François Pinard.
51598
51599 2000-01-25  Jim Meyering  <meyering@lucent.com>
51600
51601         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
51602         well as time.h in the compile check.
51603         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
51604         Fix typo in cross-compiling case: s/yes/no/.
51605
51606 2000-01-23  Jim Meyering  <meyering@lucent.com>
51607
51608         * m4/jm-macros.m4: Move df-related tests here from
51609         fileutils/configure.in
51610
51611         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
51612         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
51613
51614         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
51615         s/space/ac_fsusage_space/.
51616         (jm_FILE_SYSTEM_USAGE): Take two parameters.
51617
51618         * m4/ftruncate.m4: New file (derived from part of
51619         fileutils/configure.in).
51620         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
51621         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
51622
51623         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
51624         AC_SUBST these here, rather than just in sh-util/configure.in, so
51625         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
51626         all the same.
51627         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
51628         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
51629         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
51630         (AC_SUBST(POW_LIBM)): Likewise.
51631         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
51632
51633 2000-01-23  Jim Meyering  <meyering@lucent.com>
51634
51635         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
51636         obstack.c.
51637
51638 2000-01-22  Jim Meyering  <meyering@lucent.com>
51639
51640         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
51641
51642         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
51643
51644         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
51645         configure.in
51646         (AC_CHECK_HEADERS): Likewise for sh-utils.
51647         (AC_CHECK_HEADERS): Likewise for textutils.
51648         Merge the three lists of headers.
51649
51650         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
51651         from fileutils' configure.in.
51652
51653         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
51654         code. Moved tests into their own function (_jm_DECL_HEADERS) in
51655         check-decl.m4.
51656
51657         * m4/check-decl.m4: Use #if rather than #ifdef.
51658         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
51659         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
51660         (_jm_DECL_HEADERS): Define new function.
51661         (jm_CHECK_DECLARATIONS): Require it.
51662
51663 2000-01-22  Jim Meyering  <meyering@lucent.com>
51664
51665         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
51666         [! HAVE_DECL_STRTOULL]: Declare strtoull.
51667         Required for some AIX systems.  Reported by Christian Krackowizer.
51668         [TESTING] (main): New function.
51669
51670         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
51671         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
51672         letters.
51673
51674         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
51675         iswprint.
51676
51677         * lib/strverscmp.c (ISDIGIT): Define.
51678         (strverscmp): Use ISDIGIT, not isdigit.
51679
51680 2000-01-19  Jim Meyering  <meyering@lucent.com>
51681
51682         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
51683         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
51684         defines `struct timespec' in <sys/time.h>
51685
51686         * m4/c-bs-a.m4: Remove uses of changequote altogether.
51687         Thanks to Akim for explaining.
51688
51689 2000-01-17  Paul Eggert  <eggert@twinsun.com>
51690
51691         * lib/nanosleep.c (nanosleep):
51692         Don't use SA_INTERRUPT to decide whether to call sigaction, as
51693         POSIX.1 doesn't require SA_INTERRUPT and some systems
51694         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
51695         it's been part of POSIX.1 since day 1 (in 1988).
51696
51697 2000-01-17  Jim Meyering  <meyering@lucent.com>
51698
51699         * lib/interlock: Remove unused file.  Reported by François Pinard.
51700
51701 2000-01-16  Paul Eggert  <eggert@twinsun.com>
51702
51703         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
51704         alert, backslash, formfeed, and vertical tab unnecessarily in
51705         shell quoting style.
51706
51707 2000-01-16  Jim Meyering  <meyering@lucent.com>
51708
51709         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
51710         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
51711         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
51712         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
51713
51714 2000-01-16  Jim Meyering  <meyering@lucent.com>
51715
51716         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
51717         because the latter didn't work.
51718
51719 2000-01-15  Jim Meyering  <meyering@lucent.com>
51720
51721         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
51722         (AC_REPLACE_FUNCS): Add memcpy and memset.
51723         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
51724         Add strpbrk.
51725         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
51726
51727 2000-01-12  Jim Meyering  <meyering@lucent.com>
51728
51729         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
51730         (jm_PREREQ): Use it.
51731         (jm_PREREQ_READUTMP): New macro.
51732         (jm_PREREQ): Use it.
51733
51734 2000-01-11  Paul Eggert  <eggert@twinsun.com>
51735
51736         Quote multibyte characters correctly.
51737         * m4/c-bs-a.m4: New file.
51738         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
51739         (jm_PREREQ): Use it.
51740
51741 2000-01-11  Paul Eggert  <eggert@twinsun.com>
51742
51743         * m4/uintmax_t.m4: Port to autoconf 2.13.
51744
51745 2000-01-08  Jim Meyering  <meyering@ascend.com>
51746
51747         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
51748         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
51749
51750 2000-01-04  Jim Meyering  <meyering@ascend.com>
51751
51752         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
51753         jm_STRUCT_DIRENT_D_TYPE.
51754         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
51755         jm_STRUCT_DIRENT_D_INO.
51756         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
51757         jm_STRUCT_UTIMBUF.
51758         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
51759         renamings.
51760         * m4/utime.m4: Likewise.
51761
51762         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
51763         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
51764
51765 2000-01-03  Paul Eggert  <eggert@twinsun.com>
51766
51767         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
51768         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
51769
51770 2000-01-02  Jim Meyering  <meyering@ascend.com>
51771
51772         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
51773         remember if this is necessary.
51774
51775 1999-12-26  Jim Meyering  <meyering@ascend.com>
51776
51777         * m4/jm-macros.m4: Use it here.
51778         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
51779
51780 1999-12-23  Jim Meyering  <meyering@ascend.com>
51781
51782         * m4/jm-macros.m4: Check for clock_gettime (moved from
51783         fileutils/configure.in)
51784         Check for gettimeofday.
51785
51786 1999-12-20  Jim Meyering  <meyering@ascend.com>
51787
51788         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
51789         autoconf-2.14a-1999-12-20.
51790
51791 1999-12-19  Jim Meyering  <meyering@ascend.com>
51792
51793         * m4/lstat-slash.m4: New file.
51794         * m4/jm-macros.m4: Use the new macro:
51795         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
51796
51797 1999-12-07  Jim Meyering  <meyering@ascend.com>
51798
51799         * m4/perl.m4: Require that File::Compare be available, too.
51800         Too many systems seem to lack it.
51801
51802         * m4/strftime.m4: Add checks for most of the cpp macros tested in
51803         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
51804
51805 1999-11-18  Paul Eggert  <eggert@twinsun.com>
51806
51807         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
51808         problem with the QNX 4.25 shell, which doesn't propagate exit
51809         status of failed commands inside shell assignments.
51810
51811 1999-11-17  Jim Meyering  <meyering@ascend.com>
51812
51813         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
51814
51815 1999-11-07  Jim Meyering  <meyering@ascend.com>
51816
51817         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
51818
51819 1999-11-06  Jim Meyering  <meyering@ascend.com>
51820
51821         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
51822         * m4/jm-macros.m4 (jm_MACROS): Use it here.
51823
51824 1999-11-05  Jim Meyering  <meyering@ascend.com>
51825
51826         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
51827         configure.in of textutils, fileutils, and sh-utils into this one
51828         (shared between those packages) file.
51829         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
51830         AC_STRUCT_ST_BLKSIZE.
51831
51832 1999-11-03  Jim Meyering  <meyering@ascend.com>
51833
51834         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
51835         of AC_CHECK_TYPE checks includes unistd.h.
51836         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
51837         Suggestion from Akim Demaille.
51838
51839 1999-10-30  Jim Meyering  <meyering@ascend.com>
51840
51841         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
51842         m4-quoted string.
51843         * m4/ls-mntd-fs.m4: Likewise.
51844         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
51845         * m4/jm-winsz1.m4: Likewise.
51846
51847         * m4/const.m4: Remove file, since the fix made it into the experimental
51848         version of autoconf.
51849         * m4/mktime.m4: Likewise.
51850
51851         * m4/check-type.m4: Remove file, now that the latest version of
51852         AC_CHECK_TYPE takes a third arg to specify additional #includes.
51853
51854         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
51855         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
51856         AC_CHECK_TYPE.
51857
51858 1999-10-04  Jim Meyering  <meyering@ascend.com>
51859
51860         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
51861
51862 1999-09-22  Paul Eggert  <eggert@twinsun.com>
51863
51864         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
51865         2.95.1 bug with HP-UX 10.20.
51866
51867 1999-09-17  Jim Meyering  <meyering@ascend.com>
51868
51869         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
51870         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
51871         due to missing strdup (against sh-utils-2.0).
51872
51873 1999-08-29  Jim Meyering  <meyering@ascend.com>
51874
51875         * m4/jm-macros.m4: Require jm_BISON.
51876         * m4/bison.m4: New file.
51877
51878 1999-08-17  Paul Eggert  <eggert@twinsun.com>
51879
51880         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
51881         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
51882
51883 1999-08-05  Jim Meyering  <meyering@ascend.com>
51884
51885         * m4/getline.m4: Rename test file from conftestdata to conftest.data
51886         to avoid conflicts with `conftest' on 8+3 filesystems.
51887         Suggestion from Eli Zaretskii.
51888
51889 1999-08-04  Jim Meyering  <meyering@ascend.com>
51890
51891         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
51892         fileutils and sh-utils (textutils's getline test was inadequate).
51893         (AM_FUNC_GETLINE): Run this test.
51894         (AC_CHECK_FUNCS): Check for getdelim.
51895         Reported by Bob Proulx.
51896
51897 1999-08-02  Jim Meyering  <meyering@ascend.com>
51898
51899         * m4/jm-macros.m4: Add a comment.
51900
51901 1999-08-01  Paul Eggert  <eggert@twinsun.com>
51902
51903         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
51904         <inttypes.h> defines strtoumax as a macro (and not as a
51905         function).
51906
51907 1999-08-01  Paul Eggert  <eggert@twinsun.com>
51908
51909         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
51910         that we can shift, multiply and divide unsigned long long
51911         values; Ultrix cc can't do it.
51912
51913 1999-08-01  Paul Eggert  <eggert@twinsun.com>
51914
51915         * m4/mktime.m4: New file, which is a preview of what should appear
51916         in the next public autoconf release.
51917
51918 1999-08-01  Paul Eggert  <eggert@twinsun.com>
51919
51920         * m4/lfs.m4: Remove this file.
51921         * m4/largefile.m4: New file.  It contains the old contents of
51922         lfs.m4, except that all names with prefix AC_LFS have been
51923         changed to use the prefix AC_SYS_LARGEFILE instead, to be
51924         compatible with future autoconf versions.  Also, some minor m4
51925         quoting problems have been fixed.
51926
51927 1999-08-01  Paul Eggert  <eggert@twinsun.com>
51928
51929         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
51930         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
51931         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
51932         and simplify the shell code.
51933
51934 1999-08-01  Jim Meyering  <meyering@ascend.com>
51935
51936         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
51937         m4.
51938
51939 1999-07-20  Jim Meyering  <meyering@ascend.com>
51940
51941         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
51942
51943 1999-07-15  Jim Meyering  <meyering@ascend.com>
51944
51945         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
51946
51947 1999-05-22  Jim Meyering  <meyering@ascend.com>
51948
51949         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
51950
51951 1999-05-20  Jim Meyering  <meyering@ascend.com>
51952
51953         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
51954         Add a colon after each `then' in case $4 is empty.
51955
51956 1999-05-16  Jim Meyering  <meyering@ascend.com>
51957
51958         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
51959
51960 1999-05-10  Jim Meyering  <meyering@ascend.com>
51961
51962         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
51963
51964         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
51965         AC_FUNC_MKTIME.
51966
51967 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
51968
51969         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
51970
51971 1999-05-04  Paul Eggert  <eggert@twinsun.com>
51972
51973         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
51974         not CPPFLAGS, so that linking works correctly in IRIX.
51975
51976 1999-04-30  Paul Eggert  <eggert@twinsun.com>
51977
51978         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
51979
51980 1999-04-20  Paul Eggert  <eggert@twinsun.com>
51981
51982         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
51983         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
51984         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
51985         jm_AC_TYPE_UNSIGNED_LONG_LONG.
51986         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
51987
51988         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
51989
51990 1999-04-20  Jim Meyering  <meyering@ascend.com>
51991
51992         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
51993         AC_REPLACE xstroull if necessary.  From Paul Eggert.
51994         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
51995
51996 1999-04-18  Jim Meyering  <meyering@ascend.com>
51997
51998         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
51999         * m4/jm-macros.m4: Use it.
52000
52001 1999-04-06  Jim Meyering  <meyering@ascend.com>
52002
52003         * m4/strftime.m4: Remove test for %f.
52004
52005 1999-03-29  Jim Meyering  <meyering@ascend.com>
52006
52007         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
52008         superset of the AC_TYPE_* checks in the textutils, fileutils,
52009         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
52010         AC_TYPE_PID_T.
52011
52012 1999-03-28  Jim Meyering  <meyering@ascend.com>
52013
52014         * m4/jm-macros.m4: Define GNU_PACKAGE here.
52015         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
52016         replaced e.g., in the *.sh files of the sh-utils.
52017
52018 1999-03-20  Jim Meyering  <meyering@ascend.com>
52019
52020         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
52021         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
52022         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
52023
52024 1999-03-19  Jim Meyering  <meyering@ascend.com>
52025
52026         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
52027
52028 1999-03-12  Jim Meyering  <meyering@ascend.com>
52029
52030         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
52031
52032 1999-03-07  Jim Meyering  <meyering@ascend.com>
52033
52034         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
52035         declared.
52036
52037 1999-02-17  Jim Meyering  <meyering@ascend.com>
52038
52039         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
52040         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
52041
52042 1999-02-07  Jim Meyering  <meyering@ascend.com>
52043
52044         * m4/group-member.m4: New file -- extracted from sh-utils'
52045         configure.in.
52046
52047         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
52048         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
52049
52050 1999-02-06  Jim Meyering  <meyering@ascend.com>
52051
52052         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
52053         * m4/fnmatch.m4: Likewise.
52054         * m4/getgroups.m4: Likewise.
52055         * m4/lstat.m4: Likewise.
52056         * m4/malloc.m4: Likewise.
52057         * m4/putenv.m4: Likewise.
52058         * m4/realloc.m4: Likewise.
52059         * m4/regex.m4: Likewise.
52060         * m4/stat.m4: Likewise.
52061         * m4/strftime.m4: Likewise.
52062         Suggestion from Alain Magloire.
52063
52064         * m4/chown.m4: Use `.$ac_objext', not `.o'.
52065         * m4/fnmatch.m4: Likewise.
52066         * m4/getgroups.m4: Likewise.
52067         * m4/getline.m4: Likewise.
52068         * m4/lstat.m4: Likewise.
52069         * m4/malloc.m4: Likewise.
52070         * m4/memcmp.m4: Likewise.
52071         * m4/putenv.m4: Likewise.
52072         * m4/realloc.m4: Likewise.
52073         * m4/regex.m4: Likewise.
52074         * m4/stat.m4: Likewise.
52075         * m4/strftime.m4: Likewise.
52076         Suggestion from Alain Magloire.
52077
52078         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
52079         an argument.
52080
52081         * m4/regex.m4: Add a run-time Test for proper operation of
52082         re_compile_pattern.
52083
52084 1999-01-31  Jim Meyering  <meyering@ascend.com>
52085
52086         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
52087
52088 1999-01-30  Jim Meyering  <meyering@ascend.com>
52089
52090         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
52091
52092         * m4/jm-mktime.m4: Make this a wrapper around the official
52093         AM_FUNC_MKTIME rather than my private copy, now that the official one
52094         is up to date.
52095         * m4/mktime.m4: Remove file.
52096
52097         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
52098         * m4/uptime.m4: Likewise.
52099         * m4/uintmax_t.m4: Likewise.
52100
52101 1999-01-28  Jim Meyering  <meyering@ascend.com>
52102
52103         * m4/jm-macros.m4: Use jm_AFS.
52104         * m4/afs.m4: New file (from fileutils' configure.in).
52105
52106         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
52107         * m4/chown.m4: Likewise.
52108         * m4/d-ino.m4: Likewise.
52109         * m4/d-type.m4: Likewise.
52110         * m4/fnmatch.m4: Likewise.
52111         * m4/getgroups.m4: Likewise.
52112         * m4/gettext.m4: Likewise.
52113         * m4/jm-mktime.m4: Likewise.
52114         * m4/jm-winsz2.m4: Likewise.
52115         * m4/lcmessage.m4: Likewise.
52116         * m4/ls-mntd-fs.m4: Likewise.
52117         * m4/malloc.m4: Likewise.
52118         * m4/memcmp.m4: Likewise.
52119         * m4/putenv.m4: Likewise.
52120         * m4/realloc.m4: Likewise.
52121         * m4/st_mtim.m4: Likewise.
52122         * m4/strftime.m4: Likewise.
52123
52124 1999-01-16  Jim Meyering  <meyering@ascend.com>
52125
52126         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
52127         (ARGMATCH_DIE_DECL): Define.
52128
52129 1999-01-12  Jim Meyering  <meyering@ascend.com>
52130
52131         * m4/Makefile.am.in: Rewrite to avoid using fmt.
52132         Reported by Lars Hecking.
52133
52134 1999-01-10  Jim Meyering  <meyering@ascend.com>
52135
52136         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
52137         gross kludge.
52138         * m4/inttypes_h.m4: Likewise.
52139         * m4/lstat.m4: Likewise.
52140         * m4/malloc.m4: Likewise.
52141         * m4/readdir.m4: Likewise.
52142         * m4/realloc.m4: Likewise.
52143         * m4/st_dm_mode.m4: Likewise.
52144         * m4/stat.m4: Likewise.
52145         * m4/utimbuf.m4: Likewise.
52146         * m4/utimes.m4: Likewise.
52147
52148         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
52149         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
52150         comments in config.h.in are meaningful.
52151
52152         * m4/jm-macros.m4: Require autoconf-2.13 here.
52153
52154         * m4/regex.m4: By default, don't use the included regex.c on systems
52155         with glibc 2.  Suggestion from Uli Drepper.
52156
52157 1999-01-02  Jim Meyering  <meyering@ascend.com>
52158
52159         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
52160
52161 1998-12-18  Jim Meyering  <meyering@ascend.com>
52162
52163         * m4/Makefile.am.in (Makefile.am): Simplify rule.
52164         Based on a suggestion from Lars Hecking.
52165
52166 1998-11-16  Paul Eggert  <eggert@twinsun.com>
52167
52168         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
52169
52170 1998-11-16  Jim Meyering  <meyering@ascend.com>
52171
52172         * m4/lfs.m4: Double-quote the `uname...` expression.
52173
52174 1998-11-14  Jim Meyering  <meyering@ascend.com>
52175
52176         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
52177         * m4/stat.m4: Likewise.
52178
52179 1998-11-03  Jim Meyering  <meyering@ascend.com>
52180
52181         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
52182         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
52183
52184 1998-10-18  Jim Meyering  <meyering@ascend.com>
52185
52186         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
52187
52188 1998-10-17  Jim Meyering  <meyering@ascend.com>
52189
52190         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
52191         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
52192         calls for those previously hard-coded headers.  Instead, take a new
52193         parameter.
52194         (jm_CHECK_DECLARATIONS): Reflect interface change.
52195         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
52196         (jm_CHECK_DECL_LOCALTIME_R): New macro.
52197
52198         * m4/mktime.m4: Test for spring-forward gap before long-running test.
52199
52200 1998-10-14  Jim Meyering  <meyering@ascend.com>
52201
52202         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
52203         instead of "TZ=America/Vancouver".  From Paul Eggert.
52204
52205 1998-10-11  Jim Meyering  <meyering@ascend.com>
52206
52207         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
52208         This adds a test for a recently added compatibility fix for mktime.c.
52209         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
52210
52211 1998-09-27  Jim Meyering  <meyering@ascend.com>
52212
52213         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
52214
52215         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
52216         ../configure.in, including a change from Gordon Matzigkeit to allow
52217         cross-compiling for the Hurd.
52218
52219         * m4/glibc.m4: New file/macro to test for the GNU C Library
52220         versions 1 and 2.  From Gordon Matzigkeit.
52221         Indent.
52222
52223 1998-09-21  Jim Meyering  <meyering@ascend.com>
52224
52225         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
52226
52227 1998-08-18  Paul Eggert  <eggert@twinsun.com>
52228
52229         Port nanosecond-resolution times to UnixWare 2.1.2 and
52230         pedantic Solaris 2.6.
52231
52232         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
52233         AC_STRUCT_ST_MTIM.
52234         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
52235         Generate name of ns member, instead of just 1 or undef.
52236         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
52237
52238 1998-08-15  Jim Meyering  <meyering@ascend.com>
52239
52240         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
52241         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
52242         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
52243         instead of jm_TYPE_SSIZE_T.
52244
52245 1998-08-12  Jim Meyering  <meyering@ascend.com>
52246
52247         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
52248
52249 1998-08-02  Jim Meyering  <meyering@ascend.com>
52250
52251         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
52252         in acconfig.h manually.
52253
52254 1998-07-31  Paul Eggert  <eggert@twinsun.com>
52255
52256         * m4/st_mtim.m4: New file.
52257
52258 1998-07-28  Jim Meyering  <meyering@ascend.com>
52259
52260         * m4/utimes.m4: Undef stat.
52261
52262 1998-07-25  Jim Meyering  <meyering@ascend.com>
52263
52264         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
52265         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
52266
52267 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
52268
52269         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
52270         uid and gid actually remain unchanged.
52271
52272 1998-07-07  Jim Meyering  <meyering@ascend.com>
52273
52274         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
52275
52276 1998-07-04  Jim Meyering  <meyering@ascend.com>
52277
52278         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
52279         to prove that this macro can be used in packages without regex.c.
52280
52281 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
52282
52283         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
52284         is to be used.
52285
52286 1998-07-03  Jim Meyering  <meyering@ascend.com>
52287
52288         * m4/gettext.m4: Add -lintl if it's found to be necessary.
52289
52290         * m4/gettext.m4: New file -- from gettext-0.10.35.
52291         * m4/lcmessage.m4: Likewise.
52292         * m4/progtest.m4: Likewise.
52293
52294         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
52295         * m4/jm-macros.m4: Require the new macro.
52296
52297 1998-06-29  Jim Meyering  <meyering@ascend.com>
52298
52299         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
52300         for the definition of NGROUPS (used in a system header included
52301         by sys/mount.h).
52302
52303 1998-06-28  Jim Meyering  <meyering@ascend.com>
52304
52305         * m4/ls-mntd-fs.m4: New file.
52306         * m4/fstypename.m4: New file.
52307
52308         * m4/jm-macros.m4: Require the new macro.
52309         * m4/jm-glibc-io.m4: New file.
52310
52311 1998-05-19  Jim Meyering  <meyering@ascend.com>
52312
52313         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
52314         * m4/lchown.m4: New file.
52315
52316         * m4/Makefile.am.in: New file.
52317         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
52318
52319 1998-05-14  Jim Meyering  <meyering@ascend.com>
52320
52321         * m4/Makefile.am (EXTRA_DIST): Add them.
52322         * m4/jm-macros.m4: New file.
52323         * m4/utimbuf.m4: New file.
52324
52325 1998-05-12  Jim Meyering  <meyering@ascend.com>
52326
52327         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
52328
52329 1998-05-11  Jim Meyering  <meyering@ascend.com>
52330
52331         * m4/isc-posix.m4: New file.
52332
52333 1998-05-10  Jim Meyering  <meyering@ascend.com>
52334
52335         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
52336
52337 1998-05-09  Jim Meyering  <meyering@ascend.com>
52338
52339         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
52340         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
52341         with automake.
52342
52343         * m4/ssize_t.m4: New file.
52344         * m4/mktime.m4: Remove file -- the new automake has this now.
52345
52346 1998-04-26  Jim Meyering  <meyering@ascend.com>
52347
52348         * m4/assert.m4: New file.
52349         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
52350
52351 1998-04-05  Jim Meyering  <meyering@ascend.com>
52352
52353         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
52354         (jm_PREREQ): Use it here.
52355
52356 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
52357
52358         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
52359         in acconfig.h.
52360
52361 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
52362
52363         * m4/prereq.m4: New file.
52364         * m4/error.m4: New file.
52365         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
52366
52367 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
52368
52369         * m4/getline.m4: Don't set am_cv_func_working_getline before the
52370         cache-check for the same variable -- that defeated the purpose of
52371         the test; the test program was never run.  This was a problem only
52372         on systems with losing getline functions -- HP-UX 10.20 is one.
52373         Reported by Bjorn Helgaas.
52374
52375 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
52376
52377         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
52378
52379 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
52380
52381         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
52382
52383         * m4/const.m4: New file.  Use an initializer in this declaration
52384         typedef int charset[2]; const charset x;
52385         Reported by Bob Glickstein.
52386
52387 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
52388
52389         * m4/chown.m4: Fix reversed types on -1 args to chown.
52390         From Kaveh Ghazi.
52391
52392 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
52393
52394         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
52395         Add lseek and memchr.
52396
52397         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
52398         T.E.Dickey <dickey@clark.net> said that some older preprocessors
52399         have a 20-character limit on names.
52400
52401 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
52402
52403         * m4/inttypes_h.m4: New file.
52404         * m4/uintmax_t.m4: New file.
52405         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
52406
52407
52408         -----
52409
52410         Local Variables:
52411         coding: utf-8
52412         End:
52413
52414         Copyright (C) 1997-2009 Free Software Foundation, Inc.
52415
52416         Copying and distribution of this file, with or without
52417         modification, are permitted provided the copyright notice
52418         and this notice are preserved.